投稿時間:2022-08-26 20:33:36 RSSフィード2022-08-26 20:00 分まとめ(33件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] トヨタ、香川照之氏の性加害報道に「許されざる行為」 CM降板は否定も「今後を注視」 【コメント全文あり】 https://www.itmedia.co.jp/business/articles/2208/26/news176.html itmedia 2022-08-26 19:33:00
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] ソフトバンクG保有アーム社とのお見合い破談の米エヌビディア 成長に足踏み https://www.itmedia.co.jp/business/articles/2208/26/news169.html itmedia 2022-08-26 19:23:00
IT ITmedia 総合記事一覧 [ITmedia News] TMネットワーク、'89年の横浜アリーナ公演をYouTubeで無料配信 33年前と同じ30日午後6時半から https://www.itmedia.co.jp/news/articles/2208/26/news180.html caroltourfinalcampfanks 2022-08-26 19:21:00
IT ITmedia 総合記事一覧 [ITmedia Mobile] ベルキン、最大27Wで急速充電できるコンパクトな充電器を発売 https://www.itmedia.co.jp/mobile/articles/2208/26/news164.html belkinboost 2022-08-26 19:12:00
IT 情報システムリーダーのためのIT情報専門サイト IT Leaders 品川区が戸籍専門書籍のAI検索サービスを導入、膨大な資料の検索時間を半分に | IT Leaders https://it.impress.co.jp/articles/-/23690 品川区が戸籍専門書籍のAI検索サービスを導入、膨大な資料の検索時間を半分にITLeaders品川区は年月日、日本加除出版本社東京都豊島区の戸籍関連の専門書籍を電子データ化して構築したAI検索サービスの利用を開始した。 2022-08-26 19:30:00
python Pythonタグが付けられた新着投稿 - Qiita 機械学習用の環境を0から構築した(windows11 + VSCode + venv + Tensorflow + GPU) https://qiita.com/pocokhc/items/ed2d25c5f6b63a9d11a4 wsvscodevenvtensorflowgpu 2022-08-26 19:16:01
Ruby Railsタグが付けられた新着投稿 - Qiita StimulusJSでCropper.jsを使ってみた https://qiita.com/jiikko/items/dc000de452ef5f68f31b cropperjs 2022-08-26 19:43:10
技術ブログ Developers.IO Amazon Personalizeのデータセットインポートに増分モードが追加されました https://dev.classmethod.jp/articles/amazon-personalize-incremental-bulk-dataset-imports/ amazonpersonalize 2022-08-26 10:46:52
海外TECH Ars Technica Audi will build F1 engines, entering the sport in 2026 https://arstechnica.com/?p=1876328 rules 2022-08-26 10:00:34
海外TECH MakeUseOf The Best Smart Sprinkler Controllers to Conserve Water and Cash https://www.makeuseof.com/tag/best-smart-sprinklers/ system 2022-08-26 10:05:14
海外TECH DEV Community Create Lens Subgraph on The Graph Protocol https://dev.to/andriishupta/create-lens-subgraph-on-the-graph-protocol-32f0 Create Lens Subgraph on The Graph Protocol Linksgithub andriishupta thegraph hello worldsubgraph andriishupta hello worldTheGraph DocumentationLens Documentation Published onPersonal blog Medium ️DEV Community ‍‍ Initially I got familiar with TheGraph by contributing to DeveloperDAO to a project that did the same indexing Lens Protocol P S This tutorial is NOT copy paste of existing code and I created a repository from scratch to understand the basics of TheGraph and how to start I needed to develop my subgraph to test how events would be indexed Decentralized queryingThe Graph is an indexing protocol for querying networks like Ethereum and IPFS Anyone can build and publish open APIs called subgraphs making data easily accessible Many different tools and APIs help us query blockchain data using centralized API like we used to with web My favourites are alchemy and infura But if we want to go decentralized we must use decentralized tools All data is stored and processed on open networks with verifiable integrity TheGraph makes querying this data fast reliable and secure LensLens Protocol is a composable and decentralized social graph ready for you to build on so you can focus on creating a great experience not scaling your users Own your content Own your social graph Own your data With Lens API we could do everything we want with protocol but it still includes the web principle and has a centralized database for different things built on top of Smart Contract data If we want to get actual blockchain data we need to use a protocol like TheGraph Disclaimer assumption about the centralized part of Lens API is based on the features that Smart Contract has not for example likes functionality I like Lens API very much and would count on it of the time as a personal preference balancing centralized vs decentralized tooling How to create a subgraphIn this tutorial I will give an example of creating a subgraph using Hosted Service it will be closed in months Still there won t be a difference in coding approaches just in how it is internally deployed With the Hosted Service it was easier to use for testing purposes graph initinstall graph clirun graph init product hosted servicefollow CLI steps where you need to add protocol name and contract addressYou will get a generated project The main entry point is subgraph yaml This is the finished version of my subgraph source codeYou can read more on what is subgraph manifest source blockIndicates from what address to index Many contracts use Proxy Upgrade Pattern which helps to fix crucial bugs or update implementation That is why I have added LensHub ABI Application Binary Interface as source ABI and then changed the address to proxystartBlock I chose some random block for testing purposes so it won t start indexing from the start it takes more time Usually this value is omitted or equals the Contract creation s block To get ABI you can Copy from Etherscan Polygonscan whole Contract ABIGo to remix ethereum org copy the github project and compile the contractI went with a approach such as Lens has Events sol library that is not compiled as part of the main contract graph codegenAfter proper setup we can run code generation we will get all types of code to work with The Graph has excellent documentation so follow it and find all answers there Mindset shiftAs a developer who worked with databases I started to think linearly entity created gt entity updated But events could be indexed from startBlock and in non linear order in time so even if we index the event like handleProfileImageURISet we need to check if the entity existed previously more in the code example To find more tips TheGraph documentation has a section defining entities it entirely describes what you should think about when creating your schema Before defining entities it is important to take a step back and think about how your data is structured and linked CodeAs we know schema and how our data would be created is essential Let s look at how I have added entity definition source codeProfile is the entity including default fields that I took from ProfileCreated event and the posts field which is an entity relationshipIn this case it is a One To Many relationship with the usage of the Reverse Lookup approach that TheGraph recommends us using For one to many relationships the relationship should always be stored on the one side and the many side should always be derived will result in dramatically better performance for both indexing and querying the subgraph Post is also an entity Both have an ID which should be unique for the subgraph In lens hub ts are located functions that correspond to events we want to index handle CreatedAs we see even for a new Post we check if Profile already exists or not I discovered the error I got during subgraph deployment and indexing that was saying something like profile cannot be null when I just wanted to load Profile to Post TheGraph also supports the merge approach this means that if we create a new instance of Profile and it already exists it is okay cause the subgraph would try to merge fields I wanted to be the more precise cause in the examples and I saw that in every place where we wish to create something we first check if it could be already created Example I have created a Post and the subgraph knows that Post should have a Profile Profile event was way before Post so we don t have a Profile and we need to create it even if you could think how a Post could be created without a Profile it couldn t but the event about the Post we could get first to index source code TestingTo check out how it works you could visit my subgraph andriishupta hello world It has a pre defined Test query that will give you info for both Profiles and Posts You could modify it to get more or less information in the query window Thanks for reading 2022-08-26 10:21:20
Apple AppleInsider - Frontpage News iPhone 12 and up might get satellite communication in 2023 https://appleinsider.com/articles/22/08/26/elon-musk-and-t-mobile-announce-universal-cell-coverage-via-satellite?utm_medium=rss iPhone and up might get satellite communication in SpaceX and T Mobile are partnering on a long term plan to bring satellite internet to cellphones providing very limited connectivity to even the most remote US locations Elon MuskAccording to the companies over half a million square miles of US land ーplus surrounding ocean ーcannot receive cell signals at present Musk and T Mobile CEO Mike Sievert propose utilising SpaceX s Starlink satellites to address the issue Read more 2022-08-26 10:53:15
海外TECH Engadget Audi will join Formula 1 as a hybrid engine supplier for 2026 https://www.engadget.com/audi-joins-f1-104506589.html?src=rss Audi will join Formula as a hybrid engine supplier for After months of innuendo speculation and rumor German car giant Audi has announced that it will join Formula One from the season The VW owned company says it will build a new hybrid engine for the competition at its facility in Neuburg Audi said that technical changes made by the sport s governing body the FIA to prevent cost overruns and improve sustainability prompted it to sign up It s hoped Audi will help push the sport to its ambitious goal of being climate neutral by Broadly speaking the FIA s new engine specifications require a V engine designed to run on a more sustainable fuel blend Paired with that will be a kW electric motor with an output of around horsepower making it almost as powerful as the V itself Audi added that its project will be led by Adam Baker who has previously served as the FIA s Safety Director and had stints with Cosworth another F engine maker and BMW Audi said it will announce which team it will work with “by the end of this year but most F fans feel it s already a done deal The longstanding rumor is that Audi will buy a majority stake in Swiss motorsport company Sauber which currently races under the Alfa Romeo livery As Planet F reports Sauber has already been the subject of takeover talks this year and could benefit from a big auto giant s backing Given the fact we re still some years away from Audi s first race it s not clear how any of this will impact the storylines on Drive To Survive which I know is what most of you are worried about Whatever happens I m sure Christian Horner will find a way to be face punchingly smug about it 2022-08-26 10:45:06
海外TECH Engadget Court grants Elon Musk access to a small but important set of Twitter data https://www.engadget.com/court-grants-elon-musk-access-to-important-set-of-twitter-data-100518436.html?src=rss Court grants Elon Musk access to a small but important set of Twitter dataThe judge presiding over Twitter s lawsuit against Elon Musk has mostly rejected the multi company executive s request to access an quot absurdly broad quot amount of data She did however agree that additional data from Twitter is warranted and has ordered the social network to produce a subset of what Musk s camp had requested To be exact Judge Kathaleen McCormick has ordered Twitter to hand over data from the accounts it reviewed in the fourth quarter of to determine the number of spam accounts on the platform Further it must produce the documents showing how those accounts which Twitter calls quot historical snapshot quot were selected for review Twitter if you ll recall is suing Elon Musk to force him to complete his billion acquisition of the website Musk offered to buy Twitter for per share back in April and Twitter had quickly agreed Their talks broke down over the next few months though and Musk accused Twitter of fraud for hiding the real number of bots on its platform Twitter has long been claiming that the inauthentic accounts that see ads which are called monetizable daily active users or mDAU represent less than five percent of its userbase However Musk claimed in a legal filing that the actual numbers are much higher and that mDAUs represent percent of the website s users nbsp Musk s camp has been requesting access to quot all of the data Twitter might possibly store for each of the approximately million accounts included in its mDAU count every day for nearly three years quot according to the judge s decision as obtained by The Verge Twitter couldn t even say how much time it would take to do that because quot no one in their right mind has ever tried to undertake such an effort quot McCormick continued Twitter told the court that the historical snapshot it used in the fourth quarter of no longer exists and that it could take up to two weeks to recreate it so the judge gave the company that much time to do so nbsp In a statement sent to Reuters Musk s lawyer Alex Spiro said quot We look forward to reviewing the data Twitter has been hiding for many months quot 2022-08-26 10:05:18
医療系 医療介護 CBnews 技能実習生ら就労直後から人員配置基準算定を提案-厚労省が介護給付費分科会に示すも引き続き検討へ https://www.cbnews.jp/news/entry/20220826193645 人員配置 2022-08-26 20:00:00
医療系 医療介護 CBnews がん対策で383億円計上、厚労省-23年度予算概算要求、健康局は4,697億円 https://www.cbnews.jp/news/entry/20220826193759 厚生労働省 2022-08-26 19:55:00
医療系 医療介護 CBnews 高血圧アプリの高点数に驚きの声、日病協-6カ月5万円で使用されるのか https://www.cbnews.jp/news/entry/20220826185114 山本修一 2022-08-26 19:35:00
ニュース @日本経済新聞 電子版 隠れ心不全 症状が出る前に気づき、悪化を防ぐには? https://t.co/Bv6yCGyv5G https://twitter.com/nikkei/statuses/1563108656279076864 隠れ 2022-08-26 10:18:39
ニュース @日本経済新聞 電子版 AIアナが読むニュース 夕方の4本 https://t.co/Vj0IECxVlm https://twitter.com/nikkei/statuses/1563104915169636352 夕方 2022-08-26 10:03:47
ニュース BBC News - Home 'Lives at risk' without more help on energy bills https://www.bbc.co.uk/news/business-62674301?at_medium=RSS&at_campaign=KARANGA prices 2022-08-26 10:37:21
ニュース BBC News - Home Women attend first league match in Iran for 40 years https://www.bbc.co.uk/news/world-middle-east-62678408?at_medium=RSS&at_campaign=KARANGA iran 2022-08-26 10:21:36
ニュース BBC News - Home Royal Mail strike: 115,000 postal workers begin strike https://www.bbc.co.uk/news/business-62672783?at_medium=RSS&at_campaign=KARANGA dates 2022-08-26 10:31:29
ニュース BBC News - Home What is the energy price cap and how high will bills go? https://www.bbc.co.uk/news/business-58090533?at_medium=RSS&at_campaign=KARANGA price 2022-08-26 10:28:36
ニュース BBC News - Home Why are global gas prices so high? https://www.bbc.co.uk/news/explainers-62644537?at_medium=RSS&at_campaign=KARANGA decade 2022-08-26 10:41:23
ビジネス 不景気.com 極楽湯HDが継続企業の前提に疑義注記、債務超過転落 - 不景気com https://www.fukeiki.com/2022/08/gokurakuyu-going-concern.html 債務超過 2022-08-26 10:01:55
北海道 北海道新聞 中国バレー女子、マスク着け試合 コロナ対策、非難殺到で謝罪 https://www.hokkaido-np.co.jp/article/722424/ 女子代表 2022-08-26 19:22:00
北海道 北海道新聞 校則見直しに生徒の意見反映 ブラック是正へ手引書改訂 https://www.hokkaido-np.co.jp/article/722423/ 児童生徒 2022-08-26 19:22:00
北海道 北海道新聞 自民方針転換、全議員調査を開始 旧統一教会側との接点把握 https://www.hokkaido-np.co.jp/article/722415/ 世界平和 2022-08-26 19:22:03
北海道 北海道新聞 ゴルフ、19歳長野ら4人が首位 男子KBCオーガスタ第2日 https://www.hokkaido-np.co.jp/article/722422/ sansan 2022-08-26 19:21:00
北海道 北海道新聞 全道で条例制定を 道弁連が犯罪被害者支援に向けシンポジウム 札幌 https://www.hokkaido-np.co.jp/article/722421/ 北海道弁護士会連合会 2022-08-26 19:15:00
北海道 北海道新聞 バッハ氏、10月五輪行事出席へ 東京・国立競技場で開催 https://www.hokkaido-np.co.jp/article/722420/ 国際オリンピック委員会 2022-08-26 19:15:00
北海道 北海道新聞 北大など感染症研究拠点に指定 5年で38億円上限に補助 文科省 https://www.hokkaido-np.co.jp/article/722419/ 文部科学省 2022-08-26 19:07:00
マーケティング MarkeZine 【視聴無料】実務家目線で考えるデジタル×ブランディングのあり方 http://markezine.jp/article/detail/39840 視聴 2022-08-26 19:15: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件)