投稿時間:2023-05-16 02:23:11 RSSフィード2023-05-16 02:00 分まとめ(25件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT InfoQ Java Gets a Boost with the Record Pattern, Enabling More Expressive Coding https://www.infoq.com/news/2023/05/java-gets-boost-with-record/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global Java Gets a Boost with the Record Pattern Enabling More Expressive CodingJEP finalizing Record Patterns has been promoted from Proposed to Target to Targeted status for JDK following feedback driven enhancements in JEP and JEP Record patterns now allow for powerful data navigation and processing when used with type patterns The main change from JEP is the removal of record patterns in the header of an enhanced for statement By A N M Bazlur Rahman 2023-05-15 16:30:00
AWS AWS - Webinar Channel Multiple approaches for protecting data in Amazon DynamoDB - AWS Databases in 15 https://www.youtube.com/watch?v=yuSp5iIIDOo Multiple approaches for protecting data in Amazon DynamoDB AWS Databases in Amazon DynamoDB is a serverless NoSQL key value database service offered by AWS With Amazon DynamoDB workloads can automatically scale with single digit millisecond latency This session will provide an overview of the methods and best practices for protecting data in DynamoDB Multiple backup and recovery features will be covered in this session On demand backups to create full backups of your DynamoDB table for archiving will be discussed along with point in time recovery PITR which provides continuous backups of DynamoDB table data Additional options such as deletion protection to prevent accidental deletion of tables will be covered Learning Objectives Objective Understand what all the data protection options are for Amazon DynamoDB Objective Learn how features such as point in time recovery PITR and deletion protection work Objective See firsthand how easy DynamoDB data protection features can be implemented in the AWS console To learn more about the services featured in this talk please visit To download a copy of the slide deck from this webinar visit 2023-05-15 16:15:05
技術ブログ Developers.IO [AWS Glue] S3バケットにある大量のファイルを圧縮して別のS3バケットに保存してみた https://dev.classmethod.jp/articles/glue-s3-zip/ lambd 2023-05-15 16:17:25
海外TECH Ars Technica Report: Like Intel’s latest CPUs, Apple’s M3 will lean on small cores to boost speed https://arstechnica.com/?p=1939234 analytics 2023-05-15 16:01:16
海外TECH DEV Community How to track you coding time https://dev.to/vleov/how-to-track-you-coding-time-3dbl How to track you coding timeHave you ever wondered how much time you spend coding if so is there a way to track it The extension Wakatime is available for many IDE s and text editors with this extension you can easily track your time WakaTime Dashboards for developersEvery week they email you a report and they have an option to display your time on GithubPersonally I use it because I m interested how much time I code per week but it s also cool to show my friends the time on Github DDo you use Wakatime or don t like it 2023-05-15 16:54:29
海外TECH DEV Community Weekly Roundup (May 8): 🔥Hot Topics🔥 in #workplace, #sharepoint, and #powerplatform https://dev.to/jaloplo/weekly-roundup-may-8-hot-topics-in-workplace-sharepoint-and-powerplatform-36a3 Weekly Roundup May Hot Topicsin workplace sharepoint and powerplatformHey fellow developers It s jaloplo here to give you the latest scoop on what s been happening in the workplace sharepoint and powerplatform communities workplaceDark Side of Remote Work Personal Experience by Viktoria Bors Pajuste shares the negative aspects and challenges faced in remote work from a personal perspective Creating a Healthier Workplace with a Wellness Challenge by saumya explores the implementation of a wellness challenge to promote a healthier work environment What is needed to move the needle on employee engagement by sherin discusses strategies and initiatives required to improve employee engagement levels in organizations Upgrading Construction Business with Digital Business Solutions by Isabel Debra explores the benefits and advantages of implementing digital business solutions in the construction industry sharepointSwitching to Microsoft Lists A goodbye to SharePoint Online lists by Jaime López discusses the transition from SharePoint Online Lists to Microsoft Lists and its implications powerplatform Embed Power BI Content in a Model Driven App System Dashboard by CloudStakes Technology explores the process of embedding Power BI content in a model driven app system dashboard Trigger Settings amp Conditions in Power Automate by david wyatt explains the configuration of trigger settings and conditions in Power Automate workflows Effortless User Story Creation by Bala Madhusoodhanan discusses techniques and methods to streamline the process of creating user stories for software development projects That s all for this week s roundup Thanks for tuning in and remember to keep the discussions lively and informative in our tags If you have any suggestions for future topics feel free to drop them in the comments below See you next week 2023-05-15 16:43:20
海外TECH DEV Community Programming Again After 2 Years... | Mental Health & Burn Out https://dev.to/hb/programming-again-after-2-years-mental-health-burn-out-1096 Programming Again After Years Mental Health amp Burn OutHello I m glad to be back on the platform after two years again The truth is that I took a year break from programming After learning to code in I had a great year learning Python JavaScript TypeScript Rust and much more I built a lot of fun projects and wrote a lot of fun articles on dev to However I think I got burned out from coding every day for hours on end constantly learning new things and making new projects This burn out led me to not write a single piece of code for years You might be wondering why am I writing this post Well the truth is that I am now interested in programming again and interested in writing more blogs I want to keep myself accountable on this journey of relearning all of my skills by writing blogs on my journey and how to come back after a burn out Stay tuned 2023-05-15 16:26:04
海外TECH DEV Community How to use Azure CLI to create a Virtual Machine https://dev.to/yemmyoye/how-to-use-azure-cli-to-create-a-virtual-machine-2ido How to use Azure CLI to create a Virtual MachineThere are different ways of creating virtual machine These include azure portal PowerShell Azure Resources Manager template and the Azure Command Line Interface CLI In our previous blog posts we discussed the first three methods and we will now cover the last one CLI in this blog CLI is a cross platform command line tool that allows users to login to Azure and run administrative commands on its resources It enables the use of interactive command line prompts or scripts to execute commands through a terminal There are two ways to access CLI and they are i from a browser through the Azure CloudShell ii from inside a Docker ContainerLet s proceed to our task of the day Log in to Azure portal and click on CloudShellSelect Bash Copy the Command for creating your Resource group and paste it on the terminal window Here I will create a resource group with the name AbbyRg using this command az group create name AbbyRg location EastUSThen press enterFrom the image above the Provisioning state is showing succeeded indicating that the Resource group AbbyRg has been created Copy the Command for creating your Virtual machine and paste it on the terminal window I will name my Virtual machine AbbyVMcli and use the command below az vm create resource group AbbyRg name AbbyVMcli image UbuntuLTS generate ssh keysThen press enterThe Powerstate in the image above shows that the Virtual machine is running indicating that it has been created To confirm the status about the Resource group and Virtual machine created go to your azure account and search for the two The images below show the Resource group AbbyRg and Virtual machine AbbyVMcli on the Azure portal For compliance with Azure best practices we will check Azure Advisor for recommendations in respect of reliability security operational excellence performance and cost of the resources created Click on the Hamburger Icon on the top left hand corner of Azure portal and Select Advisor from the dropdown menu The image below shows a Recommendation on Reliability The recommendation is to use NAT gateway for Outbound ConnectivityI hope you find this blog post useful 2023-05-15 16:12:51
海外TECH DEV Community How To Use expect.objectContaining With Null and Undefined https://dev.to/zirkelc/how-to-use-expectobjectcontaining-with-null-and-undefined-3iba How To Use expect objectContaining With Null and UndefinedIf you use Jest for testing you are probably familiar with the expect function and its many matchers One of the most useful matchers is expect objectContaining which allows you to check whether an object contains a certain set of properties and types However one limitation of expect objectContaining is that it does not support null and undefined values This can be frustrating when testing code that returns properties that are optional or nullable I recently came across a workaround for this issue by using the expect toBeOneOf matcher from the jest extended library This matcher allows you to check whether a value matches one of the expected values including null and undefined test should not allow null or undefined async gt const userType expect objectContaining id expect any Number name expect any String email expect any String email cannot be null or undefined expect id name John Doe email undefined toEqual userType test should allow null or undefined async gt const userType expect objectContaining id expect any Number name expect any String allow null and undefined email expect toBeOneOf expect any String null undefined gt email can be null expect id name John Doe email null toEqual userType gt email can be undefined expect id name Jane Doe email undefined toEqual userType In this example we test whether the given object has a certain set of properties with particular types For the email property we use expect toBeOneOf expect any String null undefined to allow null undefined or a string as possible values Here is the result of the test run of the two test cases As expected the first test case fails because of the undefined value of email In the second test case both null and undefined pass the test as valid values I ve prepared a CodeSandBox that lets you try it out quickly without having to go to the trouble of setting up Jest Try CodeSandBoxI hope you found this post helpful If you have any questions or comments feel free to leave them below If you d like to connect with me you can find me on LinkedIn or GitHub Thanks for reading 2023-05-15 16:01:08
海外TECH DEV Community Unlocking Workflow Automation : Introduction to Apache Airflow https://dev.to/grayhat/unlocking-workflow-automation-introduction-to-apache-airflow-2dha Unlocking Workflow Automation Introduction to Apache AirflowApache Airflow is an open source workflow management platform that enables the creation and scheduling of complex data pipelines With its robust features and intuitive interface Airflow has gained popularity among data engineers and data scientists This article provides an overview of Apache Airflow its key components and its capabilities in managing and orchestrating workflows What is Apache Airflow Apache Airflow is a platform designed to programmatically author schedule and monitor workflows It allows users to define tasks as directed acyclic graphs DAGs where each task represents a discrete unit of work These tasks can be written in various programming languages and encompass a wide range of data processing and analysis operations Airflow offers a rich set of operators sensors and connectors to integrate with different systems and tools How is Apache Airflow different Let look at some of the differences between Airflow and other workflow management platforms Directed Acyclic Graphs DAGs are written in Python which has a smooth learning curve and is more widely used than Java which is used by Oozie There s a big community that contributes to Airflow which makes it easy to find integration solutions for major services and cloud providers Airflow is versatile expressive and built to create complex workflows It provides advanced metrics on workflows Airflow has a rich API and an intuitive user interface in comparison to other workflow management platforms Its use of Jinja templating allows for use cases such as referencing a filename that corresponds to the date of a DAG run There are managed Airflow cloud services such as Google Composer and Astronomer io Key Components of Apache Airflow Apache Airflow consists of several core components that work together to facilitate workflow management The main components include Scheduler The scheduler orchestrates the execution of tasks based on their dependencies and schedules defined in the DAGs Executor The executor is responsible for running tasks on workers either sequentially or in parallel based on the configured concurrency Web Server The web server provides a user interface UI for interacting with Airflow allowing users to monitor and manage workflows view task logs and perform administrative tasks Database Airflow utilizes a metadata database to store workflow definitions execution history and other related information Operators Operators represent the individual tasks within a workflow and define the logic for performing specific actions such as executing SQL queries transferring files or running custom scripts Sensors Sensors are special types of operators that allow workflows to wait for certain conditions or external events before proceeding to the next task Benefits of Apache Airflow Apache Airflow offers several benefits that make it a powerful workflow management platform Scalability Airflow is highly scalable and can handle workflows ranging from simple to highly complex accommodating large scale data processing needs Dependency Management Airflow provides a visual representation of task dependencies allowing users to define and manage complex workflows with ease Extensibility Airflow s modular architecture enables easy integration with various systems tools and custom operators making it flexible and adaptable to different use cases Monitoring and Alerting Airflow offers comprehensive monitoring capabilities including real time task execution status logs and email notifications enabling users to track and troubleshoot workflows effectively Ecosystem and Community Airflow has a thriving ecosystem and an active community that contribute plugins connectors and best practices enriching its functionality and supporting users Example from airflow import DAGfrom airflow operators bash operator import BashOperatorfrom datetime import datetime Define the DAGdag DAG simple dag description A simple Apache Airflow DAG schedule interval Run every minutes start date datetime catchup False Define the taskstask BashOperator task id task bash command echo Hello Airflow dag dag task BashOperator task id task bash command echo Goodbye Airflow dag dag Set task dependenciestask gt gt taskExplanation Import necessary modules Import the required modules from the airflow package including DAG for defining the DAG and BashOperator for executing bash commands as tasks from airflow import DAGfrom airflow operators bash operator import BashOperatorfrom datetime import datetimeDefine the DAG Create a new instance of DAG with a unique identifier simple dag in this example Specify a description for the DAG a schedule interval in this case running every minutes the start date for the DAG and set catchup to False to prevent backfilling of missed runs Define the DAGdag DAG simple dag description A simple Apache Airflow DAG schedule interval Run every minutes start date datetime catchup False Define the tasks Create two instances of BashOperator to define the individual tasks within the DAG Give each task a unique task id and provide a bash command to be executed as the bash command parameter Define the taskstask BashOperator task id task bash command echo Hello Airflow dag dag task BashOperator task id task bash command echo Goodbye Airflow dag dag Set task dependencies Use the gt gt operator to define the dependencies between tasks In this example task depends on task so task will be executed first before task Set task dependenciestask gt gt taskThe DAG above consists of two tasks that execute bash commands to print messages to the console The DAG is scheduled to run every minutes starting from the specified start date When executed Airflow will run task first and then task following the defined dependencies You can save this code as a Python file e g simple dag py and place it in the appropriate Airflow DAGs directory Once Airflow is running and the DAG is detected it will be scheduled and executed according to the specified interval In ConclusionApache Airflow empowers data engineers and data scientists with a robust workflow management platform to automate and orchestrate data pipelines Its flexible architecture rich feature set and active community make it a popular choice for organizations looking to streamline their data processing workflows 2023-05-15 16:00:44
海外TECH Engadget TCL's new 2023 TVs deliver high frame rate gaming at lower prices https://www.engadget.com/tcls-new-2023-tvs-deliver-high-frame-rate-gaming-at-lower-prices-165458947.html?src=rss TCL x s new TVs deliver high frame rate gaming at lower pricesTCL just announced a bunch of new TVs in two different product lines As originally teased during this year s CES the S Class models are easy on the old bank account Despite the budget friendly price S Class TVs boast plenty of modern features like a metal bezel less design S Class models break down into three sub categories The S is the barest of the bunch with a p resolution and display sizes perfect for easy transport going all the way down to inches The p S ranges from inches to inches and throws in HDR a voice remote and Bluetooth audio The S however is where things get interesting These TVs offer K resolutions Dolby Vision Dolby Atmos and frame insertion for smoother motion Best of all The S starts at for the inch model and sizes go all the way up to inches TCL s Q Class begins with the Q The QLED display offers a percent brighter picture than any of the S Class models and it also features something called “Game Accelerator which is a tool that pushes the refresh rate to Hz when playing games at the expense of half the vertical resolution of a K image The Q line ranges from inches to inches The Q includes a native Hz panel that balloons to Hz by accessing its own Game Accelerator mode though with the same cut in vertical resolution These TVs support AMD FreeSync Premium Pro Dolby Vision IQ and ship with a backlit remote TCL s Q line starts at inches with sizes going up to inches Finally there s the flagship QM line These TVs are all about picture quality with Mini LED backlighting nits of peak brightness thousands of local dimming zones and a proprietary engine to improve contrast These models also boast a built in subwoofer much like the Hisense UH Wi Fi for improved streaming and a height adjustable stand for proper soundbar positioning The QM starts at inches and goes all the way up to inches an eye watering Most of these televisions are already available at both online and physical retail locations except for that massive inch QM That one comes out later this year so start saving now nbsp This article originally appeared on Engadget at 2023-05-15 16:54:58
海外TECH Engadget Telly will give you a free TV if you'll watch non-stop ads https://www.engadget.com/telly-will-give-you-a-free-tv-if-youll-watch-non-stop-ads-164319359.html?src=rss Telly will give you a free TV if you x ll watch non stop adsNever mind free streaming services ーone startup is giving the hardware away too Telly is now taking US reservations for free inch K TVs that continuously display ads on part of a secondary screen So long as you re willing to accept those ads or tune them out and share data you won t have to pay a thing As Telly explains the smaller display also shows news sports scores and other useful data You won t have to interrupt a show just to stay in the know The set has its own camera microphone array sensors and voice assistant enabling video calls and motion captured fitness apps There s a built in five driver sound bar as well You re not stuck using the company s platform as you ll still find three HDMI ports to plug in other media devices The reservations cover the first TVs which are expected to ship in the summer Telly hasn t outlined full specs as we write this but the set is estimated to be worth at retail The strategy isn t surprising given Telly s leadership Company chief Ilya Pozin co founded Pluto TV Paramount s free to watch service He sees the free TV as making viewers an quot equal part quot of the ad system ーyou re benefiting as much as the corporations Pozin claims nbsp Whether or not customers follow suit isn t clear The ad supported model might not thrill privacy minded viewers who d rather not share info There s also just one size and configuration so you ll have to look elsewhere if you want a larger or higher quality screen This is for viewers who d rather not pay for a cut rate TV which may still have home screen ads just to outfit their living room Telly s launch is part of a broader rush to offer free TV experiences Amazon Roku Tubi and others all have ad supported streaming channels while Google TV is integrating many of those providers into its platform The difference of course is the business model Companies like Amazon and Roku see ad supported TV as a way to spur hardware sales while Telly is depending solely on those ads to turn a profit This article originally appeared on Engadget at 2023-05-15 16:43:19
海外TECH Engadget Hackers breach Philadelphia Inquirer ahead of Tuesday’s mayoral primary https://www.engadget.com/hackers-breach-philadelphia-inquirer-ahead-of-tuesdays-mayoral-primary-163325744.html?src=rss Hackers breach Philadelphia Inquirer ahead of Tuesday s mayoral primaryThis weekend The Philadelphia Inquirer was hacked ahead of Tuesday s Democratic mayoral primary As a result the newspaper had to cancel its Sunday edition and it wasn t clear until late Sunday afternoon that it could proceed with its Monday circulation It s the paper s biggest disruption since when a blizzard that blanketed much of the eastern US made it impossible for staff to reach their offices It isn t yet known who is responsible for the cyberattack or if it was politically motivated However The Inquirer says it hired security company Kroll to investigate in addition to notifying the FBI which said “It s customary that we offer our assistance in these matters Contracted security vendor Cynet first alerted The Inquirer about suspicious activity on Thursday May th Although that didn t lead to any stoppages the paper s weekend crew noticed Saturday morning that it couldn t access the publication s content management system Publisher Lisa Hughes hasn t stated which systems the attackers breached whether any employees were targeted or whether they accessed any confidential information The newspaper says many of its internal systems don t require multi factor authentication Staff won t be allowed into their offices through at least Tuesday as the investigation continues Hughes said the company is looking into alternative workspaces for election coverage which she stated would otherwise proceed as usual Philadelphia s last Republican mayor was in meaning Tuesday s Democratic primary will essentially decide the city s next mayor Polls indicate a tight race with five of the nine candidates “within striking distance of first place reportsFiveThirtyEight News organizations can be enticing targets for hackers whether during election run ups or not Potential motives could include exposing sources accessing reporters emails or Slack messages publishing misinformation or delaying the publication of accurate information that could harm an individual or organization “Depending on who s got access and what kind of access they have and what they do with it you can go a lot of different ways Runa Sandvik a cybersecurity expert specializing in media outlets told the Philadelphia Inquirer “But bottom line is that this is something that leadership does have to take into account and plan for and invest in It s not something that you can just secure overnight and it s not something you can just clean up overnight either This article originally appeared on Engadget at 2023-05-15 16:33:25
海外TECH Engadget The best GPS running watches for 2023 https://www.engadget.com/best-gps-running-watch-141513957.html?src=rss The best GPS running watches for Because I m the editor of Engadget by day and a volunteer coach in my free time I often get asked which GPS watch to buy People also ask what I m wearing and the answer is All of them I am testing all of them For my part the best running watches are quick to lock in a GPS signal offer accurate distance and pace tracking last a long time on a charge are comfortable to wear and easy to use Advanced stats like VO Max or maximum oxygen intake during workouts with increasing intensity are also nice to have along with training assessments to keep your workload in check and make sure you re getting in effective aerobic and anaerobic workouts It s also a plus when a watch supports other sports like cycling and swimming which all of these do to varying extents As for features like smartphone notifications and NFC payments they re not necessary for most people especially considering they drive up the asking price Without further ado I bring you capsule reviews of four running watches each of which I ultimately recommend none of which is perfect And keep in mind when it comes time to make a decision of your own there are no wrong answers here I like Apple and Garmin enough for instance that I switch back and forth between them in my own training The best running watch that s also a smartwatch Apple WatchPros Stylish design a great all around smartwatch you ll want to use even when you re not exercising automatic workout detection heart rate and blood oxygen monitoring support for lots of third party health platforms auto pause feels faster than on Garmin watches zippy performance and fast re charging optional LTE is nice to have Cons For iPhone users only shorter battery life than the competition might concern endurance athletes fewer performance metrics and settings than what you d find on a purpose built sports watch Don t think of the Apple Watch as a running watch Think of it as a smartwatch that happens to have a running mode Almost eight years after the original Watch made its debut Apple has successfully transformed its wearable from an overpriced curiosity to an actually useful companion device for the masses But being a gadget for the masses means that when it comes to running the Apple Watch has never been as feature rich as competing devices built specifically for that purpose Before I get to that a few words on why I like it The Apple Watch is the only one of these watches I d want to wear every day And I do After reviewing Apple Watches for years I finally purchased one in fall The most recent model is stylish or at least as stylish as a wrist based computer can be and certainly more so than any running watch I ve encountered The aluminum water resistant body and neutral Sport band go with most outfits and will continue to look fresh after all your sweaty workouts and jaunts through the rain And the always on display is easy to read in direct sunlight The battery life is hours according to Apple Indeed I never have a problem making it through the day I m often able to put the watch back on after a night of forgetting to charge it and still have some juice left If you do forget even a few minutes of charging in the morning can go a long way even more so now that the Watch supports even faster charging than before Plus the new low power mode in watchOS can help you extend the life of your Watch on particularly long days That said it s worth noting that other running watches claim longer usage time ーbetween and hours in some cases When it comes to workouts specifically Apple rates the battery life with GPS at up to seven hours Given that I would trust the Watch to last through a short run or even a half marathon but I m not sure how it would fare in one of my slow five hour plus marathons We haven t put the higher end Apple Watch Ultra through such paces yet but it s worth mentioning that it has the longest battery life of any Apple Watch with a promised hours and we got about three days worth of regular use during our testing The built in activity tracking app is simple and addictive I feel motivated to fill in my move active calorie exercise and stand rings each day I enjoy earning award badges even though they mean nothing I m grateful that the Apple Health app can pull in workouts from Garmin and every other brand featured here and then count that toward my daily exercise and stand goals but not my move goal curiously My one complaint is that the sensors don t always track standing time accurately I have failed to receive credit when standing for long periods in front of a stove but occasionally I ve been rewarded for doing absolutely nothing As for running specifically you re getting the basics and not much else You can see your distance calorie burn heart rate readings average pace and also rolling pace which is your pace over the past mile at any given moment You can also set pace alerts ーa warning that you re going faster than you meant to for example Like earlier Apple Watches you can also stream music or podcasts if you have the cellular enabled LTE model Because the watch has a GPS sensor you can leave your phone at home while running Of course no two brands of running watches will offer exactly the same distance readout on a run That said though Apple never explicitly claimed the Watch offers improved accurate distance tracking the readouts here do feel more accurate than on earlier models It s possible that Apple is making ongoing improvements under the hood that have added up to more accurate tracking performance For indoor runners the Apple watch integrates with some treadmills and other exercise equipment thanks to a two way pairing process that essentially trades notes between the device and gym gear formulating a more accurate estimate of your distance and effort using that shared data In my experience the Watch usually agrees with the treadmill on how far I ran which is not always the case with other wearables I also particularly appreciate that the Apple Watch automatically detects workouts after a certain period of time I use this feature daily as I walk to and from the subway and around my neighborhood After minutes the familiar vibrating tick with a message asking if I want to record an outdoor walk The answer is always yes and the watch thankfully includes the previous minutes in which I forgot to initiate a workout Regardless of the workout type all of your stats are listed on a series of pages which you swipe through from left to right In my early days using the watch it was tempting to use the Digital Crown as a stopwatch button similar to how I use other running watches This urge has mostly subsided as I ve gotten more comfortable with the user interface Like many of its competitors the Apple Watch has an auto pause option which I often use in start and stop workouts I also found in side by side comparisons one watch on each wrist that auto pause on the Watch reacts faster than on Garmin models Conveniently the Apple Watch can export workouts to MyFitnessPal so you get credit for your calorie burn there Of note the Watch has all of the health features that the previous generation including a built in ECG test for cardiac arrhythmias along with fall detection a blood oxygen test respiratory tracking emergency calls and menstrual tracking Also like previous models there s a built in compass and international emergency calling Unfortunately the stats themselves are fairly limited without much room for customization There s no mode for interval workouts either by time or distance There s also not much of an attempt to quantify your level of fitness your progress or the strenuousness of your workouts or training load None of this should be a dealbreaker for more casual runners For more detailed tracking your best bet is to experiment with third party running apps for the iPhone like Strava RunKeeper MapMyRun Nike Run Club and others It s through trial and error that I finally found an app with Watch support and timed intervals But at the end of the day it s easier to wear a purpose built running watch when I m running outdoors sync my data to Apple Health get my exercise and standing time credit and then put the Apple Watch back on the first chance I get But if you can only afford one smartwatch for training and life there s a strong case for choosing this one The best for triathletes Garmin Forerunner Pros Accurate distance tracking long battery life advanced fitness and training feedback stores up to songs works with Garmin Pay Cons Garmin s auto pause feature feels slower than Apple s more advanced features can sometimes mean the on device UI is tricky to navigate features like Garmin Pay drive up the price but may feel superfluous If the Apple Watch is for people who want a smartwatch that also has some workout features the Garmin Forerunner is for athletes in training who want a purpose built device to help prepare for triathlons The various sensors inside can track your heart rate zones VO Max and blood oxygen with the option to track all day and in sleep as opposed to just spot checking On the software side you get daily workout suggestions a rating that summarizes your performance condition animated on screen workouts a cycling power rating a sleep score and menstruation tracking You can also create round trip courses as well as find popular routes though Garmin s Trendline populating routing feature Like other Garmin watches even the entry level ones you also get feedback on your training load and training status unproductive maintaining productive peaking overreaching detraining and recovery a “Body Battery energy rating recommended recovery time plus Garmin Coach and a race time predictor And you can analyze “running dynamics if you also have a compatible accessory The slight downside to having all of these features is that the settings menu can be trickier to navigate than on a simpler device like the entry level Forerunner Fortunately at least a home screen update released back in fall makes it so that you can see more data points on the inch screen with less scrolling required Speaking of the screen the watch face available in four colors is easy to read in direct sunlight and weighs a not too heavy g That light weight combined with the soft silicone band makes it comfortable to wear for long stretches Garmin rates the battery life at up to seven days or up to hours with GPS in use That figure drops to six hours when you combine GPS tracking with music playback In my testing I was still at percent after three hours of GPS usage Most of my weekday runs are around minutes and that it turns out only puts a roughly two or three percent dent in the battery capacity In practice the watch also seemed quicker than my older Forerunner Music to latch onto a GPS signal even in notoriously difficult spots with trees and cover from tall buildings As always distance tracking is accurate especially if you start out with a locked in signal which you always should Like I said earlier though I did find in a side by side test Garmin s auto pause feature seems sluggish compared to Apple s Aside from some advanced running and cycling features what makes the one of the more expensive models in Garmin s line are its smartwatch features That includes Garmin Pay the company s contactless payments system and music storage for up to tracks on the device You can also mirror your smartphone notifications and use calendar and weather widgets Just know you can enjoy that even on Garmin s entry level model more on that below I can see there being two schools of thought here if someone plans to wear this watch for many hours a week working out it may as well get as close as possible to a less sporty smartwatch Then there s my thinking You re probably better off stepping down to a model that s nearly as capable on the fitness front but that doesn t pretend as hard to be a proper smartwatch For those people there s another mid range model in Garmin s Forerunner line that s cheaper and serves many of the same people who will be looking at the The Forerunner offers many of the same training features It also mostly matches the on pool swimming but you do appear to lose a bunch of cycling features so you might want to pore over this comparison chart before buying if you re a multisport athlete What you give is Garmin Pay the option of all day blood oxygen tracking the sleep score a gyroscope and barometric altimeter floors climbed heat and altitude acclimation yoga and pilates workouts training load focus the Trendline feature round trip course creation Garmin and Strava live segments and lactate threshold tracking and for this you would need an additional accessory amway At the opposite end of the spectrum for people who actually wish the could do more there s the Forerunner LTE which true to its name adds built in LTE connectivity This model also holds songs up from on the and adds niceties like preloaded maps and a host of golfing features if golf is also your jam The best for most people Garmin Forerunner SPros Accurate distance tracking long battery life heart rate monitoring and interval training at a reasonable price lightweight design offered in a variety of colors smartphone notifications feel limited but could be better than nothing Cons Garmin s auto pause feature feels slower than Apple s I purposefully tested the expensive Garmin Forerunner first so that I could start off with an understanding of the brand s more advanced tech Testing the Forerunner S then was an exercise in subtraction If I pared down the feature set would I miss the bells and whistles And would other runners It turns out mostly not As an entry level watch the S offers everything beginners and even some intermediate runners could want including distance tracking basic fitness tracking steps calories heart rate monitoring and a blood oxygen test Also as much as the S is aimed at new runners you ll also find modes for indoor and outdoor cycling elliptical machines stair climbers and yoga Coming from the I was especially pleased to see that many of Garmin s best training tools and recovery features carry down even to the base level model That includes training status training load training effect Garmin Coach Body Battery stress tracking a race time predictor and running dynamics analysis again an additional accessory is required Like other Garmin watches you can enable incident detection with the caveat that you ll need your smartphone nearby for it to work It even functions as a perfunctory smartwatch with smartphone notifications music playback controls calendar and weather widgets and a duo of “find my phone and “find my watch features Although I ve criticized Garmin s smartwatch features in the past for feeling like half baked add ons I was still pleasantly surprised to find them on what s marketed as a running watch for novices As for the hardware the watch feels lightweight at grams for the mm model g for the mm It s available in five colors slightly more than Garmin s more serious models The inch touchscreen was easy to glance at mid workout even in direct sunlight The battery which is rated for seven days or hours in GPS mode does not need to be charged every day In fact if it really is beginners using this their short trail runs should barely put a dent in the overall capacity As with the Forerunner my complaint is never with the impressive battery life just the fact that you have to use a proprietary charging cable And while this watch wasn t made for competitive swimmers you can use it in the pool without breaking it The ATM water resistance rating means it can survive the equivalent of meters of water pressure which surely includes showering and shallow water activities For what it s worth there is a slightly more expensive model the Garmin Forerunner which adds respiration rate menstrual tracking an updated recovery time advisor and pacing strategies The best under Amazfit Bip SPros Lightweight design long battery life accurate GPS tracking built in heart rate monitor water resistant basic smartwatch features Cons Crude user interface limited support for third party apps can t customize how workout stats are displayed on the screen pausing workouts feels labored which is a shame because you ll be doing it often I kept my expectations low when I began testing the Bip S This watch comes from Amazfit a lesser known brand here in the US that seems to specialize in lower priced gadgets Although I didn t know much about Amazfit or its parent company Huami I was intrigued by the specs it offered at this price most notably a built in heart monitor ーnot something you typically see in a device this cheap As you might expect a device this inexpensive has some trade offs and I ll get to those in a minute But there s actually a lot to like The watch itself is lightweight and water resistant with a low power color display that s easy to read in direct sunlight That low power design also means the battery lasts a long time ーup to hours on a charge Perhaps most importantly it excels in the area that matters most as a sports watch In my testing the built in GPS allowed for accurate distance and pace tracking If you re not a runner or you just prefer a multi sport life the watch features nine other modes covering most common activities including walking yoga cycling pool and open water swimming and free weights And did I mention the heart rate monitor These readings are also seemingly accurate What you lose by settling for a watch this cheap is mainly the sort of polished user experience you d get with a device from a tier one company like Apple or even Garmin not that Garmin s app has ever been my favorite either In my review I noticed various goofs including odd grammar and punctuation choices and a confusingly laid out app I was also bummed to learn you could barely export your data to any third party apps other than Strava and Apple Health You also can t customize the way data is displayed on screen during a workout while your goals don t auto adjust the way they might on other platforms Fortunately at least these are all issues that can be addressed after the fact via software updates ーhopefully sooner rather than later This article originally appeared on Engadget at 2023-05-15 16:16:57
海外TECH Engadget The EU approves Microsoft's $68.7 billion Activision Blizzard takeover https://www.engadget.com/the-eu-approves-microsofts-687-billion-activision-blizzard-takeover-160319415.html?src=rss The EU approves Microsoft x s billion Activision Blizzard takeoverMicrosoft has overcome a significant hurdle in its attempt to buy Activision Blizzard for billion As expected the European Union has rubberstamped the acquisition The European Commission the EU s executive arm said Microsoft will have to ensure full compliance with the commitments it has made to offer its games on other platforms particularly cloud gaming services Activision does not yet offer its titles on cloud gaming services EC regulators determined that the game streaming market is relatively small as things stand and having Activision games available on cloud platforms could help it to grow Were Microsoft to offer Activision games exclusively on its own cloud service that could have impaired competition the EU said nbsp Microsoft has signed year deals with Nintendo and cloud gaming services such as NVIDIA GeForce Now and Boosteroid to make its own games and Activision s available on them As such regulators said Microsoft s commitments quot fully address the competition concerns identified by the Commission and represent a significant improvement for cloud gaming as compared to the current situation quot nbsp quot Video games attract billions of users all over the world In such a fast growing and dynamic industry it is crucial to protect competition and innovation Our decision represents an important step in this direction by bringing Activision s popular games to many more devices and consumers than before thanks to cloud game streaming quot the EC s competition chief Margrethe Vestager said quot The commitments offered by Microsoft will enable for the first time the streaming of such games in any cloud game streaming services enhancing competition and opportunities for growth quot The European Commission has required Microsoft to license popular Activision Blizzard games automatically to competing cloud gaming services This will apply globally and will empower millions of consumers worldwide to play these games on any device they choose ーBrad Smith BradSmi May quot The EC conducted an extremely thorough deliberate process to gain a comprehensive understanding of gaming As a result they approved our merger with Microsoft although they required stringent remedies to ensure robust competition in our rapidly growing industry quot Activision CEO Bobby Kotick said in a statement quot We intend to meaningfully expand our investment and workforce throughout the EU and we re excited for the benefits our transaction brings to players in Europe and around the world quot The UK s Competition and Markets Authority CMA blocked the Activision acquisition last month over concerns that it would give Microsoft too much of a dominant position in the cloud gaming market though it does not believe the takeover would pose a threat to competition in the console ecosystem Microsoft is appealing the CMA s decision That process is likely to take months to resolve In response to the EU s decision the CMA stood by its claim that Microsoft would still have too much power in the cloud gaming space quot Microsoft s proposals accepted by the European Commission today would allow Microsoft to set the terms and conditions for this market for the next years quot the CMA wrote on Twitter quot They would replace a free open and competitive market with one subject to ongoing regulation of the games Microsoft sells the platforms to which it sells them and the conditions of sale quot Microsoft s proposals accepted by the European Commission today would allow Microsoft to set the terms and conditions for this market for the next years ーCompetition amp Markets Authority CMAgovUK May On the console side of the equation the EU has determined that quot Microsoft would have no incentive to refuse to distribute Activision s games to Sony quot It noted that Sony is the world s biggest distributor of console games and that in the European Economic Area EEA there are four PlayStations for every Xbox sold The EC suggests that would give Microsoft quot strong incentives quot to keep offering Activision games on PlayStation Even so were Microsoft to pull Activision titles from Sony platforms quot this would not significantly harm competition in the consoles market quot according to the EU quot Even if Call of Duty is largely played on console it is less popular in the EEA than in other regions of the world and is less popular in the EEA within its genre compared to other markets quot the bloc said quot Therefore even without being able to offer this specific game Sony could leverage its size extensive games catalog and market position to fend off any attempt to weaken its competitive position quot Much of the discourse related to the acquisition has centered on Call of Duty and how eager Sony was to stop Microsoft from making that series exclusive to its platforms something Microsoft says doesn t make sense for it to do Call of Duty games are said to contribute hundreds of millions of dollars to Sony s bottom line every year but cloud gaming has been the bigger sticking point for UK and EU regulators In December the US Federal Trade Commission sued to block the deal over concerns it quot would enable Microsoft to suppress competitors to its Xbox gaming consoles and its rapidly growing subscription content and cloud gaming business quot A hearing in that case is scheduled for August nd Although Microsoft and Activision Blizzard face a tough battle to push the deal through in the UK and the US the EU approval gives the companies some more momentum This article originally appeared on Engadget at 2023-05-15 16:03:19
海外科学 NYT > Science Mutation Protected Man From Alzheimer’s Disease, Hinting at Treatment https://www.nytimes.com/2023/05/15/health/alzheimers-mutation-gene.html Mutation Protected Man From Alzheimer s Disease Hinting at TreatmentA man in his early s showed physical signs of the illness but didn t develop symptoms until he was nearly because of a protective gene 2023-05-15 16:54:48
金融 金融庁ホームページ スチュワードシップ・コード及びコーポレートガバナンス・コードのフォローアップ会議(第28回)議事録を公表しました。 https://www.fsa.go.jp/singi/follow-up/gijiroku/20230419.html 回議 2023-05-15 17:00:00
金融 金融庁ホームページ 「気候変動リスク・機会の評価等に向けたシナリオ・データ関係機関懇談会」(第4回)議事次第を公表しました。 https://www.fsa.go.jp/singi/scenario_data/siryou/20230405.html 気候変動 2023-05-15 17:00:00
金融 金融庁ホームページ 「気候変動リスク・機会の評価等に向けたシナリオ・データ関係機関懇談会」(第4回)議事要旨を公表しました。 https://www.fsa.go.jp/singi/scenario_data/gijiyousi/20230405.html 気候変動 2023-05-15 17:00:00
金融 金融庁ホームページ 「気候変動リスク・機会の評価等に向けたシナリオ・データ関係機関懇談会」(第5回)の開催を公表しました。 https://www.fsa.go.jp/news/r4/singi/20230517.html 気候変動 2023-05-15 17:00:00
ニュース BBC News - Home Zelensky meets PM as more Ukraine weapons pledged https://www.bbc.co.uk/news/uk-65594540?at_medium=RSS&at_campaign=KARANGA ukrainian 2023-05-15 16:45:56
ニュース BBC News - Home Local elections 2023: Voter ID backfired on Tories, says Rees-Mogg https://www.bbc.co.uk/news/uk-politics-65599380?at_medium=RSS&at_campaign=KARANGA chances 2023-05-15 16:06:24
ニュース BBC News - Home Wayne Couzens: Met PC missed chance to investigate, hearing told https://www.bbc.co.uk/news/uk-england-london-65601096?at_medium=RSS&at_campaign=KARANGA couzens 2023-05-15 16:37:25
ニュース BBC News - Home Rugby League World Cup: France pulls out of hosting tournament in 2025 https://www.bbc.co.uk/sport/rugby-league/65601619?at_medium=RSS&at_campaign=KARANGA financial 2023-05-15 16:05:36
Azure Azure の更新情報 Public preview: Azure Container Storage https://azure.microsoft.com/ja-jp/updates/public-preview-azure-container-storage/ Public preview Azure Container StorageAzure Container Storage is a new Azure service built natively for containers that enables customers to create and manage volumes for running production scale stateful container applications 2023-05-15 17:00:06

コメント

このブログの人気の投稿

投稿時間: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件)