投稿時間:2023-04-28 04:36:01 RSSフィード2023-04-28 04:00 分まとめ(46件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Compute Blog Best Practices for managing data residency in AWS Local Zones using landing zone controls https://aws.amazon.com/blogs/compute/best-practices-for-managing-data-residency-in-aws-local-zones-using-landing-zone-controls/ Best Practices for managing data residency in AWS Local Zones using landing zone controlsThis blog post is written by Abeer Naffa Sr Solutions Architect Solutions Builder AWS David Filiatrault Principal Security Consultant and Jared Thompson Hybrid Edge SA Specialist In this post we discuss how you can leverage AWS Control Tower landing zone and AWS Organizations custom policies guardrails at the root level known as Service … 2023-04-27 18:44:51
AWS AWS Database Blog Optimize costs by scheduling provisioned capacity for Amazon DynamoDB https://aws.amazon.com/blogs/database/optimize-costs-by-scheduling-provisioned-capacity-for-amazon-dynamodb/ Optimize costs by scheduling provisioned capacity for Amazon DynamoDBAmazon DynamoDB is a fully managed serverless key value NoSQL database designed to run high performance applications at any scale DynamoDB charges for reading writing and storage of your DynamoDB tables along with any optional features you choose to enable When you create a DynamoDB table you choose from two capacity modes that have different billing options … 2023-04-27 18:49:41
AWS AWS Database Blog Deploy schema changes in an Amazon Aurora MySQL database with minimal downtime https://aws.amazon.com/blogs/database/deploy-schema-changes-in-an-amazon-aurora-mysql-database-with-minimal-downtime/ Deploy schema changes in an Amazon Aurora MySQL database with minimal downtimeModifying the schema of a SQL database can be time consuming resource intensive and error prone It can also require long periods of downtime that negatively affects the end user experience In this post I walk you through performing schema changes using Instant DDL and Amazon Relational Database Service Amazon RDS Blue Green Deployments for Amazon Aurora MySQL Compatible Edition with … 2023-04-27 18:41:52
AWS lambdaタグが付けられた新着投稿 - Qiita New Relic Lambda LayerでNode.js 18を計測する https://qiita.com/devlynden/items/542c4a37f71273bfcda0 lambdal 2023-04-28 03:09:23
python Pythonタグが付けられた新着投稿 - Qiita クソ記事チェッカー https://qiita.com/watanabe-tsubasa/items/6904aa771276c554645e qiita 2023-04-28 03:46:14
Azure Azureタグが付けられた新着投稿 - Qiita Azure Cognitive ServicesのCustom Visionを使って、カスタムオブジェクト検出モデルを作成して画像識別をしてみた https://qiita.com/hirarin-142131/items/1755412afd3e244c813b azure 2023-04-28 03:03:29
海外TECH MakeUseOf What Are HD-2D Games and Why Are They So Popular? https://www.makeuseof.com/what-are-hd-2d-games/ games 2023-04-27 18:30:17
海外TECH MakeUseOf No, You Don't Need Microsoft Windows Subsystem for Linux (WSL), and Here's Why https://www.makeuseof.com/dont-need-microsoft-windows-subsystem-for-linux/ handy 2023-04-27 18:15:16
海外TECH MakeUseOf How to Create Animations and Transitions in Vue.js https://www.makeuseof.com/creating-animations-and-transitions-in-vuejs/ animations 2023-04-27 18:01:16
海外TECH DEV Community Getting started with Apache AgeDB: A Beginner's Guide https://dev.to/abdulsamad4068/getting-started-with-apache-agedb-a-beginners-guide-35fl Getting started with Apache AgeDB A Beginner x s GuideIf you re looking to work with complex highly interconnected data then Apache AgeDB may be just what you need This open source graph database is designed to handle data with complex relationships making it ideal for use cases such as social networks recommendation engines and fraud detection systems In this blog we ll walk you through the process of getting started with Apache AgeDB from installation to running your first queries Step Installing Apache AgeDBThe first step to getting started with Apache AgeDB is to install it Apache AgeDB is built as an extension to PostgreSQL so you ll need to have PostgreSQL installed on your system first If you don t have PostgreSQL installed you can download it from the official PostgreSQL website Once you have PostgreSQL installed you can install Apache AgeDB by following these steps Download the latest version of Apache AgeDB from the official Apache AgeDB website Extract the downloaded archive to a directory of your choice Run the following command to install Apache AgeDB make install Finally restart PostgreSQL to load the newly installed extension Step Creating a databaseWith Apache AgeDB installed the next step is to create a database To create a new database in PostgreSQL you can use the createdb command For example to create a database named mydatabase you can run the following command createdb mydatabase Once you have created a database you can create a graph in Apache AgeDB by running the following SQL command CREATE GRAPH mygraph This will create a new graph named mygraph in your database Step Creating nodes and edgesNow that you have a graph you can start adding nodes and edges to it To add a node to a graph you can use the following SQL command INSERT INTO mygraph vertices VALUES Alice This will create a new node with an ID of and a label of Alice in the graph To add an edge between two nodes you can use the following SQL command INSERT INTO mygraph edges VALUES knows This will create a new edge with a label of knows between the nodes with IDs and Step Running queriesNow that you have some data in your graph you can start running queries to retrieve and manipulate it Apache AgeDB uses the Cypher query language which is designed specifically for graph databases Here s an example of a simple Cypher query that retrieves all nodes in the graph MATCH n RETURN n This query will return a list of all nodes in the graph along with their properties ConclusionGetting started with Apache AgeDB may seem daunting at first but with these basic steps you should be able to get up and running in no time From here you can start exploring more advanced features of Apache AgeDB such as indexing and traversal queries and begin to unlock the full potential of your graph data 2023-04-27 18:39:53
海外TECH DEV Community [Nestia] Boost up your NestJS server much faster and easier (maximum 20,000x faster) https://dev.to/samchon/nestia-boost-up-your-nestjs-server-much-faster-and-easier-maximum-20000x-faster-59o5 Nestia Boost up your NestJS server much faster and easier maximum x faster PrefaceAs I ve promised in the previous Typia Series Articles dev to I ll introduce you my new library nestia which can make NestJS much faster and easier With my new library nestia you can boost up your NestJS server performance dramatically just by writing only one line per each API function Also you can build SDK library therefore you can help your fellow client developers to be much convenient Let s see nestia and imagine how much your NestJS server would be powerful Only one line required with pure TypeScript typeRuntime validator is x faster than class validatorJSON serialization is x faster than class transformerSDK is similar with tRPC but much advancedLeft is NestJS server code and right is client code utilizing SDK You can write client code much easily and safely Pure TypeScript TypeIn NestJS you have to define DTO by utilizing those libraries class validatorclass transformer nestjs swaggerI have those libraries because they force developer to define duplicated types like below As long as you are using them following formal guide of NestJS you never can avoid to define duplicated type definitions in both TypeScript type and decorators Let s see how those libraries force developer to define ugly and duplicated DTO export class BbsArticle IsString ApiProperty format uuid id string DUPLICATED SCHEMA DEFINITION duplicated function call property type have to specify isArray and nullable props by yourself IsArray IsObject ValidateNested Type gt AttachmentFile ApiProperty type gt AttachmentFile nullable true isArray true description List of attached files files AttachmentFile null IsString IsOptional ApiProperty type string nullable true minLength maxLength description Title of the article title string null IsString ApiProperty description Main content body of the article body string IsString ApiProperty format date time description Creation time of article created at string export class AttachmentFile IsString IsOptional ApiProperty type string nullable true maxLength pattern a zA Z description File name name string null IsString IsOptional ApiProperty type string nullable true maxLength pattern a zA Z description File extension extension string null IsString ApiProperty format url description URL of the file url string However with nestia you can define DTO with pure TypeScript type only Even interface type is allowed therefore you don t need to be suffered from duplicated type definitions Let s see how nestia changes DTO so much easier and beautiful export interface IBbsArticle Primary Key format uuid id string List of attached files files IAttachmentFile null Title of the article minLength maxLength title string null Main content body of the article body string Creation time of article format date time created at string export interface IAttachmentFile File name pattern a z maxLength name string null File extension pattern a z maxLength extension string null URL of the file format uri url string Superfast ValidationIf you have seen my previous Typia Series Articles dev to reading above Pure TypeScript Type section you may suspect that nestia is using typia Yes nestia is utilizing typia and it is the secret why nestia can use pure TypeScript type as DTO Also as nestia is using typia it can provide superfast validation Do you remember Validation speed of typia was maximum x faster than class validator what NestJS is using Such super fast validation speed also can be applied to your NestJS server just by using nestia Now change your class validator based DTO classes to pure TypeScript type and utilize TypedBody function like below Then your NestJS server s validation speed about request body data would be x times faster It seems very easy and wonderful isn t it import TypedBody TypedRoute from nestia core import Controller from nestjs common import IBbsArticle from IBbsArticle Controller bbs articles export class BbsArticlesController TypedRoute Post public async store x faster validation TypedBody input IBbsArticle IStore Promise lt IBbsArticle gt return input id bed e bde deefd created at T Z Measured on Intel i g Surface Pro Superfast Serializationnestia is using typia Therefore in the same reason with Superfast Validation JSON serialization speed also can be x faster than class transformer what NestJS is using Just use TypedRoute method function on your API function Then your NestJS server s JSON serialization speed about response body data would be x times faster If you re wondering how JSON serialization speed in the server side look at the server benchmark graph of below Just by adapting nestia and utilizing its TypedRoute method function your NestJS server can accept maximum x more requests Most operations in NodeJS server are asynchronously executed in background thread what are called event based non blocking I O model However JSON serialization is a synchronous operation running on the main thread Therefore if the JSON serialization speed is slow it makes the entire server program slow It seems very easy and wonderful isn t it import TypedRoute from nestia core import Controller from nestjs common import IBbsArticle from IBbsArticle Controller bbs articles export class BbsArticlesController x faster JSON serialization TypedRoute Get random public async random Promise lt IBbsArticle gt return id bed e bde deefd title Hello nestia users body Just use TypedRoute Get function like this created at T Z files Measured on Intel i g Surface Pro Measured on Intel i g Surface Pro SDK generationDo you know tRPC If you develop your NodeJS backend server with it you don t need to deliver any Swagger Documents to your fellow client developers You just can send an interaction library for them However the tRPC is good for building toy projects but not suitable for developing enterprise level backend server In such reason many NestJS lovers had requested tRPC team to support NestJS But considering principle of tRPC it never can support NestJS Instead I support SDK generation for NestJS through my new library nestia Just run npx nestia sdk command then nestia will analyze your NestJS backend server code and generates optimal SDK library in the compilation level Look at below gif image and imagine how SDK would be helpful for your fellow client developers Your fellow client developers will just import the SDK library and call API functions with auto completion If they take any mistake compiler will detect it therefore you don t need to be suffered from runtime error by mistakes Left is NestJS server code and right is client code utilizing SDK You can write client code much easily and safely 2023-04-27 18:39:11
海外TECH DEV Community Creating a Scrolling Animation for Apple AirPods https://dev.to/bekbrace/creating-a-scrolling-animation-for-apple-airpods-1g0m Creating a Scrolling Animation for Apple AirPodsHey coders This is a good one for those who have started their UI UX design journey with HTML CSS and JS So let me walk you through the process of creating a beautiful scrolling animation for Apple AirPods using HTML CSS and JavaScript video below btw This animation is a fun and engaging way to showcase Apple s iconic earbuds and it s sure to impress your audience Let s dive in Here s the video if you want to check it HTMLFirst let s start with the HTML code We have a basic HTML document structure with a title tag and two links to our CSS and JavaScript files In the body we have a canvas element with a class of airpod scrolling This canvas element will be used to display our animation CSSNext we need to style our HTML elements with CSS We set the height of the HTML and body elements to vh and vh respectively to give us enough space to scroll We set the background color of the body to black to create a sleek look Finally we position our canvas element in the center of the screen using absolute positioning and transform JavaScriptNow we come to the most exciting part of this project the JavaScript code First we declare some variables including the HTML element the canvas element and the context object of the canvas We also declare the current frame function which takes an index as an argument and returns the URL of the corresponding frame image Next we declare the frame count variable which is the total number of frames in our animation We set the height and width of the canvas element to match the size of our frames We create a new image object and set its source to the first frame in our animation We then draw this image on the canvas The updateImage function updates the image on the canvas based on the current frame index We calculate the frame index based on the user s scroll position and request an animation frame to update the canvas Finally we declare the preloadImages function which loads all the frames of our animation into the browser s cache This function is called when the page loads to ensure smooth performance during the animation Coding is Fun so keep coding keep learning and I will see you next time 2023-04-27 18:31:01
海外TECH Engadget All the big tech layoffs of 2023 https://www.engadget.com/big-tech-layoffs-183005386.html?src=rss All the big tech layoffs of The tech industry is reeling from the combination of a rough economy the COVID pandemic and some obvious business missteps And while that led to job cuts in the headcount reductions have unfortunately ramped up in It can be tough to keep track of these moves so we ve compiled all the major layoffs in one place and will continue to update this story as the situation evolves AprilDado Ruvic reutersLyft layoffsLyft laid off percent of staff in November but took further steps in April The ridesharing company said it was laying off workers or about percent of its headcount It comes just weeks after an executive shuffle that replaced CEO Logan Green with former Amazon exec David Risher who said the company needed to streamline its business and refocus on drivers and passengers Green previously said Lyft needed to boost its spending to compete with Uber Dropbox layoffsCloud storage companies aren t immune to the current financial climate In April Dropbox said it would lay off employees or roughly percent of its team Co founder Drew Houston pinned the cuts on the combination of a rough economy a maturing business and the quot urgency quot to hop on the growing interest in AI While the company is profitable its growth is slowing and some investments are quot no longer sustainable quot Houston said nbsp MarchRoku layoffsRoku shed jobs at the end of but it wasn t done The streaming platform creator laid off another employees in March As before the company argued that it needed to curb growing expenses and concentrate on those projects that would have the most impact Roku has been struggling with the one two combination of a rough economy and the end of a pandemic fueled boom in streaming video Lucid Motors layoffsIf you thought luxury EV makers would be particularly susceptible to economic turmoil you guessed correctly Lucid Motors said in March that it would lay off percent of its workforce or about people The marque is still falling short of production targets and these cuts reportedly help deal with quot evolving business needs and productivity improvements quot The cuts are across the board too and include both executives as well as contractors Meta Facebook layoffsMeta slashed jobs in fall but it wasn t finished In March the company unveiled plans to lay off another workers in a further bid to cut costs The first layoffs will affect its recruiting team but it plans to shrink its technology teams in late April and its business groups in late May The Facebook owner is hoping to streamline its operations by reducing management layers and asking some leaders to take on work previously reserved for the rank and file It may take a while before Meta s staff count grows again ーit doesn t expect to lift a hiring freeze until sometime after it completes its restructuring effort in late FebruaryRivian layoffsRivian conducted layoffs in but that wasn t enough to help the fledgling EV brand s bottom line The company laid off another six percent of its employees in February or about workers It s still fighting to achieve profitability and the production shortfall from supply chain issues hasn t helped matters CEO RJ Scaringe says the job cuts will help Rivian focus on the quot highest impact quot aspects of its business Zoom layoffsZoom was a staple of remote work culture at the pandemic s peak so it s no surprise that the company is cutting back now that people are returning to offices The video calling firm said in February it was laying off roughly employees or percent of its personnel As CEO Eric Yuan put it the company didn t hire quot sustainably quot as it dealt with its sudden success The layoffs are reportedly necessary to help survive a difficult economy The management team is offering more than just apologies too Yuan is cutting his salary by percent for the next fiscal year while all other executives are losing percent of their base salaries as well as their fiscal bonuses Yahoo layoffsEngadget s parent company Yahoo isn t immune to layoffs The internet brand said in February that it would lay off over percent of its workforce throughout or more than people Most of those cuts or about positions took place immediately CEO Jim Lanzone didn t blame the layoffs on economic conditions however He instead pitched it as a restructuring of the advertising technology unit as it shed an unprofitable business in favor of a successful one Effectively Yahoo is bowing out of direct competition in with Google and Meta in the ad market Dell layoffsThe pandemic recovery and a grim economy have hit PC makers particularly hard and Dell is feeling the pain more than most It laid off five percent of its workforce in early February or about employees after a brutal fourth quarter where computer shipments plunged an estimated percent Past cost cutting efforts weren t enough Dell said ーthe layoffs and a streamlined organization were reportedly needed to get back on track Deliveroo layoffsFood delivery services flourished while COVID kept people away from restaurants and at least some are feeling the sting now that people are willing to dine out again Deliveroo is laying off about workers or nine percent of its workforce quot Redeployments quot will bring this closer to according to founder Will Shu The justification is familiar Deliveroo hired rapidly to handle quot unprecedented quot pandemic related growth according to Shu but reportedly has to cut costs as it deals with a troublesome economy DocuSign layoffsDocuSign may be familiar to many people who ve signed documents online but that hasn t spared it from the impact of a harsh economic climate The company said in mid February that it was laying off percent of its workforce While it didn t disclose how many people that represented the company had employees at the start of Most of those losing their jobs work in DocuSign s worldwide field organization GitLab layoffsYou may not know GitLab but its DevOps development and operations platform underpins work at tech brands like NVIDIA and T Mobile ーand shrinking business at its clients is affecting its bottom line GitLab is laying off seven percent of employees or roughly people Company chief Sid Sijbrandij said the problematic economy meant customers were taking a quot more conservative approach quot to software investment and that his company s previous attempts to refocus spending weren t enough to counter these challenges GoDaddy layoffsGoDaddy conducted layoffs early in the pandemic when it cut over workers for its retail oriented Social platform In February this year however it took broader action The web service provider laid off eight percent of its workforce or more than people across all divisions Chief Aman Bhutani claimed other forms of cost cutting hadn t been enough to help the company navigate an quot uncertain quot economy and that this reflected efforts to further integrate acquisitions like Main Street Hub Twilio layoffsTwilio eliminated over jobs in September but it made deeper cuts as got started The cloud communications brand laid off percent of staff or roughly people in mid February Like so many other tech firms Twillio said that past cost reduction efforts weren t enough to endure an unforgiving environment It also rationalized the layoffs as necessary for a streamlined organization JanuaryREUTERS Peter DaSilvaGoogle Alphabet layoffsGoogle s parent company Alphabet has been cutting costs for a while including shutting down Stadia but it took those efforts one step further in late January when it said it would lay off employees CEO Sundar Pichai wasn t shy about the reasoning Alphabet had been hiring for a quot different economic reality quot and was restructuring to focus on the internet giant s most important businesses The decision hit the company s Area incubator particularly hard with the majority of the unit s workers losing their jobs Sub brands like Intrinsic robotics and Verily health also shed significant portions of their workforce in the days before the mass layoffs Waymo has conducted two rounds of layoffs that shed people or eight percent of its force Amazon layoffsAmazon had already outlined layoff plans last fall but expanded those cuts in early January when it said it would eliminate jobs most of them coming from retail and recruiting teams It added another people to the layoffs in March and in April said over gaming employees were leaving To no one s surprise CEO Andy Jassy blamed both an quot uncertain economy quot and rapid hiring in recent years Amazon benefited tremendously from the pandemic as people shifted to online shopping but its growth is slowing as people return to in person stores Coinbase layoffsCoinbase was one of the larger companies impacted by the crypto market s downturn and that carried over into the new year The cryptocurrency exchange laid off people in mid January just months after it slashed roles This is one of the steepest proportionate cuts among larger tech brands ーCoinbase offloaded about a fifth of its staff Chief Brian Armstrong said his outfit needed the layoffs to shrink operating expenses and survive what he previously described as a quot crypto winter quot but that also meant canceling some projects that were less likely to succeed IBM layoffsLayoffs sometimes stem more from corporate strategy shifts than financial hardship and IBM provided a classic example of this in The computing pioneer axed jobs in late January after offloading both its AI driven Watson Health business and its infrastructure management division now Kyndryl in the fall Simply put those employees had nothing to work on as IBM pivoted toward cloud computing Microsoft layoffsMicrosoft started its second largest wave of layoffs in company history when it signaled it would cut jobs between mid January and the end of March Like many other tech heavyweights it was trimming costs as customers scaled back their spending particularly on Windows and devices during the pandemic recovery The reductions were especially painful for some divisions ーthey reportedly gutted the HoloLens and mixed reality teams while Industries is believed to be rebooting Halo development after losing dozens of workers GitHub is cutting percent of its team or roughly people PayPal layoffsPayPal has been one of the healthier large tech companies having beaten expectations in its third quarter last year Still it hasn t been immune to a tough economy The online payment firm unveiled plans at the end of January to lay off employees or seven percent of its total worker base CEO Dan Schulman claimed the downsizing would keep costs in check and help PayPal focus on quot core strategic priorities quot Salesforce layoffsSalesforce set the tone for when it warned it would lay off employees or about percent of its workforce just four days into the new year While the cloud software brand thrived during the pandemic with rapidly growing revenue it admitted that it hired too aggressively during the boom and couldn t maintain that staffing level while the economy was in decline SAP layoffsBusiness software powerhouse SAP saw a steep percent drop in profit at the end of and it started by laying off staff to keep its business healthy Unlike some big names in tech though SAP didn t blame excessive pandemic era hiring for the cutback Instead it characterized the initiative as a quot targeted restructuring quot for a company that still expected accelerating growth in Spotify layoffsSpotify spent aggressively in recent years as it expanded its podcast empire but it quickly put a stop to that practice as began The streaming music service said in late January that it would lay off percent of its workforce people worked at Spotify as of the third quarter alongside a restructuring effort that included the departure of content chief Dawn Ostroff While there were more Premium subscribers than ever in the company also suffered steep losses ーCEO Daniel Ek said he was quot too ambitious quot investing before the revenue existed to support it Wayfair layoffsAmazon isn t the only major online retailer scaling back in Wayfair said in late January that it would lay off team members or percent of its global headcount About of those were corporate staff cut in a bid to quot eliminate management layers quot and otherwise help the company become leaner and nimbler Wayfair had been cutting costs since August including positions but saw the layoffs as helping it reach break even earnings sooner than expected This article originally appeared on Engadget at 2023-04-27 18:31:34
海外TECH Engadget Teenage Engineering enters the microphone space with the gorgeous CM-15 https://www.engadget.com/teenage-engineering-enters-the-microphone-space-with-the-gorgeous-cm-15-181721397.html?src=rss Teenage Engineering enters the microphone space with the gorgeous CM Boutique music gadget manufacturer Teenage Engineering is back with a new product and it s a whole lot more interesting than a desk The CM is a legitimate portable condenser microphone built for studio use and remote setups The company describes it as the world s “first all in mic offering as it features multiple connection and power options You can power this thing via traditional phantom power by plugging it into any suitable mixer or audio interface There is also a built in battery that gets ten hours of use per charge Don t have access to any of that Just plug it into any USB C port to get some juice That s pretty convenient As for connections there is a mm line output a mini XLR and the aforementioned USB C port The microphone includes a built in preamp so you can go straight into a computer phone or another Teenage Engineering device like the similarly impressive and expensive OP Field Just like the recently released TX mixer the CM is tiny but still manages to find room for some audio wizardry It contains a true inch large diaphragm capsule which is a rarity in portable recording gear The microphone also features ESS Sabre analog to digital conversion which TE says helps the mic “preserve high fidelity sound and capture exceptional detail in any recording situation There s a gain switch on the back to match the audio source and the mm line out can plug right into a video camera for synced audio visual content The machined metal build looks durable and adds to the overall aesthetic appeal of the microphone It ships with various adapters for universal compatibility with mic stands and features a built in tilting mechanism for precise placement There s a mini tripod available for the mic but it costs an extra Now onto the price This is a Teenage Engineering product through and through so get ready to fork over to bring this little beast home For a complete TE setup that includes the CM a TX mixer and an OP Field synthesizer that cost skyrockets to The microphone starts shipping in June This article originally appeared on Engadget at 2023-04-27 18:17:21
海外TECH Engadget 'Forza Motorsport' will feature audio cues to help players with visual impairments drive https://www.engadget.com/forza-motorsport-will-feature-audio-cues-to-help-players-with-visual-impairments-drive-180043633.html?src=rss x Forza Motorsport x will feature audio cues to help players with visual impairments driveForza Motorsport nbsp developer Turn Studios has previewed some of the game s accessibility features First and foremost the studio is hoping to make it easier for blind and low vision players to enjoy the racing sim with the help of audio cues Turn spent two years building Blind Driving Assists with the help of accessibility consultant Brandon Cole who is blind and other blind and low vision players The feature offers supplemental audio cues to help players navigate They ll receive audible information on things like track position and orientation and their approach and progress during turns Players will also learn details about the car including the level of deceleration needed and when to shift gears if they re using manual transmission In a video that shows off the feature and details its development Cole notes that the steering guide option pans the engine noise and tire sounds to the left or right depending on the direction players should turn Beeping sounds will tell players when they re nearing the edge of the track Cole says that with the help of the cues he was able to win a race against a bunch of AI driven cars Blind and low vision players can preview the audio cues in the accessibility menu They ll hear in depth descriptions of what each cue means thanks to the inclusion of a customizable screen narrator Players can individually switch each set of cues on and off and they ll be able to tweak the pitch and volume of them Although it will likely take a while for players to get used to the cues they could be immensely useful for blind and low vision folks who want to play Forza Motorsport Along with more common accessibility features such as full controller remapping colorblindness filters and customizable subtitles there s another called One Touch Driving This enables players to customize braking steering and throttle assists to minimize the number of simultaneous inputs needed They can enable as many of the assists as they like Turn worked with players who have mobility and stamina disabilities to create One Touch Driving which is intended for those who may find it difficult to hold down buttons or press several buttons at the same time Forza Motorsport is slated to arrive later this year It will be available on Xbox Series X S Xbox Cloud Gaming and PC via the Microsoft Store and Steam This article originally appeared on Engadget at 2023-04-27 18:00:43
Cisco Cisco Blog Supporting the Sustainability Journey for the Transportation Industry https://feedpress.me/link/23532/16094903/supporting-the-sustainability-journey-for-the-transportation-industry Supporting the Sustainability Journey for the Transportation IndustrySustainable transportation can play a key role in the transition to a low carbon economy Forward thinking transportation organizations are analyzing their impact accelerating technologies that support electrification autonomous vehicles and mobility as a service and setting GHG emissions reduction goals Cisco has a purpose to Power an Inclusive Future for All We can assist the transportation industry with solutions that support their sustainability journey and goals 2023-04-27 18:15:26
海外科学 NYT > Science What Can You Do With a Menagerie of Mammal Genomes? https://www.nytimes.com/2023/04/27/science/genetics-dna-mammals.html What Can You Do With a Menagerie of Mammal Genomes DNA from monkeys bats whales and many other mammals is helping scientists tackle big questions about physiology evolution and one very famous sled dog 2023-04-27 18:51:54
ニュース BBC News - Home Jerry Springer: Era-defining TV host dies aged 79 https://www.bbc.co.uk/news/entertainment-arts-65415348?at_medium=RSS&at_campaign=KARANGA audience 2023-04-27 18:01:23
ニュース BBC News - Home Marelle Sturrock: Man's body found after murder of pregnant teacher https://www.bbc.co.uk/news/uk-scotland-glasgow-west-65416819?at_medium=RSS&at_campaign=KARANGA marelle 2023-04-27 18:47:40
ニュース BBC News - Home Rail strike on 13 May, day of Eurovision final https://www.bbc.co.uk/news/uk-65407844?at_medium=RSS&at_campaign=KARANGA action 2023-04-27 18:31:29
ニュース BBC News - Home Hugh Grant accuses Sun publisher of 'deliberate false denials' https://www.bbc.co.uk/news/uk-65418723?at_medium=RSS&at_campaign=KARANGA investigators 2023-04-27 18:31:59
ニュース BBC News - Home Women's Champions League: Barcelona 1-1 Chelsea (agg 2-1) - Blues out despite Nou Camp draw https://www.bbc.co.uk/sport/football/65403659?at_medium=RSS&at_campaign=KARANGA Women x s Champions League Barcelona Chelsea agg Blues out despite Nou Camp drawChelsea are knocked out of the Women s Champions League by Barcelona despite an impressive draw at the Nou Camp in the semi final second leg 2023-04-27 18:41:11
ビジネス ダイヤモンド・オンライン - 新着記事 社会人なら絶対覚えておきたい!「ビュッフェ・立食パーティーのマナー」6選 - ニュースな本 https://diamond.jp/articles/-/321095 絶対 2023-04-28 03:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 あきらめが早い、やる気が出ない自分を変える、メンタル改善の近道とは? - できる人は必ず知っている一流の自分の魅せ方 https://diamond.jp/articles/-/321857 あきらめが早い、やる気が出ない自分を変える、メンタル改善の近道とはできる人は必ず知っている一流の自分の魅せ方これまで自分の「弱み」だと思っていた性格・気質を「強み」に変えることで、驚くほど印象が変わり、信頼も好感度も一気にアップする。 2023-04-28 03:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 米メタ、FB時代の輝きまであと一歩 - WSJ PickUp https://diamond.jp/articles/-/322290 wsjpickup 2023-04-28 03:47:00
ビジネス ダイヤモンド・オンライン - 新着記事 アスリート盗撮の卑劣、女子選手のお尻を望遠カメラで…撮影罪の対象になる? - 弁護士ドットコム発 https://diamond.jp/articles/-/322213 弁護士ドットコム 2023-04-28 03:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 銀行危機「氷山の一角」か、債務膨張の危うさ - WSJ PickUp https://diamond.jp/articles/-/322289 wsjpickup 2023-04-28 03:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 【世界史で学ぶ英単語】コロンブスに先駆けること数十年、Zheng Heは300隻の巨大船団で中国からアフリカに航海した - TOEFLテスト、IELTSの頻出単語を世界史で学ぶ https://diamond.jp/articles/-/321570 ielts 2023-04-28 03:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 「仕事に行きづまっていた人」がいきなり収入を3倍に増やした“意外な方法” - 佐久間宣行のずるい仕事術 https://diamond.jp/articles/-/321468 「仕事に行きづまっていた人」がいきなり収入を倍に増やした“意外な方法佐久間宣行のずるい仕事術「読者が選ぶビジネス書グランプリ」で、『佐久間宣行のずるい仕事術』が総合グランプリとビジネス実務部門賞をダブル受賞。 2023-04-28 03:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 「管理職にしたら絶対NGな人」を見抜く“たった1つの方法” - 「人の上に立つ」ために本当に大切なこと https://diamond.jp/articles/-/321541 大切なこと 2023-04-28 03:33:00
ビジネス ダイヤモンド・オンライン - 新着記事 「仕事ができない人」に共通する“学生レベルの思考”とは? - 数値化の鬼 https://diamond.jp/articles/-/321986 安藤広大 2023-04-28 03:31:00
ビジネス ダイヤモンド・オンライン - 新着記事 【成長株の見つけ方】消費者の感覚に加えて必要な、もう1つの視点とは? - 株の投資大全 https://diamond.jp/articles/-/320684 そんな方に参考になる書籍『株の投資大全ー成長株をどう見極め、いつ買ったらいいのか』小泉秀希著、ひふみ株式戦略部監修が月日に発刊された。 2023-04-28 03:29:00
ビジネス ダイヤモンド・オンライン - 新着記事 伸び悩む新人社員と成長できる新人社員のたった1つの違いとは - 1秒で答えをつくる力 お笑い芸人が学ぶ「切り返し」のプロになる48の技術 https://diamond.jp/articles/-/322144 2023-04-28 03:27:00
ビジネス ダイヤモンド・オンライン - 新着記事 明治? 立教? GMARCHの雰囲気はどう違う?【各大学紹介付き】 - 大学図鑑!2024 有名大学82校のすべてがわかる! https://diamond.jp/articles/-/322124 2023-04-28 03:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 「できるだけ関わってはいけない人」のたった1つの特徴 - 99%はバイアス https://diamond.jp/articles/-/321332 突破 2023-04-28 03:23:00
ビジネス ダイヤモンド・オンライン - 新着記事 【精神科医が教える】 心に余裕がなくなったとき…“幸せの神様”を自分に引き寄せる方法 - 精神科医Tomyが教える 40代を後悔せず生きる言葉 https://diamond.jp/articles/-/321789 【精神科医が教える】心に余裕がなくなったとき…“幸せの神様を自分に引き寄せる方法精神科医Tomyが教える代を後悔せず生きる言葉【大好評シリーズ万部突破】誰しも悩みや不安は尽きない。 2023-04-28 03:21:00
ビジネス ダイヤモンド・オンライン - 新着記事 仕事の壁にぶつかったとき、三流は「逃げる」、二流は「乗り越える」、では一流は? - 時間最短化、成果最大化の法則 https://diamond.jp/articles/-/320757 仕事の壁にぶつかったとき、三流は「逃げる」、二流は「乗り越える」、では一流は時間最短化、成果最大化の法則シリーズ万部突破「食べチョク」秋元里奈代表が「年に読んだオススメ本選」で『時間最短化、成果最大化の法則』を大絶賛秋元代表が話題のベストセラーを徹底解剖終電ギリギリまで残業しているのに仕事が終わらない人と、必ず定時で帰るのに成績Noの人。 2023-04-28 03:19:00
ビジネス ダイヤモンド・オンライン - 新着記事 よく眠るためにすべき、シンプルなこと。寝室の灯り、温度、そしてもっとも重要なこととは? - シンプルで合理的な人生設計 https://diamond.jp/articles/-/321994 よく眠るためにすべき、シンプルなこと。 2023-04-28 03:17:00
ビジネス ダイヤモンド・オンライン - 新着記事 【GW直前】「メンタル」「仕事」「人間関係」「転職」すべてうまくいかない人に共通する3大特徴 - 1位思考 https://diamond.jp/articles/-/320680 twitter 2023-04-28 03:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 【コンサルが教える】意識するだけで話が「劇的に分かりやすくなる」とっておきのコツ - 頭のいい人が話す前に考えていること https://diamond.jp/articles/-/321798 本記事では、「話のわかりにくい人」と「話のわかりやすい人」の差を考えながら、話し方のコツを紹介します。 2023-04-28 03:13:00
ビジネス ダイヤモンド・オンライン - 新着記事 【大安吉日に、神様との[幸運。]1日1話】 「圧倒的に運がいい人」が欠かさない“GW直前”の習慣 - 1日1分見るだけで願いが叶う!ふくふく開運絵馬 https://diamond.jp/articles/-/320712 【大安吉日に、神様との幸運。 2023-04-28 03:11:00
ビジネス ダイヤモンド・オンライン - 新着記事 「最近面白い本を読んでます」を英語でどう言う? - 5分間英単語 https://diamond.jp/articles/-/321921 「最近面白い本を読んでます」を英語でどう言う分間英単語「たくさん勉強したのに英語を話せない……」。 2023-04-28 03:09:00
ビジネス ダイヤモンド・オンライン - 新着記事 【小児科医が教える】「おやつの食べ過ぎ」を防ぐ、超簡単な方法とは - 医師が教える 子どもの食事 50の基本 https://diamond.jp/articles/-/321928 食事 2023-04-28 03:07:00
ビジネス ダイヤモンド・オンライン - 新着記事 スピード出世する人が「入社1年目」にやっている意外なこと - 良書発見 https://diamond.jp/articles/-/320707 2023-04-28 03:05:00
ビジネス ダイヤモンド・オンライン - 新着記事 【ひとり暮らしにおすすめ!】ひき肉と豆腐だけで4種類の料理を作る! - てんきち母ちゃんの はじめての自炊 練習帖 https://diamond.jp/articles/-/321887 【ひとり暮らしにおすすめ】ひき肉と豆腐だけで種類の料理を作るてんきち母ちゃんのはじめての自炊練習帖お子さんの初めてのひとり暮らし、ご自身の転勤、単身赴任など‥‥。 2023-04-28 03:03:00
ビジネス ダイヤモンド・オンライン - 新着記事 心の中の「もやもや」の正体が分かる!「『ゼロ秒思考』のメモ書き」を使いこなすコツとは?【書籍オンライン編集部セレクション】 - 「ゼロ秒思考」のつくり方 https://diamond.jp/articles/-/321672 編集部 2023-04-28 03:01:00

コメント

このブログの人気の投稿

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