投稿時間:2023-06-05 23:25:48 RSSフィード2023-06-05 23:00 分まとめ(34件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia PC USER] 2024年に「ムーアの法則」が再び走り出す? Intelが「PowerVia」の近況を報告 Meteor Lake(仮)のEコアをベースに実証実験 https://www.itmedia.co.jp/pcuser/articles/2306/05/news176.html ITmediaPCUSER年に「ムーアの法則」が再び走り出すIntelが「PowerVia」の近況を報告MeteorLake仮のEコアをベースに実証実験Intelが「IntelA」プロセスから採用する予定の裏面電源供給技術「PowerVia」の近況を報告した。 2023-06-05 22:30:00
AWS AWS Database Blog Best practices for migrating SQL Server MERGE statements to Babelfish for Aurora PostgreSQL https://aws.amazon.com/blogs/database/best-practices-for-migrating-sql-server-merge-statements-to-babelfish-for-aurora-postgresql/ Best practices for migrating SQL Server MERGE statements to Babelfish for Aurora PostgreSQLTo migrate a SQL Server database to Babelfish for Aurora PostgreSQL you usually need to perform both automated and manual tasks The automated tasks involve automatic code conversion using the Babelfish Compass tool with the rewrite flag and data migration using AWS Database Migration Service AWS DMS The manual tasks involve database compatibility check using … 2023-06-05 13:34:01
AWS AWS The Internet of Things Blog Orchestrate NVIDIA Isaac Sim and ROS 2 Navigation on AWS RoboMaker with a public container image https://aws.amazon.com/blogs/iot/orchestrate-nvidia-isaac-sim-ros-2-navigation-aws-robomaker-public-container-image/ Orchestrate NVIDIA Isaac Sim and ROS Navigation on AWS RoboMaker with a public container imageIntroduction High fidelity simulation is increasingly important during the development of robots and robotic applications Virtual environments with photo realistic objects and robot models with accurate physics are essential for developing and testing robots that perform reliably on sophisticated tasks in the physical world nbsp Setting up a high fidelity simulation training and testing environment however poses challenges Installing … 2023-06-05 13:49:32
python Pythonタグが付けられた新着投稿 - Qiita 河のみでそのプレイヤの聴牌YN(タンヤオ河限定) https://qiita.com/Tanakadesu/items/e565c44d1ff5e5b1e863 限定 2023-06-05 22:16:47
python Pythonタグが付けられた新着投稿 - Qiita タンヤオか七対子どっちの戦略をとれば良いかニューラルネットワークで判断させる https://qiita.com/Tanakadesu/items/1d54766e5294fdf3998f 概要 2023-06-05 22:15:12
python Pythonタグが付けられた新着投稿 - Qiita 天鳳からログデータを取得するプログラムまとめ https://qiita.com/Tanakadesu/items/5e00ec85fd746f225210 概要 2023-06-05 22:11:51
python Pythonタグが付けられた新着投稿 - Qiita ガウシアンナイーブベイズによる聴牌判定 https://qiita.com/Tanakadesu/items/df166f062f064d00a14b testsize 2023-06-05 22:11:37
Ruby Rubyタグが付けられた新着投稿 - Qiita 【Rails/CanCanCan】authorize_resourceのソースコードを読んでみた https://qiita.com/m-ito27/items/1f9558654325dc2bb0cd controller 2023-06-05 22:08:50
Ruby Railsタグが付けられた新着投稿 - Qiita 【Rails/CanCanCan】authorize_resourceのソースコードを読んでみた https://qiita.com/m-ito27/items/1f9558654325dc2bb0cd controller 2023-06-05 22:08:50
海外TECH Ars Technica Sony chief warns technical problems persist for cloud gaming https://arstechnica.com/?p=1944415 cloud 2023-06-05 13:15:43
海外TECH MakeUseOf 6 Reasons Why Snapchat's My AI Is More Than Just a Cool Toy https://www.makeuseof.com/reasons-snapchat-my-ai-more-than-a-toy/ features 2023-06-05 13:01:18
海外TECH DEV Community 7 Common Mistakes React Developers make https://dev.to/devland/7-common-mistakes-react-developers-make-3p21 Common Mistakes React Developers makeReact is an awesome library renowned for its ability to enable developers to build beautiful applications with ease Its intuitive syntax and extensive ecosystem have made it a favorite among developers worldwide However like any powerful library if not used properly it can lead to a giant mess Unoptimized code tangled components and poor architectural decisions can quickly turn a React project into a plate of spaghetti code In this article we will delve into the realm of React development and explore seven common mistakes that developers often make when working with this library By understanding and avoiding these pitfalls you can enhance your skills as a React programmer and produce cleaner more maintainable code Inefficient project file structureOne of the most common mistakes that React developers make is neglecting to establish an efficient project file structure A disorganized file structure can lead to confusion code duplication and difficulties in maintaining and scaling the project When organizing your project files it s essential to follow best practices that promote clarity and modularity One mistake to avoid is scattering CSS files throughout the project without a clear structure This can make it challenging to find specific styles or make changes To improve organization it s recommended to keep CSS files alongside their respective components For example if a CSS file only applies to a single component it is best to place it in the same directory as that component This approach creates a clean and self contained structure making it easier to manage styles and reducing the likelihood of unintended consequences Another aspect of an efficient project file structure is adopting a standardized template or directory layout While there is no one size fits all approach using a widely recognized and community supported structure can bring numerous benefits One popular directory structure is to have separate folders for components styles utilities and tests Monolithic application All inclusive components Many React developers often fall into the trap of building monolithic applications that consist of all encompassing components This approach results in redundant code and impedes the potential for reusability Rather than creating large all encompassing components it is best to break down your application into smaller modular components Each component should have a specific purpose and handle a single responsibility For instance instead of having a single Dashboard component that handles multiple functionalities you can break it down into smaller components like Sidebar Header and Content Each component can then be managed independently making it easier to understand test and reuse Business logic within reusable componentsEmbedding business logic within reusable components is a common mistake that React developers should avoid This practice can lead to code that is difficult to maintain and limits re usability It is important to separate the presentation layer from the business logic Presentation components should focus solely on rendering the user interface and handling user interactions On the other hand business logic should be decoupled and placed in separate modules or utility functions By maintaining a clear separation between business logic and presentation components you ensure a more organized codebase that is easier to maintain and reuse It also enables better collaboration among team members as they can work on different aspects of the application independently Using Redux to manage all the statesOne common mistake that React developers make is relying solely on Redux to manage all application states While Redux is a powerful state management library it is important to use it judiciously and consider the complexity and needs of your application Redux is particularly beneficial for large scale applications with a significant amount of shared state or complex state management requirements However for smaller applications or projects with simpler state needs introducing Redux can introduce unnecessary complexity and overhead Before incorporating Redux into your project evaluate whether it is truly necessary Consider the size and complexity of your application s state as well as the level of interactivity and data flow between components In some cases React s built in state management such as using component state or context API might suffice and be more straightforward to implement If you determine that Redux is indeed appropriate for your project ensure that you properly structure and manage the Redux store Follow best practices such as breaking down your state into smaller manageable pieces defining actions and reducers clearly and leveraging middleware effectively Lack of Unit TestsFailing to write unit tests is a prevalent mistake frequently committed by developers Overlooking this crucial practice can severely impact the dependability and consistency of your code The absence of unit tests increases the likelihood of introducing unnoticed bugs and issues resulting in slower development and potential hardships for users Not keeping up with upgradesMany developers frequently fall into the trap of not staying up to date with the latest versions of React Perhaps they adhere to the motto of if it ain t broke don t fix it However it is crucial to regularly upgrade your React projects in order to take advantage of new features performance enhancements bug fixes and security patches By neglecting upgrades you forfeit the opportunity to harness the latest advancements in React New versions often introduce performance optimizations that can significantly improve the speed and efficiency of your application Moreover upgrades incorporate bug fixes and security patches that guarantee a stable and secure development environment To avoid this mistake create a plan to upgrade your React projects every six months This proactive approach allows you to stay current with the library s advancements while providing time to test and address any compatibility issues that may arise during the upgrade process Using incorrect proptypesAnother mistake that React developers commonly make is using incorrect PropTypes particularly when passing values to components One example of this is when passing a number as a prop to a component Many developers especially beginners mistakenly pass a number as a string within quotes like This can cause problems especially when you need to perform calculations or operations using that prop value When the prop is passed as a string it may lead to unexpected behavior and incorrect results The correct approach is to pass the number as an actual number like By doing so you ensure that the prop is treated as a numeric value and can be used correctly within the component This allows you to perform calculations comparisons or any other operations involving the prop without encountering unexpected issues SummaryBecoming a proficient React developer involves not only mastering the core concepts and techniques but also avoiding common mistakes that can hinder your progress In this article we discussed seven of the most prevalent mistakes that React developers make and provided insights on how to avoid them I hope you find this information useful If you have any suggestions tips or insights regarding these topics or any other common mistakes that need to be addressed I encourage you to leave a comment and share your thoughts 2023-06-05 13:53:15
海外TECH DEV Community What are variables? - JavaScript https://dev.to/analyze0/what-are-variables-javascript-p78 What are variables JavaScriptJavaScript variables are a fundamental concept in JavaScript programming A variable is essentially a container for a value such as a number a string or even an object Variables in JavaScript are dynamically typed meaning that they don t have a fixed data type as opposed to statically typed languages such as Java or C This means that a variable can hold a number at one moment and a string at another depending on what value is assigned to it Variables in JavaScript are declared using the var let or const keywords The var keyword is the older version of declaring a variable while let and const are the modern versions Here s an example of how to declare a variable in JavaScript using the let keyword let message Hello World In this example we re creating a variable called message and assigning it the value Hello World The let keyword is used to declare the variable followed by the variable name message and then the value that we re assigning In addition to storing simple values variables in JavaScript can also store more complex objects such as arrays and functions For example here s how we might declare a variable called myArray and assign it an array of numbers let myArray Lastly it s worth noting that variables in JavaScript are scoped to the function or global level in which they are declared This means that if you declare a variable inside a function it will not be accessible outside of that function In conclusion JavaScript variables are an essential building block for any JavaScript program They allow us to store and manipulate data values throughout our code making it more dynamic and flexible By learning the basics of variables and their usage aspiring JavaScript programmers can gain a fundamental understanding of the language and begin building engaging and interactive applications 2023-06-05 13:43:26
海外TECH DEV Community 💻ES6 tutorial: const in javascript https://dev.to/rafikadir/es6-tutorial-const-in-javascript-2l08 ES tutorial const in javascriptIn JavaScript the const keyword is used to declare a constant which is a variable that cannot be re assigned after it is initialized Constants are block scoped meaning they are only accessible within the block where they are defined Declaration and Initialization Constants are declared using the const keyword followed by the variable name and an optional initializer value assignment Once a constant is declared and assigned a value its value cannot be changed const x const x Identifier x has already been declaredBlock Scoping Constants are block scoped just like variables declared with let and var This means that they are only accessible within the block in which they are defined if true const message Hello console log message Output Hello console log message Error message is not definedImmutable Value The value assigned to a constant cannot be changed or re assigned However for complex data types like objects and arrays the properties or elements of the object or array can still be modified const pi pi Error Assignment to constant variable const person name John age person name Jane Valid Modifying the property of the object person name Jane age Error Assignment to constant variable Hoisting Like variables declared with var constants declared with const are also hoisted to the top of their scope Using a const variable before it is declared will result in a ReferenceErrorconsole log pi Output ReferenceError Cannot access pi before initializationconst pi console log pi Output Block Level Re declaration Constants cannot be re declared within the same block scope Attempting to re declare a constant within the same block will result in an error if true const x const x Error Identifier x has already been declared The const keyword is commonly used for values that are not intended to be changed such as mathematical constants or configuration settings It helps ensure the immutability of important values in your code improving code readability and reducing bugs caused by accidental re assignment 2023-06-05 13:19:52
海外TECH DEV Community Qu'est-ce que le pattern Operator ? https://dev.to/mxglt/quest-ce-que-le-pattern-operator--2khi Qu x est ce que le pattern Operator L automatisation des tâches est toujours quelque chose d assez particulier Dès qu on veut aller loin dans certaines tâches il faut que l on puisse être capable de réagir àcertains évènements Mais ces évènements ne sont pas toujours facilement écoutables surtout àl intérieur d un cluster Kubernetes Et c est làqu arrive ce dont on va parler aujourd hui le pattern Operator TLDRLes opérateurs sont une extension de Kubernetes qui permet la création de ressources personnalisées afin de gérer des applications et autres composants tout en suivant certains principes de Kubernetes comme la boucle de contrôle Source Documentation Kubernetes Qu est ce que le pattern Operator Le pattern operator permet aux utilisateurs de Kubernetes de créer leur propre controlleur de ressources afin d être capable de déployer et gérer de manière automatique un ensemble d applications et de composants Ce pattern utilise généralement des CRD Custom Resource Definition ou Définition de Ressources Personnalisées afin de permettre de faciliter la configuration de certaines tâches Et vu que le tout suit certains principes de Kubernetes comme la boucle de contrôle votre opérateur pourra selon votre configuration et de ce que vous avez défini dans votre opérateur surveiller l ensemble des ressources que vous avez créées voir d autres et être potentiellement capable de réagir en fonction de certains évènements grâce àl API Kube Notamment pour pouvoir régler automatiquement certains soucis Voici un schéma de RedHat décrivant le contexte ExempleAfin d être plus concret voici des exemples Automatiser pour éviter la création de ressources identiques manuellementVous êtes dans une équipe qui donne aux autres équipes de votre entreprise l ensemble des outils pour qu ils puissent collecter et visualiser leurs métriques de manière complètement indépendante Ce qui signifie que pour chacun de vos clients vous devez déployer et gérer manuellement PrometheusOpenTelemetryGrafanaPostgresDans cette situation au lieu d avoir àrépéter dans votre coin l ensemble des actions pour pouvoir déployer ces applications et l ensemble des composants Services configmap service accounts associés vous pouvez créer un opérateur pour pouvoir gérer ces manipulations pour vous et créer un CRD pour permettre de configurer les quelques points qui peuvent varier d une stack àl autre Le CRD ici s appellerait ObservabilityStack et lorsque que vous allez créer une instance de cette ressource ça va automatiquement créer et configurer correctement l ensemble des ressources associées àla stack Automatiser pour éviter les erreurs manuelles en cas de création mise àjour suppressionCeux qui ont déjàgérer des StatefulSet vont comprendre de suite de quoi je parle ici En effet quand on gère certaines applications surtout celles avec des volumes associés il se peut qu une création une mise àjour ou une suppression demande l exécution de tout un ensemble de commandes dans un ordre précis afin d être sûr que tout se passe bien Quand on en a ça reste correct de gérer ça avec des scripts bash ou ansible Mais quand on en a ou plus Dans ce genre de situation le pattern operator vient aussi vous aider Vous êtes capables de définir un ensemble d actions de manière automatisée qui va s exécuter automatiquement dès qu un évènement de création mise àjour ou suppression va être détecté Ainsi ces applications ne sont plus dépendantes de vous pour être mises àjour et ça va clairement vous faciliter la vie et vous faire gagner du temps Configuration automatiqueDans cet exemple on va imaginer que vous êtes dans une équipe qui gère un Nginx qui sert de gateway pour l ensemble des apis de votre entreprise Dès qu une nouvelle api est créée vous devez l ajouter dans les fichiers de configurations de tous vos environnements Et vu que votre entreprise est très portée sur les microservices vous avez des demandes quasiment toutes les semaines De plus certaines apis sont renommées déplacées ou même supprimées mais vous n êtes pas toujours tenu au courant du coup dès qu une api ne fonctionne plus on vient vous voir pour vous demander pourquoi l api X n est plus accessible Comme vous l avez compris l opérateur vient ànouveau vous aider En effet vu que vous pouvez surveiller des ressources qui n appartiennent pas àl opérateur autrement dit des ressources qui n ont pas étécrées par l opérateur et qui ne sont pas gérées par l opérateur vous pouvez surveiller l ensemble des services créés sur votre cluster pour mettre àjour automatiquement votre configuration dès qu un service est créé mis àjour et ou supprimé Surveillance automatiquePour le dernier exemple imaginez que vous faites parti d une équipe de support dont les applications sont toutes déployées dans un cluster Kubernetes Certaines de ces applications peuvent avoir des pods qui crashent et qui nécessitent une manipulation particulière pour pouvoir les redémarrer proprement Comme on a pu l évoquer précédemment l opérateur est capable d exécuter toute une suite d action que l on a programmer Du coup il pourrait être capable d exécuter ce qu il faut pour pouvoir redémarrer proprement les applications Mais comment faire pour l activer dès qu il y a une erreur Actuellement ça n est pas possible de l activer dès qu il n y a une erreur Mais il faut savoir que par défaut un opérateur effectue une vérification des ressources qu il gère toutes les h Du coup si vous avez un opérateur qui ne gère le redémarrage de vos applications vous pouvez le faire rouler bien plus régulièrement Bien évidemment ça dépendra de la criticitéde vos applications vos objectifs de disponibilité Bon là avec tous ces exemples je pense que vous comprenez le principe et l utilitéd un tel pattern Maintenant si on veut aller plus loin pour comprendre comment ça fonctionne un peu plus dans le détail il faut mettre les mains dedans Du coup on va se donner rendez vous dans la suite de cet article oùon va voir comment créer un opérateur J espère que ça vous aidera et si jamais vous avez des questions quelles qu elles soient Il n y a jamais de questions bêtes ou des points qui ne sont pas clairs pour vous n hésitez pas àlaisser un message dans les commentaires ou àme joindre directement sur LinkedIn même pour parler d autres sujets Vous voulez me supporter 2023-06-05 13:16:00
海外TECH DEV Community What is the Operator pattern? https://dev.to/mxglt/what-is-the-operator-pattern-2l08 What is the Operator pattern Automate tasks is always something particular When we want to do some tasks we need to be able to react or being triggered on some specific events But a lot of events can t be listen easily especially in a Kubernetes Cluster So today we will see how to try to resolve it with the operator pattern TLDROperators are software extensions to Kubernetes that make use of custom resources to manage applications and their components Operators follow Kubernetes principles notably the control loop Source Kubernetes Documentation What is the operator pattern This pattern allows Kubernetes users to create their own resource controller in order to automate the management of their application product stack The operator pattern uses CRDs Custom Resource Definition in order to facilitate the resources tasks configuration And since it follows a lot of Kubernetes principles as the control loop your operator will be depending your configuration and what you ve code in your code able to monitor resources that it has created and or other resources on your cluster Here is a scheme coming from the RedHat blog illustrating the context ExampleIn order to be more concrete here are some examples Automate to avoid to repeat multiple deploymentsIf you are in a team who deploy and give access to each team of your company a complete tool stack to collect and visualize their metrics you need to deploy manually for each of them the following stack PrometheusOpenTelemetryGrafanaPostgresIn this situation instead of repeating the same task to deploy all theses apps and all the related components Services configmaps service accounts you can just create an operator to let it managethis kind of tasks for you with a CRD to contain all the configurations which can be updated For example the CRD can be named ObservabilityStack and each time a new instance of this resource will be created it will automatically create all the resources you ve defined Automate to avoid manual errorsPeople who already managed StatefulSet knows what I will talk about When we manage some applications especially the apps with volumes it can happend that we need to do some specific tasks in a specific order in order to create update or delete something So if you only have or resources of this kind it can be correct to do it with bash scripts or ansible scripts But if you have or more In this kind of situation the operator pattern can help you too If you are able to define all the tasks you need to do they will be executed in the required case Thus this applications won t be dependant anymore of you during an update And it will make your life easier Automate configurationIn this example imagine you are in a team who manage a Nginx which expose all the APIs of your company And all the APIs and your nginx are in the same Kubernetes cluster Once a new one is deployed you need to update your config file with the new endpoints in all the environments Also your company loves microservices so you have new APIs and updates every week Also some of them are renamed moved or even deleted But you are not always in the loop so if one api doesn t work anymore you receive calls to understand what s happening As you already understand operators are a solution to help you in this case As you are able to track resources on all the cluster you can see if some deployements are added renamed or deleted So with this you are able to trigger when these kind of event happend and you can update your configuration file ConclustionWith all this examples I think you understand the principle and the utility of this pattern Now if we want to go further we need put our hands in the code So we will see in the following post how to create an operator I hope it will help you and if you have any questions there are not dumb questions or some points are not clear for you don t hesitate to add your question in the comments or to contact me directly on LinkedIn You want to support me 2023-06-05 13:14:00
Apple AppleInsider - Frontpage News More robot vacuums, Zens travel charger, & Bird Buddy review on the HomeKit Insider podcast https://appleinsider.com/articles/23/06/05/more-robot-vacuums-zens-travel-charger-bird-buddy-review-on-the-homekit-insider-podcast?utm_medium=rss More robot vacuums Zens travel charger amp Bird Buddy review on the HomeKit Insider podcastLots of new smart home products an innovative charging system security concerns and much more home automation news all on this week s jam packed episode of the Homekit Insider podcast HomeKit InsiderThis week Level Lock introduced its latest piece of hardware a smart video doorbell But unlike its other hardware this is designed for shared dwellings such as apartment buildings Read more 2023-06-05 13:35:19
Apple AppleInsider - Frontpage News WWDC deals: $100 off Apple Watch SE, $50 off AirPods Pro, $79 Apple TV, more https://appleinsider.com/articles/23/06/05/wwdc-deals-100-off-apple-watch-se-50-off-airpods-pro-79-apple-tv-more?utm_medium=rss WWDC deals off Apple Watch SE off AirPods Pro Apple TV moreToday s most valuable deals include off a Amazon Fire Smart TV off a M Mac mini AppleCare kit off an Aduro PowerUp Smart port USB rapid charger and off Levoit DualS Smart cool mist humidifiers Save on an Amazon Fire Smart TVThe AppleInsider team searches the web for unbeatable deals at online stores to create a list of quality bargains on popular tech products including discounts on Apple products TVs accessories and other gadgets We share the top deals each day to help you stretch your dollar Read more 2023-06-05 13:27:46
Apple AppleInsider - Frontpage News How to watch WWDC 2023 on iPhone, iPad, Mac, and Apple TV https://appleinsider.com/inside/wwdc/tips/how-to-watch-wwdc-2023-on-iphone-ipad-mac-and-apple-tv?utm_medium=rss How to watch WWDC on iPhone iPad Mac and Apple TVApple s annual Worldwide Developers Conference will kick off in just a few hours and as is par for the course there are a variety of different ways to tune in from afar Here s how to do it WWDC WWDC is a week long event with Apple covering all sorts of topics for developers along the way However the lion s share of attention is always paid to the keynote when Apple executives will showcase what s new with the company s platforms Read more 2023-06-05 13:27:02
Apple AppleInsider - Frontpage News Last-minute Apple headset spec leak exposes details about sensors, cameras, and more https://appleinsider.com/articles/23/06/05/last-minute-apple-headset-spec-leak-exposes-details-about-sensors-cameras-and-more?utm_medium=rss Last minute Apple headset spec leak exposes details about sensors cameras and moreA last minute Apple VR and AR headset leak details an extensive collection of external and internal sensors and claims that the with the device will to use two main chips for processing power A render of a potential Apple headset AppleInsider Apple is mere hours away from revealing what is probably its long awaited mixed reality headset to the world In a last minute leak arriving under the wire a leaker offers a bunch of seemingly key specifications for the inbound hardware Read more 2023-06-05 13:28:09
Apple AppleInsider - Frontpage News You can buy 'Ted Lasso' AFC Richmond shirts & scarves from Nike https://appleinsider.com/articles/23/06/05/you-can-buy-ted-lasso-afc-richmond-shirts-scarves-from-nike?utm_medium=rss You can buy x Ted Lasso x AFC Richmond shirts amp scarves from NikeAfter initially appearing to solely be sold at the Apple Park visitor center new Ted Lasso merchandise can now be bought online from Nike New Ted Lasso merchandise at Apple ParkFirst it was rumored that Apple would sell Ted Lasso goods online then the shirts were spotted at Apple Park Now Nike has begun selling different AFC Richmond tops plus a couple of scarves Read more 2023-06-05 13:09:44
海外TECH Engadget Spotify is laying off 200 employees from its podcast division https://www.engadget.com/spotify-is-laying-off-200-employees-from-its-podcast-division-134749721.html?src=rss Spotify is laying off employees from its podcast divisionSpotify isn t done with layoffs this year The company is cutting jobs in its podcast division or about percent of its workforce as part of a quot strategic realignment quot Spotify is moving to a more quot tailored approach quot that optimizes resources for each podcast creator and their shows and the streaming service believes this requires a leaner team The new strategy will also see Spotify merge its Gimlet and Parcast production houses into an updated Spotify Studios unit They ll continue to produce well known originals and start new shows although there will be a new emphasis on frequent content that fosters large audiences Spotify as a whole will work on quot maximizing consumption quot from the existing audience encouraging them to listen more often and to more podcasts The firm is also growing its Spotify For Podcasters analytics refining its ad options and adding quot more business models quot to help creators profit The provider is keen to tout its growth since it started investing heavily in podcasts in including the acquisitions of Gimlet Parcast and the creator platform Anchor It now claims to be the most popular podcast platform in quot most corners quot of the planet with over million listeners and million shows Usage has grown over percent Spotify says It also says it s the top publisher in the US nbsp Even so the layoffs add to a string of blows for the company Spotify reportedly dropped numerous shows last fall shedding nearly percent of its podcast team in the process The service also laid off percent of its total staff in January with chief content officer Dawn Ostroff credited with growing podcast content fold stepping down at the same time There have also been difficulties with the content itself including misinformation concerns with Spotify exclusive The Joe Rogan Experience The company may be a powerhouse in the category but it s no longer as secure as it once was This article originally appeared on Engadget at 2023-06-05 13:47:49
海外TECH Engadget The best backpacking and camping gear for dads https://www.engadget.com/best-backpacking-camping-gear-for-dads-131509621.html?src=rss The best backpacking and camping gear for dadsWe ve finally fully emerged from winter and dad might be feeling a little cooped up I know I am at least Now that the days are getting longer they re probably itching to get outside ASAP If your dad or father figure is the type to wander off into the woods ーperhaps for days at a time ーwe ve got some suggestions for Father s Day gifts Whether they re an ultra light backpacking maniac or a car camping comfort seeker or maybe they dabble in a little bit of both we ve got just the thing JetBoil MiniMoThe Jetboil Flash is basically inescapable on the trail Its lightweight easily packable design and fast boil times make it attractive to backpackers But the MiniMo is worth the extra money and weight It s only one ounce heavier but the MiniMo s wider shorter cook cup is easier to handle Plus it can actually simmer things unlike the Flash And let me tell you dehydrated eggs are bad enough as is even without burning them in what amounts to a coffee tumbler mounted on a jet engine Trust me this is one of the best upgrades you can make to your dad s setup Leatherman Free series multitoolsThe Leatherman Free series has been a staple of Engadget buying guides ever since it debuted in There are plenty of options out there when it comes to multitools and many of them are great But the Free series was a serious game changer with its one handed access to every tool Plus everything including the knife locks into place so you re less likely to pinch or cut yourself It even requires less regular maintenance and cleaning than older Leatherman like the Juice series which while great tended to collect lint and dust in every nook and cranny at an alarming rate Your dad might not need every tool while hiking the Appalachian but he ll appreciate having options other than a knife or a rock Biolite Headlamp After food water and shelter the next most essential thing on the trail is light This year we re recommending the Biolite Headlamp It s similar to the Headlamp we ve recommended in the past It s ever so slightly bigger and heavier at millimeters thick and grams but it also lasts significantly longer You get up to hours of illumination on low and four hours on high That s up from just hours on low and hours on high with the Headlamp The is also quite a bit brighter hitting lumens as the name suggests The rear battery pack now has a red light on it with both solid and strobe modes so that your father s hiking companions can easily spot him if it starts to get dark And Biolite has finally ditched MicroUSB for USB C All the same basic features and modes are still here that you d expect on any decent headlamp too including spot flood and strobe modes plus eye sight saving red light Sea to Summit X MugI love my old school enameled steel camp mug It s indestructible and has an undeniable classic look But it also conducts heat like nobody s business I ve burned my hands and lips on enough white hot cups of instant coffee to know they re just not that practical Sea to Summit s X Mug with cool grip promises to protect your little fingies from your boiling hot beverage Plus it collapses into a neat little puck for easy storage Admittedly I have not tried the Cool Grip model yet but I ve been using the company s collapsible bowl for over a decade And my hiking buddy uses the regular X Mug so I m pretty confident in recommending Sea to Summit s gear Therm a rest NeoAir XLiteI skipped a sleeping pad on my first backpacking trip I regretted it immediately Therm a Rest pads are the industry standard And the NeoAir XLite is pretty much smack in the middle of their backpacking lineup It s not the lightest or the warmest but it s probably the most versatile The R value a measurement of insulating power of is good enough for three season camping And it packs down to about the size of a water bottle This particular model has been around for a long time and it will probably continue to be a staple of Therm a Rest s lineup for years to come Garmin EnduroFull disclosure I haven t tested the Enduro Nor has anyone else at Engadget But we re big enough fans of Garmin s sports watches to feel comfortable recommending it But why pick this particular one Simple battery life Garmin says it lasts up to hours in GPS mode which is frankly absurd If your dad likes to quantify everything in his life including multi day hikes this is a pretty great way to do it It not only has a giant battery but also a built in solar charger Plus VO max estimates for trail runners heat and altitude acclimation tools for the parent that s into mountain climbing or desert hiking and even navigation features to keep him from getting lost And once he s found his way back to civilization he can snag a coffee at Starbucks using Garmin Pay Sawyer Squeeze water filterMore than even food or shelter water is essential on the trail But dad can t just go drinking from streams and ponds nor can he carry enough with him for a multi day trip That s where the Sawyer Squeeze filter comes in handy There are tons of different ways to purify water from old school iodine tablets to boiling to pump filters But a squeeze filter system is often the fastest and easiest to use Sawyer s are probably the best known for good reason ーyou can fill up the pouch and drink straight from the filter or use the to fill up a reservoir or water bottle They re not ideal for places where dad might be reduced to getting water out of shallow muddy springs or where viral pathogens are a concern But they re perfect for more developed and regularly trafficked trails Ultralite PackTowelYour dad will need a towel on the trail Trust me Maybe he ll be lucky enough to find a shower Or perhaps he ll go for a dip in a lake Or maybe like me he just sweats enough to drown a small animal Regardless an Ultralite PackTowl is an absolute must have They re incredibly small and lightweight yet seem to have unlimited absorption power I m pretty sure they re actually a portal to another dimension where the water is stored I have two that I take with me on every trip one body sized and the other a face towel that stays clipped to my shoulder strap for when I need to mop my brow Snow Peak Titanium SporkThis should go without saying but your dad needs a utensil to eat Yes even on the trail And there s nothing better than a good old fashioned spork to save space and weight I m a big fan of this titanium model from Snow Peak The company makes a ton of great gear but this simple and indestructible essential is probably my favorite Plus it comes in a handful of fun shades like blue green and purple in case your dad is known for his colorful personality Aeropress GoIf your dad would prefer to burn his lips on real coffee consider getting him an Aeropress for his adventures This is admittedly a luxury when you re backpacking But I ve tried instant coffee coffee “tea bags mesh coffee steeping contraptions camping french presses and honestly nothing makes better coffee with less cleanup than an Aeropress You could go for the full size model but the Go version shaves off a few precious ounces which could be crucial when trying to cut weight for a long trip But I actually bring the full size version when I hit the trail and have had no problems Goal Zero Lighthouse Not every dad wants to strap three days worth of gear to his back and walk off into the woods Some are perfectly content driving up to a campsite pitching a tent and building a fire For them the Lighthouse is a great gift It is first and foremost an LED lantern perfect for food prep reading or even playing cards around camp But he can also use its mAh battery to charge his phone or headlamp And if he does happen to sap all its juice it has a hand crank for recharging through manual labor and an optional solar panel Joby GripTight Action KitObviously part of the reason dad disappears into the wilderness is to escape from technology and enjoy nature But I m sure he wants to capture at least some of it for posterity Dragging a DSLR or even a mirrorless camera into the woods is overkill especially when he s probably got a pretty good camera with him already his cellphone Joby s unique GorillaPod tripods are perfect for the outdoors And the affordable Action Kit is pretty flexible It comes with a Bluetooth remote it can hold most phones or even a GoPro camera and it has a cold shoe adapter for a light or microphone Lodge Cast Iron Cook it AllLook if he s driving up to the campsite anyway there s no need to fight with alarmingly thin steel pans or tiny fuel canister stoves The inch cast iron Cook it All from Lodge is the perfect campfire companion It can be a dutch oven a griddle or a skillet You can even bake a pizza inside it I ll admit though that I ve never considered baking a pizza while camping Cast iron is heavy and bulky but it s also damn near indestructible and holds on to heat for a long time which is good when you re dealing with a finicky campfire Plus if seasoned properly and treated with care cast iron is reasonably nonstick So dad might even be able to make some sunny side up eggs for breakfast Helinox Chair ZeroHad you asked me ten years ago I d have said there s no way I would drag a chair backpacking with me But as age and fatherhood have started to catch up with me I m ready to at least consider giving my poor broken body some respite while I m on the trail There are a few lightweight and packable options out there but the Helinox Chair Zero is the most highly recommended and it s easy to see why It s durable reasonably comfortable not to mention ridiculously small and light At just one pound for the Zero and one pound seven ounces for the Zero L it s one of the few chairs and I mean actual chairs not one of those foam mats you put on the ground that someone would want to take on a multiday hike They also pack down small enough that your dad might not mind sacrificing valuable pack space to them The Chair Zero fits in a stuff sack just x x inches while the L is a little larger at x x inches The difference between the two is that the L is wider and taller and can support up to pounds for big and tall types Gear Aid Medium Duty ParacordParacord is one of the most useful things dad can bring on any camping trip whether it s from the comfort of a car or thru hiking the Appalachian The medium duty stuff is good enough for tying down tents hanging food bags or replacing boot laces It can even be split open and the inner threads used as a fishing line but hopefully your father never finds themselves in a situation that desperate This isn t a flashy gift but it might get more use than anything else on this list Tribit StormBox Micro One of our favorite portable Bluetooth speakers makes an excellent camping companion The StormBox Micro s twelve hour battery should be more than enough for casually unwinding around a fire after a day of hiking And its IP rating means it should be able to take a solid beating without giving up the ghost Add to that a strap that makes it easy to clip to a backpack or just hang from a nail in a lean to and the ability to act as a battery bank in case you need to top up your phone in an emergency and this is a versatile little speaker for dad to keep in their hiking bag The sound isn t going to blow anyone away but it s good enough especially at just BackpacksEngadgetLast year we recommended Osprey s Atmos AG for anyone looking to be as comfortable as possible while backpacking This year we re doing the same just with some updated Osprey designs The Atmos has been given a minor face lift but the bigger deal is that it s now made with percent recycled materials You still get an integrated rain cover Anti Gravity suspension and fit on the fly adjustment system It s just now more eco friendly As part of the redesign the capacity has been increased to better reflect the pack s name Before if you bought the Atmos in a small you actually only got liters of storage Now the small is a full liters The one downside is that the new materials and carrying capacity have led to a slight increase in weight too with the S M Atmos AG coming in at four pounds ounces The women s equivalent of the Atmos is the Aura AG which is slightly smaller and lighter but has the same suspension system and similar lugging capacity And if you re on a tight budget this year you can still find the older model available in some places at a steep discount TentsColemanObviously one of the most important pieces of camping equipment is a tent Not everyone s dad wants to spend their nights in a lean to But their needs will dictate what kind of tent to buy If your giftee is an avid backpacker who needs something ultra light to take on the trail I heartily recommend Big Agnes Tiger Wall UL It s not their lightest offering but it strikes a great balance between weight and convenience It can sleep two and has two vestibules for stowing gear but as a single person tent it s borderline luxurious Even with the optional footprint which I highly recommend for any tent the pack weight weighs under three pounds and the mtnGLO light system means no fussing with a lantern or headlamp to read and sort gear after dark If unabashed luxury is more your dad s thing consider REI s Wonderland At this is no casual investment but it should last quite some time The walls are nearly vertical and it reaches a height of six and a half feet in the middle meaning all but the tallest of humans should be able to stand upright inside The square feet of floor space is plenty of room for a family of six to sleep in and it has large ventilation windows to keep the inside cool during the hottest months The one caveat is that if you happen to do most of your camping in rainy environments you might want to shop around for something with fewer windows and better rainfly coverage Neither the Wonderland nor the Tiger Wall are cheap So if budget is an important factor or if dad is just looking to dabble in the world of car camping consider the Coleman Skydome Coleman gear is nothing fancy You can find it in practically any Walmart or Dick s Sporting Goods across the country But it s so ubiquitous because of its rock solid reliability and reasonable prices The Skydome is nearly the same size as the Wonderland but comes in at just or if you opt for the Darkroom model The ceiling is shorter and the walls more angled but if you re only using the tent to sleep in that shouldn t be a major concern This article originally appeared on Engadget at 2023-06-05 13:15:09
Cisco Cisco Blog Celebrating nature-based solutions this World Environment Day https://feedpress.me/link/23532/16162251/celebrating-nature-based-solutions-this-world-environment-day solutions 2023-06-05 13:00:50
海外科学 BBC News - Science & Environment Could ultra-processed foods be harmful for us? https://www.bbc.co.uk/news/health-65754290?at_medium=RSS&at_campaign=KARANGA industry 2023-06-05 13:19:25
金融 金融庁ホームページ 職員を募集しています。(保険分野の国際関連業務に従事する職員) https://www.fsa.go.jp/common/recruit/r5/soumu-04/soumu-04.html 関連 2023-06-05 15:00:00
ニュース BBC News - Home Mortgage rates: Average two-year fix rises by £35 a month https://www.bbc.co.uk/news/business-65807827?at_medium=RSS&at_campaign=KARANGA figures 2023-06-05 13:07:52
ニュース BBC News - Home Burna Boy makes history with sold-out London Stadium gig https://www.bbc.co.uk/news/newsbeat-65810233?at_medium=RSS&at_campaign=KARANGA london 2023-06-05 13:24:33
ニュース BBC News - Home Rishi Sunak's claims on small boats fact checked https://www.bbc.co.uk/news/65811208?at_medium=RSS&at_campaign=KARANGA crossings 2023-06-05 13:12:10
ニュース BBC News - Home Could ultra-processed foods be harmful for us? https://www.bbc.co.uk/news/health-65754290?at_medium=RSS&at_campaign=KARANGA industry 2023-06-05 13:19:25
仮想通貨 BITPRESS(ビットプレス) [新潮] 暗号資産投資トラブルで「20億円」丸儲け ヤクザに追われ、米国で50万ドルを踏み倒し…笑顔が眩しい「日本人ギャンブラー」はどこへ消えた? https://bitpress.jp/count2/3_9_13635 資産 2023-06-05 22:34:10
仮想通貨 BITPRESS(ビットプレス) bitFlyer、新規暗号資産「ザ・サンドボックス(The Sandbox)」近日取扱開始 https://bitpress.jp/count2/3_10_13634 bitflyer 2023-06-05 22:04:32
海外TECH reddit The Canadiens have agreed to terms on an eight-year contract extension (2023-24 to 2030-31) with forward Cole Caufield. #GoHabsGo https://www.reddit.com/r/Habs/comments/141dvpt/the_canadiens_have_agreed_to_terms_on_an/ The Canadiens have agreed to terms on an eight year contract extension to with forward Cole Caufield GoHabsGo submitted by u Olihorn to r Habs link comments 2023-06-05 13:02:34
海外TECH reddit Eight-year contract extension for Cole Caufield https://www.reddit.com/r/hockey/comments/141dyby/eightyear_contract_extension_for_cole_caufield/ Eight year contract extension for Cole Caufield submitted by u psykomatt to r hockey link comments 2023-06-05 13:05:03

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)