投稿時間:2022-10-14 22:35:02 RSSフィード2022-10-14 22:00 分まとめ(37件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Startups Blog How Latino startup founders are advancing healthcare equity https://aws.amazon.com/blogs/startups/how-latino-startup-founders-are-advancing-healthcare-equity/ How Latino startup founders are advancing healthcare equityAs with all best forms of innovation great ideas stem from true need In Mexico there is a need for an equitable efficient and sustainable healthcare system Latino startup founders are addressing this need and advancing healthcare equity by leveraging artificial intelligence AI to drive better patient outcomes 2022-10-14 12:38:51
python Pythonタグが付けられた新着投稿 - Qiita pythonを使ってzabbixのホストグループを全て取得する https://qiita.com/ke_honda/items/550c780904735a7b190f filter 2022-10-14 21:45:51
js JavaScriptタグが付けられた新着投稿 - Qiita IoTプラットフォームの「obniz」が IoTブロックの「MESH」に対応したので軽く試してみる【MESH-100BU ボタンブロックでのお試し】 https://qiita.com/youtoy/items/16d608cb79fc72c3bc5c meshbu 2022-10-14 21:48:13
Azure Azureタグが付けられた新着投稿 - Qiita リソース正常性アラート出たらメール通知できないかなって話 https://qiita.com/watyanabe164/items/69e89e30ebf510e3327a 通知 2022-10-14 21:40:41
海外TECH MakeUseOf The 5 Best Tesla Safety Features https://www.makeuseof.com/the-best-tesla-safety-features/ featuresthey 2022-10-14 12:30:14
海外TECH MakeUseOf How to Leave the macOS Ventura Beta Without Downgrading Your Mac https://www.makeuseof.com/leave-macos-ventura-beta-without-downgrading/ How to Leave the macOS Ventura Beta Without Downgrading Your MacTesting the macOS Ventura beta is fun for a while but you may want to revert to the stable channel when Apple rolls out the final version 2022-10-14 12:15:14
海外TECH DEV Community Send contract address messages from Alchemy to a PostgreSQL database https://dev.to/buildable/send-contract-address-messages-from-alchemy-to-a-postgresql-database-26pp Send contract address messages from Alchemy to a PostgreSQL databaseWith nearly transactions processed on Ethereum every second you ll likely want to securely store details and activities on your web contract address in a database That s exactly what you will learn in this article We ll go over how to send contract or wallet address activity data to a PostgreSQL database using Buildable s Node SDK PrerequisitesBefore we get started you ll need the following to complete this tutorial A Buildable accountAn Alchemy accountA PostgreSQL databaseA contract address Creating an Alchemy connectionInside your Buildable account navigate to the Connection tab and hit the  New button You ll see a list of rd party apps and from this list select Alchemy Fill in your Alchemy credentials and hit Connect Next we subscribe to the required event For this tutorial let s subscribe to ADDRESS ACTIVITY event If you do not have a Buildable account yet get started for free here Setting up your Buildable Secret KeyNow we need to create a Buildable secret key that we will use in our NodeJS project To generate a secret key head over to the Settings page From the left panel select Secret Keys and create a new one Copy and save this secret key as we ll be using it shortly Adding environmental variablesIt s now time to add in our environmental variables In your NodeJS project create a env file and define the environmental variables used in our app Do you have the secret key you created earlier in Buildable Go ahead and paste it in as your BUILDABLE SECRET KEY You ll also want to add the environmental variables from your PostgreSQL database Creating a table in our PostgreSQL databaseSince we ll be inserting activity records into a table in our PostgreSQL database let s go ahead to create this table Call the table crypto address activity Each ADDRESS ACTIVITY event from Alchemy returns the following payload Network The network of the activityActivity An array of objects with address activitySo right in our table we add the following columns network The network of the contract addressfrom The from contract addressto The to contract addressamount The amount of the crypto assetasset The crypto asset Connecting the database to your projectIn our NodeJS project we ll connect our PostgreSQL database using Knex So let s install knex and postgress by running npm install knex save and npm install pg Now create an index js file and connect using the following code const database await knex client postgresql connection host process env POSTGRESQL HOST user process env POSTGRESQL USERNAME password process env POSTGRESQL PASSWORD database process env POSTGRESQL DATABASE port process env POSTGRESQL PORT Listening to messages from AlchemyWe need to listen for the messages that Alchemy will emit to Buildable Of course to help us achieve this let s install Buildable s Node SDK into our app by running npm install buildable messages Now in our code we can do the following Create a Buildable client that listens to messages emitted from AlchemySpecify the message that should be listened toDefine the PostgreSQL table to insert this message events intoconst knex require knex const createClient require buildable messages Create Buildable Clientconst client createClient process env BUILDABLE SECRET KEY Message name to listen toconst MESSAGE NAME ADDRESS ACTIVITY PostgreSQL table name to insert records intoconst POSTGRESQL TABLE NAME crypto address activity Finally we configure a listener that listens to the messages from Alchemy const listenerConfig platform alchemy label alchemy app Connection nametxKey postgresql record created Inserting records into PostgreSQL databaseAt this point we re getting the ADDRESS ACTIVITY event from Alchemy and we need to insert these data as records into our PostgreSQL database Listen to address activity messageclient on MESSAGE NAME async payload event gt const network activity payload Create DB records const records activity map record gt network from record fromAddress to record toAddress amount record value toString asset record asset Insert records into PostgreSQL await database crypto address activity insert records return records listenerConfig Now we ve completed the setup and you can be confident all your wallet address activity will get sent to your database as below Here s the final code for reference const knex require knex const createClient require buildable messages Create Buildable Clientconst client createClient process env BUILDABLE SECRET KEY Message name to listen toconst MESSAGE NAME ADDRESS ACTIVITY PostgreSQL table name to insert records intoconst POSTGRESQL TABLE NAME crypto address activity const listenerConfig platform alchemy label alchemy app Connection name txKey postgresql record created async function main const database await knex client postgresql connection host process env POSTGRESQL HOST user process env POSTGRESQL USERNAME password process env POSTGRESQL PASSWORD database process env POSTGRESQL DATABASE port process env POSTGRESQL PORT Listen to address activity message client on MESSAGE NAME async payload event gt const network activity payload Create DB records const records activity map record gt network from record fromAddress to record toAddress amount record value toString asset record asset Insert records into PostgreSQL await database POSTGRESQL TABLE NAME insert records return records listenerConfig main catch console error Simplify your Alchemy streaming process with BuildableWith this tutorial completed you ll begin to see details of your contract address activity populate in your PostgreSQL database If you want to subscribe to multiple events from multiple wallet addresses that s no problem Buildable offers you the flexibility to do that as well Now go ahead and explore all you want Have thoughts or questions Please reach out via Twitter or join our Discord community 2022-10-14 12:51:37
海外TECH DEV Community In One Minute : Postman https://dev.to/rakeshkr2/in-one-minute-postman-1dbc In One Minute PostmanPostman is an API platform for developers to design build test and iterate their APIs As of April Postman reports having more than million registered users and open APIs which it says constitutes the world s largest public API hub The company is headquartered in San Francisco and maintains an office in Bangalore where it was founded In Postman was ranked on the Forbes Cloud list Postman started in as a side project of software engineer Abhinav Asthana who wanted to simplify API testing while working at Yahoo Bangalore He launched Postman as a free app in the Chrome Web Store As the app s usage grew Abhinav recruited former colleagues Ankit Sobti and Abhijit Kane to help create Postman Inc The three co founders lead the company today with Abhinav serving as CEO and Sobti as CTO Official Website 2022-10-14 12:44:28
海外TECH DEV Community What should my five year roadmap look like? https://dev.to/sloan/what-should-my-five-year-roadmap-look-like-33cg What should my five year roadmap look like This is an anonymous post sent in by a member who does not want their name disclosed Please be thoughtful with your responses as these are usually tough posts to write Email sloan dev to if you d like to leave an anonymous comment or if you want to ask your own anonymous question Just wondering if anyone has any insight into a year roadmap Was asked recently in an interview and I didn t have a question I m a junior backend dev and have been for about years Would love any guidelines for a career plan 2022-10-14 12:40:47
海外TECH DEV Community Brewlet the Missing Menubar Item for Homebrew https://dev.to/hacksore/brewlet-the-missing-menubar-item-for-homebrew-3a65 Brewlet the Missing Menubar Item for HomebrewIf you re a macOS user and you want to make sure you are keeping your software updated check out Brewlet With this tool you can see what packages need to be updated right from the comfort of the menubar It even supports notifications to periodically inform you to take action Happy brewing friends 2022-10-14 12:16:04
海外TECH DEV Community Efficient code review https://dev.to/vearutop/efficient-code-review-3p50 Efficient code reviewCode review can be a lengthy and stressful process especially if change is complex If the change in question is very important and may have severe consequences it is important to weigh diverse input and to arrive at an agreement or a reasonable compromise Addressing valid concerns can reduce the risks of introducing a change Sometimes code review turns into an arena with clashes of strong opinions this is not always necessary Code review takes resources that could have been spent in development What does it bring in return Meaningfulness reviewer can check that change makes sense from both problem and solution standpoints Correctness reviewer can check that code change is sufficiently tested and does not have obvious logical flaws typos misspells obsolete documentation Safety reviewer can flag malicious obscure or unreliable code Suitability reviewer can check if the change meets performance expectations reasonably utilizes available resources and does not conflict with already existing code Consistency reviewer can flag code that violates project conventions and or common best practices Knowledge reviewer and contributor can learn from each other by asking questions about particular decisions or by suggesting alternatives All the checks above are usually the best effort to the best knowledge of a reviewer because doing a thorough and comprehensive assessment may be prohibitively expensive Scope Of a ChangeSmaller changes are easier to manage Small atomically correct changes are usually less risky Small changes are easier to review and comprehend Small changes are not always feasible to deliver especially in code with tight coupling between the components but they are something to strive for Pull request change set should have a primary goal clearly articulated in description If code changes are directly relevant to the primary goal that usually allows to reach a minimal acceptable size of changes It might be tempting to put more changes in to follow boy scout rule But this bears risks of unbounded growth which may delay the primary goal delivery or even make the whole change set too big for a confident review If an improvement idea arises during code review and if it does not directly contribute to the primary goal it is worth considering delivering such improvement as a separate change Suggestions And Change RequestsApart from clarification questions code review can end with approval suggestions and change requests Change requests are blocking pull requests from being merged A change request should indicate a reason why original changes are not ready to be merged Change requests should be used to address insufficient meaningfulness correctness safety suitability and consistency core properties If those properties are not violated suggestions are preferred Suggestions as opposed to change requests do not block pull requests from being merged They invite pull request authors to consider alternative solutions or additional changes that may be beneficial from reviewer perspective Suggestions can convey opinions on naming layout design patterns and other things that can not be backed by existing team conventions Suggestions help to bring different perspectives in a friendly way and are often accepted by pull request authors However pull request authors have a right to politely decline a suggestion if they think it does not bring  enough value for the risks growth of scope unclear impact on core properties Declined suggestions can still be delivered in a separate pull request to avoid scope creep and they can pass through a separate code review AttitudeMiscommunications and misunderstanding can happen often They can happen even more often in a diverse team where people have their own biases and cultural background Miscommunication is harmful from being just counter productive time spending to a more severe issue when feelings are hurt It is very important to have positive assumptions If a person is having negative preliminary bias or negative assumptions such bias can color messages with neutral original intent into offensive ones and can even lead to painful escalations While we re all people with emotions pull request is a technical ground sticking to technical language and technical argumentation together with explicit articulation can help to reduce miscommunications If you feel offended by a message take time to calm down and re read the context with an effort to discover positive neutral intent There is a high chance that this was the original intent conveyed by the author Code review is a collaboration tool we re doing it to be more successful as a team The best outcome of a review is a quick and confident approval without any suggestions such cases usually indicate a high level of harmony in a team Code review is not the best place to exercise one s own importance by nitpicking or asking for cosmetic out of scope changes If  the suggestion feels important but it meets justified resistance from a pull request owner and or other reviewers it might be a good idea to submit such a suggestion as a separate pull request Try to avoid making suggestions change requests based solely on opinion Opinions can vary from one person to another and they can easily be a point of locked disagreement Opinion of one person is not necessarily more important than the opinion of another person so there is a fundamental issue that may need the involvement of an authorized arbiter Technical argumentation with pros and cons as opposed to just opinion can lead to a balanced compromise or consensus Rules And PrinciplesAll parties are egoless and committed to reach ideal handlingAll parties take review process as an opportunity to learnAll parties are trying to communicate in timely manner to avoid blocking each otherReview process does not take longer time than necessaryContributor articulates the problem to be solved comprehensible by reviewerIf problem is a bug contributor creates a test to reproduce the bug with CI before pushing a fixContributor makes changes that are directly relevant to the problem described in PRContributor avoids unnecessary changesContributor formats changes in way that is consistent with existing codeContributor applies boy scout rule when that does not violate above pointsContributor creates additional tests to cover new behaviorContributor updates the tests to match changed behaviorContributor makes sure the problem is solved best effort Contributor is ready to provide justification for every change that was madeReviewer comprehends PR description and the problemIf reviewer has a doubt or lack of understanding they request a clarificationIf clarification is requested contributor reasonably elaborates the topicReviewer checks that problem of PR is worth solvingReviewer checks changes in tests to confirm that the goal of PR is achievedReviewer checks changes in tests to confirm there are no unnecessary changes in behaviorReviewer checks that changes do not introduce a security performance issue best effort Reviewer checks that changes do not have logical conflict with existing code best effort Reviewer makes helpful change requests if necessaryReviewer is ready to provide justification for change requestHelpful change request is suggestive precise and relevant to the problem of PRReviewer avoids unhelpful change requestsUnhelpful change request is broad opinionated or not relevant to the problem of PRContributor can challenge any change requestIf justification of change request is shown to be weak change request can be discardedIf helpfulness of a change request is questionable reviewer can elaborate it to clearly helpful or it can be discardedReviewer can challenge any change of PRIf justification of change is shown to be weak contributor has to revert the changeIf there are helpful change requests that could not be discarded contributor has to address them with PR changes See AlsoCode Review Developer Guide 2022-10-14 12:15:52
Apple AppleInsider - Frontpage News Zuckerberg takes on Apple, AI takes on Steve Jobs, and Ask Apple Developer launches https://appleinsider.com/articles/22/10/14/zuckerberg-takes-on-apple-ai-takes-on-steve-jobs-and-ask-apple-developer-launches?utm_medium=rss Zuckerberg takes on Apple AI takes on Steve Jobs and Ask Apple Developer launchesIf you only listen to one podcast listen to this week s AppleInsider Podcast But if you listen to two you ve got to check out the show that uses AI to make it sound as if Steve Jobs is alive again The Meta Quest Pro in simulated useAfter all the launches pre orders and finally shipping products we ve had from Apple lately it was a quiet week for new devices ーexcept from Meta Read more 2022-10-14 12:37:48
海外TECH Engadget Engadget Podcast: Microsoft’s Surface event, Pixel reviews and the Quest Pro headset https://www.engadget.com/engadget-podcast-surface-pro-laptop-studio-pixel-7-pro-pixel-watch-review-meta-quest-pro-123026206.html?src=rss Engadget Podcast Microsoft s Surface event Pixel reviews and the Quest Pro headsetWhat a week This episode Cherlynn Devindra and Engadget s Sam Rutherford dive into everything we learned at Microsoft s Surface event No there was no new Surface Duo or Neo and the actual fresh hardware was mostly incremental We also reviewed the Pixel Pro and Pixel Watch and Sam had some hands on time with the latest Quest VR headset As if that wasn t enough there s some other news from Samsung Chromebooks and more Listen below or subscribe on your podcast app of choice If you ve got suggestions or topics you d like covered on the show be sure to email us or drop a note in the comments And be sure to check out our other podcasts the Morning After and Engadget News Subscribe iTunesSpotifyPocket CastsStitcherGoogle PodcastsTopicsSurface Studio Surface Laptop and Surface Pro Microsoft s new Designer app is powered by Dall E Pixel and Pixel Pro review Pixel Watch review Sam Rutherford s Meta Quest Pro hands on thoughts Other news Working on Pop culture picks Video StreamCreditsHosts Cherlynn Low and Devindra HardawarGuest Sam RutherfordProducer Ben EllmanLivestream producers Julio BarrientosGraphics artists Julio Barrientos Brian OhMusic Dale North and Terrence O Brien 2022-10-14 12:30:26
ニュース BBC News - Home Kwasi Kwarteng: PM’s vision was right, says sacked chancellor https://www.bbc.co.uk/news/uk-politics-63257058?at_medium=RSS&at_campaign=KARANGA kwarteng 2022-10-14 12:39:32
ニュース BBC News - Home Royal Mail to axe up to 10,000 jobs as losses rise https://www.bbc.co.uk/news/uk-63253687?at_medium=RSS&at_campaign=KARANGA redundancies 2022-10-14 12:51:56
ニュース BBC News - Home Covid cases rise as one in 37 has virus in UK https://www.bbc.co.uk/news/health-63257722?at_medium=RSS&at_campaign=KARANGA wales 2022-10-14 12:16:05
ニュース BBC News - Home Elon Musk under federal investigation over Twitter deal https://www.bbc.co.uk/news/technology-63254883?at_medium=RSS&at_campaign=KARANGA court 2022-10-14 12:30:36
ニュース BBC News - Home Who is Kwasi Kwarteng? Former chancellor who was seen as key Truss ally https://www.bbc.co.uk/news/business-62796213?at_medium=RSS&at_campaign=KARANGA political 2022-10-14 12:44:03
ニュース BBC News - Home What was in the mini-budget and what has changed? https://www.bbc.co.uk/news/business-62920969?at_medium=RSS&at_campaign=KARANGA stamp 2022-10-14 12:11:04
ニュース BBC News - Home Markets rally on talk of mini-budget U-turn https://www.bbc.co.uk/news/business-63243918?at_medium=RSS&at_campaign=KARANGA economic 2022-10-14 12:14:01
ニュース BBC News - Home What is corporation tax and who has to pay it? https://www.bbc.co.uk/news/business-63255747?at_medium=RSS&at_campaign=KARANGA corporation 2022-10-14 12:17:53
ニュース BBC News - Home England in Australia: Third Twenty20 abandoned because of rain in Canberra https://www.bbc.co.uk/sport/cricket/63254369?at_medium=RSS&at_campaign=KARANGA England in Australia Third Twenty abandoned because of rain in CanberraEngland miss the chance to complete a series clean sweep over Australia as their third T in Canberra is abandoned because of rain 2022-10-14 12:41:39
北海道 北海道新聞 摂食障害の小中高生急増 最大2倍超、学会調査 https://www.hokkaido-np.co.jp/article/745605/ 摂食障害 2022-10-14 21:30:00
北海道 北海道新聞 真狩サツマイモ80トン収穫 ベジタブルワークス 21年比8倍 寒冷地向けに工夫 https://www.hokkaido-np.co.jp/article/745454/ 輸出 2022-10-14 21:26:21
北海道 北海道新聞 北糖本別、苦い最終年 ビート病害で収量減、砂糖減産も必至 https://www.hokkaido-np.co.jp/article/745601/ 北海道糖業 2022-10-14 21:24:00
北海道 北海道新聞 スピード女子の泉が準決勝進出 体操パルクール世界選手権開幕 https://www.hokkaido-np.co.jp/article/745500/ 世界選手権 2022-10-14 21:21:55
北海道 北海道新聞 会見中止要求は「親心から」 旧統一教会が声明 https://www.hokkaido-np.co.jp/article/745596/ 世界平和統一家庭連合 2022-10-14 21:19:00
北海道 北海道新聞 十勝管内192人感染 新型コロナ https://www.hokkaido-np.co.jp/article/745594/ 十勝管内 2022-10-14 21:18:00
北海道 北海道新聞 北朝鮮また日本海に砲射撃80発 南北緊張、激化の恐れ https://www.hokkaido-np.co.jp/article/745593/ 参謀本部 2022-10-14 21:18:00
北海道 北海道新聞 恩恵と懸念 大間複雑 原発工事再開2年延期 「今が一番都合いい」 https://www.hokkaido-np.co.jp/article/745588/ 大間原発 2022-10-14 21:16:00
北海道 北海道新聞 アッケシソウ 試験栽培地で見頃 厚岸湖畔 https://www.hokkaido-np.co.jp/article/745539/ 試験 2022-10-14 21:16:22
北海道 北海道新聞 美利河の金山遺跡、北海道遺産に 歓喜の今金町教委「ツアー実現したい」 https://www.hokkaido-np.co.jp/article/745585/ 北海道遺産 2022-10-14 21:08:00
北海道 北海道新聞 子育てクーポン発行、政府が支援 0~2歳児いる世帯が念頭 https://www.hokkaido-np.co.jp/article/745586/ 関連 2022-10-14 21:09:00
北海道 北海道新聞 国縫トンネル 重機にわくわく 児童ら見学 https://www.hokkaido-np.co.jp/article/745584/ 北海道新幹線 2022-10-14 21:08:00
北海道 北海道新聞 反スカーフデモで子供23人死亡 イラン、人権団体「残忍な弾圧」 https://www.hokkaido-np.co.jp/article/745582/ 人権団体 2022-10-14 21:07:00
北海道 北海道新聞 日本、豪州Aに競り勝つ ラグビー強化試合、1勝2敗 https://www.hokkaido-np.co.jp/article/745579/ 強化試合 2022-10-14 21:05:00
IT 週刊アスキー 【今週のEPIC無料ゲーム】不気味な森からの脱出を目指すサバイバルホラー『Darkwood』が登場! https://weekly.ascii.jp/elem/000/004/109/4109087/ darkwood 2022-10-14 21:40: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件)