投稿時間:2023-08-04 05:24:02 RSSフィード2023-08-04 05:00 分まとめ(30件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Management Tools Blog Leveraging Infrastructure as Code for AWS Mainframe Modernization with AWS CloudFormation https://aws.amazon.com/blogs/mt/leveraging-infrastructure-as-code-for-aws-mainframe-modernization-with-aws-cloudformation/ Leveraging Infrastructure as Code for AWS Mainframe Modernization with AWS CloudFormationAWS Mainframe Modernization service supports AWS CloudFormation templates to manage environments and applications allowing customers to leverage best practices of Infrastructure as Code IaC and DevOps This post defines the architectural improvements fostered by CloudFormation for mainframe applications modernized with AWS cloud We ll then cover the benefits of IaC in specific contexts for modernized mainframe applications We ll … 2023-08-03 19:16:58
海外TECH Ars Technica Backblaze probes increased annualized failure rate for its 240,940 HDDs https://arstechnica.com/?p=1958544 backblaze 2023-08-03 19:15:43
海外TECH MakeUseOf What's Included in the Enhanced Windows 11 Settings App? https://www.makeuseof.com/windows-11-enhanced-settings-app-guide/ settings 2023-08-03 19:15:25
海外TECH MakeUseOf How to Implement a Health and Damage System in Godot https://www.makeuseof.com/health-damage-system-in-godot/ system 2023-08-03 19:00:26
海外TECH DEV Community Built a Conversational AI Chatbot Using Amazon Lex https://dev.to/subashkumar/built-a-conversational-ai-chatbot-using-amazon-lex-59p4 Built a Conversational AI Chatbot Using Amazon Lex First What is Amazon Lex Amazon Lex is a aws service that used to build conversational AI chatbot application using speech or text interface powered by the same technology that powers Amazon Alexa What you will learn here I will learn step by step to build AI chatbot using amazon lex Prerequisites Basic knowledge of amazon web service and aws free tier account Fundamentals of AI and AWS concepts Amazon lex underlying topics Intent An Intent is an action that the user wants to perform Utterance Utterance are textual representation of what a user has to type or says on order to trigger an intent Slots Slots are input data requirement to fulfil the inputs Fulfilment Fulfilment is to complete the users intent Let s start step by step to build conversational AI chatbot for order pizza Step Go to aws lex page and create chatbot for OrderPizza Step Fill the Intent details as OrderPizza Heading and Utterance as Hello Hii start Step Add a slot types First name BuiltIn PizzaType Pizza crust Appetizers Time for pizza delivery BuildIn Add more slot types as we needed Step Fill the slot type value as Thin and Thick Step Active the confirmation and type Confirmation Pizzatype pizza with Pizzacrust Appetizers Appetisers Step Active the closing response and type Thank you Name Your order was confirmed and will be delivered by DeliveryTime Step Slot prompt to add a buttons in advance options Advance Option gt slot prompts gt more prompt option gt Add card group Step Click the build and test Here is the link for Orderpizza conversational AI chatbot demo video LINK Thank you for reading and If this is more informative Share with your friend and follow me 2023-08-03 19:35:07
海外TECH DEV Community Why we should not mutate in react https://dev.to/endeavourmonk/why-we-should-not-mutate-in-react-18ej Why we should not mutate in reactIn React it is generally considered a best practice not to mutate the state variable directly Instead you should use the setState method provided by React to update the state There are several reasons why mutating the state directly is discouraged Predictable Behavior React relies on the state and props to determine when to re render components By using the setState method React can accurately track changes to state and trigger re renders when necessary If you mutate the state directly React may not detect the change and fail to update the component properly Immutability and Immutability Benefits React promotes the concept of immutable data Immutable data means that once created the data cannot be changed When you mutate the state directly you are breaking this principle and introducing potential side effects and unexpected behavior Performance Optimizations React can perform optimizations like shallow comparisons to determine if a component needs to re render Immutability helps with these optimizations as React can quickly check if the reference to the state has changed If you mutate the state directly React might assume the state has not changed and skip re rendering when it s necessary Undo Redo and Time Travel Debugging Immutability makes it easier to implement features like undo redo functionality and time travel debugging as you can keep track of previous states without worrying about mutations Functional Programming Paradigm Immutability aligns with the principles of functional programming making your code easier to reason about and less prone to bugs ExampleLet s create a simple component that will reverse the array when we click the button and display it in the UI Wrong way of reversing the array import useState from react const initialArr export default function List state variable and method to update it const arr setArr useState initialArr function to reverse the array on button click function handleClick arr reverse mutating the state directly setArr arr return lt gt lt button onClick handleClick gt Reverse lt button gt lt ul gt arr map item gt lt li key item gt item lt li gt lt ul gt lt gt Output Reason Array prototype reverse mutates the original array in place and then we are setting the state with the same array reference using setArr arr In React when the state is set with the same reference React doesn t detect the change and it won t trigger a re render Right Approach to Reverse import useState from react const initialArr export default function List state variable and method to update it const arr setArr useState initialArr function to reverse the array on button click function handleClick const newArr arr creating new array and then reversing newArr reverse setArr newArr return lt gt lt button onClick handleClick gt Reverse lt button gt lt ul gt arr map item gt lt li key item gt item lt li gt lt ul gt lt gt Output ReasonThis code will work as expected By creating a new array newArr and then reversing it using newArr reverse we ensure that the original arr state is not modified directly Instead you update the state with a new reference which will trigger a re render in React and reflect the reversed array in the UI Hope you liked the article if yes then give a like Have a Look endeavourmonk 2023-08-03 19:09:48
Apple AppleInsider - Frontpage News Kasa launches two new Matter-enabled smart light switches https://appleinsider.com/articles/23/08/03/kasa-launches-two-new-matter-enabled-smart-light-switches?utm_medium=rss Kasa launches two new Matter enabled smart light switchesKasa Smart has unveiled a pair of new smart light switches that feature Matter support and offer even more control for lighting your smart home Kasa s new KS Smart Wi Fi Light SwitchAnnounced on August the smart home company is launching the Kasa KS Smart Wi Fi Light Switch and Kasa KS Smart Wi Fi Light Dimmer Switch As is par for the course with Kasa s smart products these light switches can be controlled anywhere thanks to the Kasa App as long as the devices are connected to a GHz Wi Fi connection Read more 2023-08-03 19:50:49
海外TECH Engadget Is decentralization the future of social media? https://www.engadget.com/is-decentralization-the-future-of-social-media-194554192.html?src=rss Is decentralization the future of social media While the jury is still out on whether Meta s new Threads will be a Twitter killer the app could still upend how we think of social networks Not because of how many users it has but because of Meta s promise to integrate ActivityPub the decentralized protocol that powers Mastodon and other fediverse apps into Threads Though that functionality hasn t been built yet there are hints about it sprinkled throughout the service For now the most prominent clue is the “threads net URL at the top of each user s profile It currently links to a brief message that hints at what s coming “Soon you ll be able to follow and interact with people on other fediverse platforms like Mastodon it reads For close watchers of the fediverse ーthe collection of decentralized services that run on ActivityPub ーthose words could be the start of one of the most consequential moments for the technology While interest in the fediverse has been growing over the last year it s still not widely understood even by some who are active on places like Mastodon But Meta s entry into the space could expose a lot more people to the power and perils of decentralized social networks What even is decentralized social media For enthusiasts the rise of decentralized platforms represents an opportunity for a more open web ーa chance to tear down some of the walled gardens that have become the norm on mainstream social media platforms “It reminds me of the early heady days of the Internet when the web was happening Mike McCue a former Netscape executive and current CEO of Flipboard said “I believe that this is where the entire social media space will go Because they are open source and not controlled by a single entity ActivityPub and other protocols allow users to interact with each other s content regardless of where it originated The concept is often compared to email which also relies on foundational protocols that most people don t think much about “I can email somebody with a random com address from my edu address and it just works the servers talk to each other and the email is delivered explains Ross Schulman the Electronic Frontier Foundation s decentralization fellow Decentralized social media promises a similar experience he says “Instead of exchanging little short messages that we call emails they exchange little short messages that we call social media or images or likes or replies Right now this kind of experience is limited to Mastodon and other more niche services that make up the current fediverse That s not starting to change as larger and more mainstream platforms begin to experiment with ActivityPub Tumblr has said it plans to support ActivityPub Blogging platform Medium started its own Mastodon instance last year and now offers membership as a premium quot perk quot to paying subscribers Mozilla has also started its own Mastodon instance calling it a “long term investment in the future of social media The BBC recently announced the start of a six month experiment with Mastodon News aggregator Flipboard is even more invested The company has started its own Mastodon instance promised to adopt ActivityPub and added integrations with Bluesky another decentralized platform that uses its own protocol Why now Despite the recent surge in interest the idea of the fediverse and decentralized protocol based social media is far from new The ActivityPub protocol was officially established in but the idea of federated platforms is even older “ActivityPub is another instantiation of the basic idea of the internet …every node should be able to talk with any other node at the simplest level says Sorin Matei communications professor and associate dean at Purdue University Though Mastodon gained some notoriety in much of the fediverse remained relatively obscure ーuntil Elon Musk announced his plan to take over Twitter The acquisition represented a “tectonic shift for decentralized social media Matei tells Engadget New users began to flood Mastodon in the days immediately after his bid was announced and there have been regular surges that coincide with controversial decisions he s made since The service currently has just over million active users according to founder Eugen Rochko Bluesky another decentralized platform has also notched early success The service which began as an offshoot of Twitter but severed all ties with the company last year has racked up hundreds of thousands of users in its closed beta Unlike Mastodon the team behind Bluesky is developing its own federated protocol the AT Protocol For now the only instance of Bluesky is the closed beta but the company has said it plans to start testing federation And while the AT Protocol and ActivityPub are separate standards the visions behind them are similar Already there are projects to “bridge the two and some fediverse enthusiasts suspect the distinction between the two will matter less as both Mastodon and Bluesky mature “The most important thing is the first principles built around both these protocols are identical McCue told Engadget “The most important thing is there s an open protocol ーactually two ーto build the federated social web For now the number of people using the federated social web though is still small compared with more established platforms Yet smaller and mid size companies are investing in the protocols and the platforms they power because they see the surging interest as an opportunity to bolster their own communities “They think it will actually create a better experience for their users Schulman told Engadget “Whether that s the promise of an even larger reader pool or access to more people to follow Meta which already operates some of the most dominant social networks may have different motivations While Zuckerberg has championed “interoperability in the past Meta hasn t historically been welcoming to potential competing networks Yet the company has talked glowingly about the promise of the fediverse “Our vision is that people using compatible apps will be able to follow and interact with people on Threads without having a Threads account and vice versa ushering in a new era of diverse and interconnected networks the company wrote in a blog post announcing Threads Schulman notes that Meta may have more self serving motivations “They re trying to portray themselves as not anti competitive Schulman said pointing to recent regulatory scrutiny It s still unclear how long it will take Meta to actually add ActivitySupport for Threads Instagram s top exec has cautioned it will take time In addition to technical complications involved there are also serious moderation issues associated with the fediverse where communities are responsible for setting their own rules and norms Researchers have recently flagged the prevalence of CSAM on some servers Bluesky which does currently have centralized moderation has also dealt with some controversies surrounding its handling of trust and safety Meta will need to ensure that Threads which has the same content policies as Instagram is interoperable with the fediverse while keeping out content that doesn t align with its rules The stricter approach may also explain why some fediverse backers were not excited about the prospect of Meta joining their ranks even tangentially Some Mastodon servers have pledged to block Threads in order to wall off their users from the Facebook owner Mastodon s Rochko alluded to the discontent in a blog post after Threads launch assuring users that Meta won t be able to serve ads or access the data of Mastodon users But he made clear he was broadly supportive of Meta s efforts “We have been advocating for interoperability between platforms for years he wrote shortly “The biggest hurdle to users switching platforms when those platforms become exploitative is the lock in of the social graph the fact that switching platforms means abandoning everyone you know and who knows you The fact that large platforms are adopting ActivityPub is not only validation of the movement towards decentralized social media but a path forward for people locked into these platforms to switch to better providers Which in turn puts pressure on such platforms to provide better less exploitative services This is a clear victory for our cause hopefully one of many to come This article originally appeared on Engadget at 2023-08-03 19:45:54
海外TECH Engadget Researchers reveal Tesla jailbreak that could unlock Full Self-Driving for free https://www.engadget.com/researchers-reveal-tesla-jailbreak-that-could-unlock-full-self-driving-for-free-190431645.html?src=rss Researchers reveal Tesla jailbreak that could unlock Full Self Driving for freeResearchers say they have found a hardware exploit with Tesla s infotainment system that could unlock paid upgrades for free including Full Self Driving FSD and heated rear seats They used a technique called voltage glitching which involves tinkering with the supply voltage of the infotainment system s processor “If we do it at the right moment we can trick the CPU into doing something else Christian Werling told TechCrunch “It has a hiccup skips an instruction and accepts our manipulated code That s basically what we do in a nutshell Werling is one of three doctoral students at the Technical University of Berlin who found the exploit with the help of an independent researcher The team will present its work at the Black Hat cybersecurity conference next week Since it s a hardware exploit the process requires physical access to a Tesla vehicle The jailbreak could enable FSD and certain other features including in regions where Tesla has not yet made them available the researchers claim However they noted that more work would be needed to test those possibilities Still the researchers claim to have obtained the encryption key that authenticates the car over Tesla s network which could lead to them being able to unlock more features They noted that they were able to obtain personal information from the test car too including its recent GPS locations contacts call logs and calendar appointments For several years hackers have been attempting to unlock paywalled Tesla features and some efforts have been successful More recently one discovered a so called quot Elon Mode quot for hands free FSD operations Tesla has been playing a game of cat and mouse with these hackers for years However it would be much more difficult for Tesla to revoke this exploit according to the researchers given that it s a hardware based approach They claim the company would need physical access to the car Tesla does not have a communications department that can be reached for comment This article originally appeared on Engadget at 2023-08-03 19:04:31
海外科学 NYT > Science Enslaved Black People in Maryland Linked to 42,000 Living Relatives https://www.nytimes.com/2023/08/03/science/catoctin-african-americans-dna.html Enslaved Black People in Maryland Linked to Living RelativesThe analysis marks the first time historical DNA has been used to trace the descendants and distant cousins of enslaved people researchers said 2023-08-03 19:20:27
海外科学 NYT > Science LK-99 Is the Ambient Superconductor of the Summer https://www.nytimes.com/2023/08/03/science/lk-99-superconductor-ambient.html physics 2023-08-03 19:22:36
医療系 医療介護 CBnews 病院上層部のコメディカル職員の重要性認識不足 その1-公立病院は、なぜ赤字か(9) https://www.cbnews.jp/news/entry/20230803171542 公立病院 2023-08-04 05:00:00
ニュース BBC News - Home 'This is messed up': Las Vegas sphere displays massive eyeball https://www.bbc.co.uk/news/world-us-canada-66400465?at_medium=RSS&at_campaign=KARANGA different 2023-08-03 19:15:49
ニュース BBC News - Home England World Cup squad: Steve Borthwick set to take Marcus Smith to France https://www.bbc.co.uk/sport/rugby-union/66396814?at_medium=RSS&at_campaign=KARANGA England World Cup squad Steve Borthwick set to take Marcus Smith to FranceEngland head coach Steve Borthwick says his final man squad for the World Cup is pretty clear with only one or two places to be finalised 2023-08-03 19:24:24
ニュース BBC News - Home The Hundred 2023: Northern Superchargers v Birmingham Phoenix abandoned due to heavy rain https://www.bbc.co.uk/sport/cricket/66397474?at_medium=RSS&at_campaign=KARANGA The Hundred Northern Superchargers v Birmingham Phoenix abandoned due to heavy rainThe Hundred match between Northern Superchargers and Birmingham Phoenix is abandoned following heavy rain at Headingley 2023-08-03 19:18:51
ニュース BBC News - Home The Hundred 2023: Ben Duckett's six and Georgia Wareham's stunning catch - Plays of the Day https://www.bbc.co.uk/sport/av/cricket/66401038?at_medium=RSS&at_campaign=KARANGA The Hundred Ben Duckett x s six and Georgia Wareham x s stunning catch Plays of the DayWatch the best moments from day three of The Hundred including a ramp six from Birmingham Phoenix s Ben Duckett and a stunning catch by Northern Superchargers bowler Georgia Wareham 2023-08-03 19:53:26
ビジネス ダイヤモンド・オンライン - 新着記事 日銀のYCC柔軟化は妥当、緩和継続の「約束」は国民の信頼失うリスクも - 政策・マーケットラボ https://diamond.jp/articles/-/327169 日本銀行 2023-08-04 04:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 ビッグモーター元従業員が告白「店員総出で街路樹を掘り返した」、反対の声は黙殺 - 弁護士ドットコム発 https://diamond.jp/articles/-/327154 ビッグモーター元従業員が告白「店員総出で街路樹を掘り返した」、反対の声は黙殺弁護士ドットコム発中古車販売大手ビッグモーターの店舗前で街路樹が枯れたり、撤去されたりしたとの疑惑が相次いだことから、東京都はじめ各地の自治体は土壌の検査を実施するなど調査に動きだした。 2023-08-04 04:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 【無料公開】アパグループ新社長が父から受け継ぐ野望「ホテル寡占化」に向けた胸中を激白! - Diamond Premiumセレクション https://diamond.jp/articles/-/327160 diamond 2023-08-04 04:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 米債務の「時限爆弾」 もう無視できない - WSJ PickUp https://diamond.jp/articles/-/327172 wsjpickup 2023-08-04 04:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 米半導体規制、中国ハイテク業界に影響じわり - WSJ PickUp https://diamond.jp/articles/-/327171 wsjpickup 2023-08-04 04:30:00
ビジネス ダイヤモンド・オンライン - 新着記事 仕事はできるのに「管理職としては失格な人」の“ざんねんな特徴” - 「静かな人」の戦略書 https://diamond.jp/articles/-/326951 静か 2023-08-04 04:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 【本当に賢い人を見抜くクイズ】パン屋の売上3位がチョコパン、2位はメロンパン。では1位は? - 新マーケティング原論 https://diamond.jp/articles/-/326970 記念 2023-08-04 04:17:00
ビジネス ダイヤモンド・オンライン - 新着記事 個人投資家が「1億円突破」を目指す“非常識投資メソッド”【ステージ3・資産1000万円超~3000万円】 - 10万円から始める! 小型株集中投資で1億円 【1問1答】株ドリル https://diamond.jp/articles/-/325876 個人投資家が「億円突破」を目指す“非常識投資メソッド【ステージ・資産万円超万円】万円から始める小型株集中投資で億円【問答】株ドリル【大好評シリーズ万部突破】東京理科大学の大学生だったとき、夏休みの暇つぶしで突如「そうだ、投資をしよう」と思い立った。 2023-08-04 04:14:00
ビジネス ダイヤモンド・オンライン - 新着記事 【精神科医が教える】 やらかしちゃった…大失敗したときの立ち直り方・ベスト1 - 精神科医Tomyが教える 40代を後悔せず生きる言葉 https://diamond.jp/articles/-/326239 【精神科医が教える】やらかしちゃった…大失敗したときの立ち直り方・ベスト精神科医Tomyが教える代を後悔せず生きる言葉【大好評シリーズ万部突破】誰しも悩みや不安は尽きない。 2023-08-04 04:08:00
ビジネス ダイヤモンド・オンライン - 新着記事 【本日は天赦日+一粒万倍日+大安吉日】運のいい人が「最強開運日」に神様の前でやっていること - 1日1分見るだけで願いが叶う!ふくふく開運絵馬 https://diamond.jp/articles/-/326904 2023-08-04 04:05:00
ビジネス ダイヤモンド・オンライン - 新着記事 成功にとってもっとも重要なのは、自分がもつアドバンテージをどのようにマネタイズするか - シンプルで合理的な人生設計 https://diamond.jp/articles/-/326732 成功にとってもっとも重要なのは、自分がもつアドバンテージをどのようにマネタイズするかシンプルで合理的な人生設計「幸福」をつの資本をもとに定義した前著『幸福の「資本」論』からパワーアップ。 2023-08-04 04:02:00
ビジネス 東洋経済オンライン 「頭がいい人は言い訳をする」東大生語るその真意 かしこい人に共通して見られる「3つの習慣」 | リーダーシップ・教養・資格・スキル | 東洋経済オンライン https://toyokeizai.net/articles/-/691289?utm_source=rss&utm_medium=http&utm_campaign=link_back 東洋経済オンライン 2023-08-04 04:50:00
ビジネス 東洋経済オンライン 「ひざの不調」70代女性の7割が悩む病気の正体 変形性膝関節症の原因と対策を専門医が徹底解説 | 健康 | 東洋経済オンライン https://toyokeizai.net/articles/-/688666?utm_source=rss&utm_medium=http&utm_campaign=link_back 変形性膝関節症 2023-08-04 04:40:00
ビジネス 東洋経済オンライン 京急品川駅、高架下で進行する「地平化」の大工事 電車が往来する工事現場から何が見えるのか | 駅・再開発 | 東洋経済オンライン https://toyokeizai.net/articles/-/691990?utm_source=rss&utm_medium=http&utm_campaign=link_back 京浜急行電鉄 2023-08-04 04:30: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件)