投稿時間:2023-05-23 03:18:10 RSSフィード2023-05-23 03:00 分まとめ(25件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… 「メタルギアソリッド3」のリメイク版はPS5独占タイトルではないとの噂 − 5月25日の「PlayStation Showcase」で発表?? https://taisy0.com/2023/05/23/172046.html insidergaming 2023-05-22 17:05:47
AWS AWS Partner Network (APN) Blog Enabling Machine Learning Adoption with Genpact’s Analytics Maturity Meter and AWS https://aws.amazon.com/blogs/apn/enabling-machine-learning-adoption-with-genpact-analytics-maturity-meter-and-aws/ Enabling Machine Learning Adoption with Genpact s Analytics Maturity Meter and AWSOrganizations realize the value of data and analytics for their businesses but not all of them have been successful in defining a mature analytics vision and strategy By cross leveraging experience in process management safeguarding data and rich analytics practices Genpact has developed an analytics maturity assessment framework known as the Analytics Maturity Meter AMM Learn how this solution evaluates a company s current capabilities in data process technology talent and enterprise leadership 2023-05-22 17:22:55
AWS AWS Machine Learning Blog Instruction fine-tuning for FLAN T5 XL with Amazon SageMaker Jumpstart https://aws.amazon.com/blogs/machine-learning/instruction-fine-tuning-for-flan-t5-xl-with-amazon-sagemaker-jumpstart/ Instruction fine tuning for FLAN T XL with Amazon SageMaker JumpstartGenerative AI is in the midst of a period of stunning growth Increasingly capable foundation models are being released continuously with large language models LLMs being one of the most visible model classes LLMs are models composed of billions of parameters trained on extensive corpora of text up to hundreds of billions or even a … 2023-05-22 17:38:33
Git Gitタグが付けられた新着投稿 - Qiita 指定した言語・フレームワークgitignoreのテンプレを生成するコマンド3選 https://qiita.com/uminohiyoko/items/fe830eb39cb7bdfd2bce github 2023-05-23 02:28:53
海外TECH Ars Technica Lawsuit accuses DoorDash of charging iPhone users more for identical orders https://arstechnica.com/?p=1940882 claims 2023-05-22 17:29:23
海外TECH Ars Technica Motorola’s fourth swing at a foldable Razr launches June 1 https://arstechnica.com/?p=1940893 model 2023-05-22 17:20:01
海外TECH DEV Community Dask - Collaborative Task Manager Application for GitHub + DEV Hackathon https://dev.to/dilane3/dask-collaborative-task-manager-application-for-github-dev-hackathon-446p Dask Collaborative Task Manager Application for GitHub DEV Hackathon What I builtIn the context of the Hackathon I decided to build a mobile application which could help everyone to Organize their tasks into personal projects and their projects will be saved into the mobile phone not in the cloud Work on the same project with many people like on Trello and Jira so the application is working in realtime In this case projects are saved in the cloud and shared to all members of the project These are the two main point that my application called Dask offers to people Category Submission The project that I build enter in this following category Phone Friendly Projects built for Mobile PWA readiness iOS Android App LinkThe android version of the app is available from this Google Drive folder For the Ios version I haven t generated it because I didn t have a Macbook and Iphone But we can use the source code to generate it because it s made with a cross platform tool React Native Screenshots Sign up screen Profile screen Personal projects Create a personal or a shared project Change the status of a task Delete a task Shared projects screen Tasks of a shared project Members DescriptionAs said above this project aims to help people to organize their tasks into project it s not required to have an internet connection to starting managing Personal projects because they are saved in the mobile phone directly For the Shared projects section you have to be connected first into your accound and after having created a shared project so easy to do you can invite other person to the project by searching for their profile based on their email adresses And then if on a specific shared project there are members actually connected if some one for example Add a new taskDelete a taskUpdate the status of a taskThe owner add a new memberThe rest of members will be notify directly and see the update on their mobile phone without refreshing the application Link to Source CodeMobile application source code Realtime Backend source code Permissive LicenseMIT Background What made you decide to build this particular app What inspired you What motivate me to realize this project was the case where we have many women for example who want to do the market in order to organize a wedding We all know that one person can t do it only so we have to be many to go quicky And also things that are going to be purchased can not be at the same place then we have to go in many places to find what we want to buy Okay now it is not easy to know if one thing has been bought and if a women doesn t find what she was supposed to buy she couldn t notify the rest of women to alert them apart of if she decide to call each women It s problematic There s some issues like that that motivated me to realize Dask a Collaborative Task Manager In Dask you can organize your tasks into projects invite people to collaborate and all members will receive notifications and see what changed into the project it s very cool How I built it How did you utilize GitHub Actions or GitHub Codespaces Did you learn something new along the way Pick up a new skill For the mobile application project I create a GitHub Codespaces where I configure a particular container that fit my project requirement so I Initialized a container with Nodejs TypeScript because my React Native application is initialized on top of them Installed some extensions like Prettier GitHub Copilot and so on which help me to code more faster I launched the development server and test the mobile app directly on my hardward device and it works very fine I was so happy while working on this project I learnt many new things Firstly I did know nothing about GitHub Codespaces before but after having watching videos on it I learn how to use it and configure it Also I learnt how to set up Firebase to React Native something that I hadn t done yet the result if wow Finally it s my first time to set up a realtime behavior into a React Native app and it works very fine In conclusion I learnt many things thanks for this opportunity Additional Resources Info Technologies usedReact Native for mobile applicationFirebase for the backend used to saved users accound shared projects and tasks Nodejs Socket io for the realtime behaviorSQLite for managing local database into the mobile app used to save personal project GitHub used to save the project online and collaborate easily with other peopleFigma used to realized UI Designs CollaboratorsI received help from two friends who have participated to the project essijunior The second do not has an account yet 2023-05-22 17:04:41
海外TECH DEV Community How To write a Smart Contract Wallet with Ownership change https://dev.to/crudeboy/how-to-write-a-smart-contract-wallet-with-ownership-change-1mhj How To write a Smart Contract Wallet with Ownership changeA smart contract Wallet can be defined as a device or application that lets users customise the way they would prefer to manage their digital assets One very important skill of a smart contract developer is understanding a understanding transactions in the EVM having a sound knowledge of gas use and optimisation harnessing the power of low level calls understanding the security risks and sticking to safe smart contract writing patterns All this principles are covered in this simple solidity project OverviewThe projects implementation is broken into sections Implementing a smart contract owner and restricting certain functionalities to the owner only Allowing the smart contract to receive funds from EOA and other contracts The funds transfer functionalityThe change of owner voting system implementation Implementing a smart contract ownerThe nature of a smart contract that makes it not modifiable after deployment necessitates very important functionalities to be Authorised before access is granted The lowest level of access grant in a smart contract is the implementation of a smart contract owner The owner of a smart contract is the address that deploys the smart contract to the blockchain The solidity contract allows for the implementation of constructor The constructor enables a black of code to be implemented first in the creation of the smart contract and only once A variable owner of type address is created this is a state variable and of type address The owner is assigned the value msg sender using the global variables available in a smart contract The Funds Receive functionalityA smart contract has an address hence can receive funds and make transactions There are a few ways a smart contract can be made to receive funds One is by creating a depositFund function that is labelled payable the other is by using a payable fall back function One other option which was utilised in this smart contract is to use a receive functionality The receive function differs from a fallback in that it cannot receive data and is the first default function called when a low level payment to the smart contract is triggered The receive function does not access storage or make a function call hence the gas stipend would be sufficient for the transaction None the less it is a better practice to use low level function call where the transaction sender attaches more gas to the send function in a contract to cater for additional cost on fund transfer to a contract The funds transfer functionalitythe transfer functionality is a function that utilizes many require statement to ensure proper checks are made before funds are transfers Three require checks are made the first ensures that the amount to be transferred is less or at most equal to the funds in the smart contract The second require statement checks the mapping created that allows specific addresses to be recipients of the smart contract funds The mapping isAllowedToSend is used to grant permission to withdraw funds by the smart contract owner The third require statement ensures that the amount to be transferred to an account is less than or equals the amount the owner has previously set To prevent the re entrancy attack where as a result of excess gas provided for transactions with external contracts they can still access the source contract and try to change state variables Following the best practice the transfer functionality interacts last with external contracts Firstly we deduct the amount to be transferred from the smart contract before the actual transfer transaction is made Transfers can be done using at leat three methods address transfer address send to call value amount gas payload The third methods is referred to as a low level call This method is usually used when ever you have no knowledge of what address the recipients of your funds transfer When the transfer is done to other EOA Externally owned Addresses then any of the methods above is safe if the transfer is to a smart contract then the transaction would fail if the receive or fallback functionality interacts with the contract The reason for this failure is that basic transfer functionalities only make the stipend gas available for transactions only low level calls can be used to include a stipulated gas cost with the transaction The response of a low level call must be assigned to check if the transaction was successful The change of owner voting system implementation The smart contract implements a simple voting system that allows for change of ownership This could easily be a useful feature when the governance of a smart contract need to be changed or owner demise The voting system ensures the owner of a smart contract selects at least three guardians who have the ability to elect the next address as the smart contract owner As soon as an address has guardians selection then the address becomes the new smart contract owner and perform functions restricted to the smart contract owner There is the link to the smart contract code on Github Feel free to reach out to me on LinkedIn Further articles to this would be published deploying a smart contract to a local blockchian deploying to a test net such as Sepolia deploying to a layer solution ZK SNARK 2023-05-22 17:00:57
Apple AppleInsider - Frontpage News Amazon's top Apple deals: $499 M2 Mac mini, $700 off MacBook Pro, AirPods from $99 & more https://appleinsider.com/articles/23/05/22/amazons-top-apple-deals-499-m2-mac-mini-700-off-macbook-pro-airpods-from-99-more?utm_medium=rss Amazon x s top Apple deals M Mac mini off MacBook Pro AirPods from amp moreAmazon is slashing prices to help you save massive amounts of money on a inch MacBook Pro with an M Pro chip now cheaper Or take up to off the upgraded inch model now only Save up to on an M MacBook Pro This week s Amazon deals include several accessories with popular add ons seeing significant discounts including a pair of Apple AirPods Max with an discount and the MagSafe Battery Pack for only Read more 2023-05-22 17:10:59
海外TECH Engadget Twitter bug seems to be randomly restoring deleted tweets https://www.engadget.com/twitter-bug-seems-to-be-randomly-restoring-deleted-tweets-173900330.html?src=rss Twitter bug seems to be randomly restoring deleted tweetsMultiple Twitter users are reporting that deleted tweets are reappearing on the site at an alarming rate with one security expert noting that the social media app restored a whopping messages as reported by ZDNET nbsp The bug also seems to be impacting deleted retweets The issue appears to be widespread but all of the data s anecdotal It seems to mostly impact those who batch deleted tweets via a third party service like Redact or TweetDelete though not always In any event check your feed for the reappearance of that tasteless Harambe tweet you wrote and then deleted back in This is a trivial issue for many but does speak to how the company handles and protects your private data A former Twitter Site Reliability Engineer suggested on Mastodon that it “sounds a lot like they moved a bunch of servers between data centers and didn t properly adjust the topology before reinserting them into the network There s no way to find out anything official because Elon Musk disbanded the press team replacing the press line with a bot that returns only poop emojis In any event we ll update this story if the company issues a statement of any kind that addresses the issue This has been a bizarre few months for the social media platform The city of San Francisco launched a probe into potential building code violations and the site s been plagued with technical issues All of this has led to a stark decline in usage numbers with competitors waiting in the wings to scoop up those fleeing the service This article originally appeared on Engadget at 2023-05-22 17:39:00
海外TECH CodeProject Latest Articles Industrial IoT based Machine Tool Condition Monitoring With GE Predix Time Series Ingestion And Data Streaming https://www.codeproject.com/Articles/1116559/Industrial-IoT-based-Machine-Tool-Condition-Monito Industrial IoT based Machine Tool Condition Monitoring With GE Predix Time Series Ingestion And Data StreamingIndustrial IoT time series data collection with GE Predix time series ingestion and data streaming 2023-05-22 17:54:00
Linux OMG! Ubuntu! Parallels Desktop Update Adds Support for Ubuntu 23.04 VMs https://www.omgubuntu.co.uk/2023/05/parallels-desktop-update-ubuntu-23-04 Parallels Desktop Update Adds Support for Ubuntu VMsA clutch of Ubuntu fixes features in the latest update to Parallels Desktop a popular proprietary and paid virtualization suite for macOS If you re now scratching your head wondering why you re reading about Mac software on an Ubuntu blog I have to say …You do have a point However not everyone uses Ubuntu or indeed other Linux distros or desktops OSes on bare metal Some don t use it out of choice convenience while others are limited to only being able to boot macOS because of their job it s a work device etc This Virtual machine software like Parallels Desktop has its This post Parallels Desktop Update Adds Support for Ubuntu VMs is from OMG Ubuntu Do not reproduce elsewhere without permission 2023-05-22 17:28:32
海外科学 NYT > Science Deal Is Reached to Keep Colorado River From Going Dry, for Now https://www.nytimes.com/2023/05/22/climate/colorado-river-deal.html federal 2023-05-22 17:24:16
海外科学 NYT > Science Moving Is a Monumental Task for Many Older Americans. These Organizers Can Help. https://www.nytimes.com/2023/05/20/health/elderly-move-managers.html Moving Is a Monumental Task for Many Older Americans These Organizers Can Help Senior move managers may spend weeks or months helping seniors and their families sort through belongings pack and move into a new home 2023-05-22 17:30:15
海外TECH WIRED The Planet Can’t Sustain Rapid Growth Much Longer https://www.wired.com/story/gaya-herrington-avoiding-global-collapse/ herrington 2023-05-22 17:37:19
ニュース BBC News - Home Ukraine war: Saboteurs cross into Russia's Belgorod, governor says https://www.bbc.co.uk/news/world-europe-65674773?at_medium=RSS&at_campaign=KARANGA groups 2023-05-22 17:11:09
ニュース BBC News - Home I'm confident nothing untoward happened over speeding course, says Suella Braverman https://www.bbc.co.uk/news/uk-politics-65667714?at_medium=RSS&at_campaign=KARANGA I x m confident nothing untoward happened over speeding course says Suella BravermanThe home secretary refuses to confirm if she asked civil servants to arrange a one to one speeding awareness course 2023-05-22 17:07:39
ニュース BBC News - Home Chelsea Flower Show: King to view tributes to late Queen at Flower Show https://www.bbc.co.uk/news/uk-65672382?at_medium=RSS&at_campaign=KARANGA chelsea 2023-05-22 17:35:44
ニュース BBC News - Home Weapons expert cut from government event due to Twitter posts https://www.bbc.co.uk/news/uk-politics-65675247?at_medium=RSS&at_campaign=KARANGA opinions 2023-05-22 17:24:59
ビジネス ダイヤモンド・オンライン - 新着記事 頭の回転が速い人が無意識にやっているたった1つの習慣とは - 1秒で答えをつくる力 お笑い芸人が学ぶ「切り返し」のプロになる48の技術 https://diamond.jp/articles/-/323308 2023-05-23 02:55:00
ビジネス ダイヤモンド・オンライン - 新着記事 【精神科医が教える】 「良い欲」と「悪い欲」の決定的な違い - 精神科医Tomyが教える 40代を後悔せず生きる言葉 https://diamond.jp/articles/-/321873 【精神科医が教える】「良い欲」と「悪い欲」の決定的な違い精神科医Tomyが教える代を後悔せず生きる言葉【大好評シリーズ万部突破】誰しも悩みや不安は尽きない。 2023-05-23 02:50:00
ビジネス ダイヤモンド・オンライン - 新着記事 【神様が味方する人の生き方】 誰でもできる!「周囲から感謝される人」がやっている習慣 - ありがとうの神様――神様が味方をする習慣 https://diamond.jp/articles/-/323093 【神様が味方する人の生き方】誰でもできる「周囲から感謝される人」がやっている習慣ありがとうの神様ー神様が味方をする習慣年の発売以降、今でも多くの人に読まれ続けている『ありがとうの神様』。 2023-05-23 02:45:00
ビジネス ダイヤモンド・オンライン - 新着記事 【英語力のクイズに挑戦】「プリンターが動かない」を英語でどう言う? - 5分間英単語 https://diamond.jp/articles/-/323219 【英語力のクイズに挑戦】「プリンターが動かない」を英語でどう言う分間英単語「たくさん勉強したのに英語を話せない……」。 2023-05-23 02:40:00
ビジネス ダイヤモンド・オンライン - 新着記事 【中学受験必勝ノート術】カリスマ家庭教師が「ノートを見れば合格するかわかる」という理由【書籍オンライン編集部セレクション】 - 中学受験必勝ノート術 https://diamond.jp/articles/-/323259 【中学受験必勝ノート術】カリスマ家庭教師が「ノートを見れば合格するかわかる」という理由【書籍オンライン編集部セレクション】中学受験必勝ノート術大手塾で算数講師の経験を積んだ後、算数専門のプロ家庭教師として約年間、人以上のお子さんを指導してきた中学受験専門のカリスマ家庭教師・安浪京子先生は、その経験から「ノートをひと目見ると、その子の学力がわかる」と言います。 2023-05-23 02:35:00
ビジネス ダイヤモンド・オンライン - 新着記事 クレーマーの長電話を強制終了するシャットアウトフレーズ“3連コンボ”【書籍オンライン編集部セレクション】 - クレーム対応「完全撃退」マニュアル https://diamond.jp/articles/-/323105 特別公開 2023-05-23 02: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件)