投稿時間:2022-11-22 09:44:54 RSSフィード2022-11-22 09:00 分まとめ(51件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] ベイシアの新業態「Foods Park」 誕生、店の特徴は? https://www.itmedia.co.jp/business/articles/2211/22/news061.html foodspark 2022-11-22 08:48:00
IT ITmedia 総合記事一覧 [ITmedia エグゼクティブ] 建設業界、eスポーツプレーヤーに熱視線 建機の遠隔操作に技を 若手技能者確保へ https://mag.executive.itmedia.co.jp/executive/articles/2211/22/news078.html itmedia 2022-11-22 08:27:00
AWS AWS Partner Network (APN) Blog Healthier Data and Trusted Insights with Collibra Data Quality on AWS https://aws.amazon.com/blogs/apn/healthier-data-and-trusted-insights-with-collibra-data-quality-on-aws/ Healthier Data and Trusted Insights with Collibra Data Quality on AWSWe know that data can help organizations get closer to customers and unlock new revenue streams But in order to monetize data companies need to be able to trust it Collibra Data Intelligence Cloud helps organizations build trust in data across any source for any user Learn how Collibra Data Quality DQ on AWS is core to this solution enabling organizations to get the added benefit of cloud scale combined with a rich set of features 2022-11-21 23:17:45
AWS AWS Desktop and Application Streaming Blog Build an enterprise cost and usage dashboard for Amazon WorkSpaces https://aws.amazon.com/blogs/desktop-and-application-streaming/build-an-enterprise-cost-and-usage-dashboard-for-amazon-workspaces/ Build an enterprise cost and usage dashboard for Amazon WorkSpacesCustomers often ask how they can gain insight into their Amazon WorkSpaces cost and usage They d like to query and visualize their cost and usage data for many reasons Understand how many hours per month each individual Amazon WorkSpace is actually used WorkSpaces with low or no usage at all can then be terminated based … 2022-11-21 23:01:45
python Pythonタグが付けられた新着投稿 - Qiita Pythonの仮引数の扱いの注意点を可視化してみた https://qiita.com/asobinin_kinsan/items/2ec9f6ba4b6a00824db1 書き込み 2022-11-22 08:56:57
技術ブログ Developers.IO SCPを使ってRoute 53からのドメイン購入操作を禁止してみた https://dev.classmethod.jp/articles/aws-deny-buy-domain/ awsorganizations 2022-11-21 23:38:55
海外TECH DEV Community The easiest solution to code review bottlenecks? Estimated review time on pull requests https://dev.to/linearb/the-easiest-solution-to-code-review-bottlenecks-estimated-review-time-on-pull-requests-4m1e The easiest solution to code review bottlenecks Estimated review time on pull requests TL DRThe pull request review process is a pain Data shows this is a major bottleneck Pull request review speed amp quality can be improved by adding context to pull requests like estimated time to reviewReview automation tools like gitStream can add context for reviewer Data shows an insane bottleneck in code reviewsThe code review and pull request process continues to be a major bottleneck for developers and dev teams In a recent study LinearB inspected PRs and found the following that Pull requests are waiting on average days before being picked up Studies show pull requests amp code review pickups are the no bottleneck in cycle timeAlthough there have been significant gains in coding times and deployment times the amount of time it takes to start a pull request review and the amount of time it takes to complete a pull request review continue to disappoint The good news There are things we can all do to break this bottleneck Context that allows developers to easily pick up pull requests is a game changerOne key and there are many keys to improving both pull request review speed and quality is providing as much up front context to the reviewer as possible Examples of context proven to improve pickup time Estimated Review TimeLabeling low risk changes like Documentation or Test changes onlyLabeling high risk changes like Core services API Database or SecurityTicket or Issue linksTest coverage impact What happens when estimated time of review ETR is added to pull requests Plain and simple When a pull requests is labeled with how long it will take to review it be it minutes or mixtures developers Are more likely to pick up pull requests quicklyAre more likely to have have their reviews completed quicklyThe longer a developer assumes a code review will take the longer they will take to respond to it Why do pull requests with ETR get picked up faster and reviewed quickly Developers are knowledge workers not cogs in a machine By simply adding estimated time to review you accommodate cognitive biases we all have Specifically Knowing the review time allows the reviewer to schedule the best time to start the review The key is to find a time that allows for non interruption Cognitive reload occurs when a PR review is started and then not completed typically due to interruption This causes a cognitive reload for the reviewer starting the review over close to the beginning and extending the review time Conversely the review can be rushed at the expense of quality Fitting a minute review into a minute window results in quality gaps Two ways to add ETR to your pull requestsCreate a template standard like this orUse PR Review Automation like gitStream see belowTo get started you need to install gitStream on your repository from GitHub marketplace and add workflow files to your repo gitstream cm github action file The default gitstream cm file has estimated time to review already setup for you but let s dig into it a bit to see what it s actually doing automations estimated time to review if true run action add label v args label branch estimatedReviewTime min review Let s look at this snippet of yaml in the gitstream cm file automations keyword sets up the listing where all your automations will live and you can have an unlimited number of them The next line is where you name your automation in this case it s estimated time to review which will add an estimated time to review label on every PR run through gitStream Next is our conditional in this case we just need it to be true but you can use regular expressions line counts and a lot more here to check the code in the pr and then act on it After the conditional we need to run some actions from the conditions being met In this case we run the add label v action which will add the label to the PR based on the arguments we give it In the arguments args we provide a string that adds in the estimated time to review as the label to the PR How does gitStream determine ETR The estimated review time is predicted using a machine learning model developed in LinearB and trained on millions of PRs It incorporates features including The size of the PR including details of additions deletions etc The file types that were modified and the extent of the changes on these filesThe codebase repository involved and the familiarity of the PR issues with the code baseThe review time prediction is then bucketed into a useful time range e g minutes to provide the final estimateNow that we have our estimated time to review let s mark what type of PR this can be Let s do this by adding some color to the labels We can also apply color coded labels providing a visual cue to help reviewers let s also add some code to hold state for the estimated time to review so it updates The code below adds this functionality By adding the calc we can get the updated estimatedReviewTime as it is updated per this branch automations estimated time to review if true run action add label v args label calc etr min review color E if calc etr gt else FBBD if calc etr gt else A To simplify the automation this calculation is placed under a unique YAML key The result is assigned to calc etr which is used in the automation above You can add as many keys as you like calc etr branch estimatedReviewTime Now you know how to add context to your PRs with gitStream this article just scratches the surface of what is possible please check out the gitStream docs to learn more In future posts we ll dive into using gitStream to do code review automation and having gitStream help find the right reviewers for your PR with reviewer automation Setup gitStream on your GitHub Repo today Learn more here 2022-11-21 23:29:43
Cisco Cisco Blog Embrace Your Possible at Cisco Live Melbourne https://blogs.cisco.com/customerexperience/embrace-your-possible-at-cisco-live-melbourne Embrace Your Possible at Cisco Live MelbourneTake a look at what is coming up for Cisco Customer Experience CX at Cisco Live Melbourne Find out how we are bringing the best of human and digital intelligence together to accelerate your business outcomes 2022-11-21 23:39:27
海外科学 NYT > Science In Women and Nonbinary People, Monkeypox Cases May Have Been Missed https://www.nytimes.com/2022/11/21/health/monkeypox-women-nonbinary.html In Women and Nonbinary People Monkeypox Cases May Have Been MissedDespite monkeypox fading from public attention scientists are still learning how it spreads ーincluding without sexual contact or any symptoms 2022-11-21 23:13:56
海外科学 NYT > Science The Nature Conservancy Buys Insurance to Protect Hawaii’s Coral Reefs https://www.nytimes.com/2022/11/21/climate/nature-conservancy-insurance-hawaii-coral-reef.html The Nature Conservancy Buys Insurance to Protect Hawaii s Coral ReefsIf worsening coastal storms damage the reefs the Nature Conservancy will get a payout and use the money to repair the coral ーwork that state officials can t afford to do 2022-11-21 23:02:30
金融 金融総合:経済レポート一覧 FTX破綻で顧客は資産を取り戻すことができるか?:法整備が暗号資産の信頼回復の第一歩:木内登英のGlobal Economy & Policy Insight http://www3.keizaireport.com/report.php/RID/517318/?rss lobaleconomypolicyinsight 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 FX Daily(11月18日)~ドル円、140円を挟んだ攻防続く http://www3.keizaireport.com/report.php/RID/517319/?rss fxdaily 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 グローバルな金融ルールと地域の特性 http://www3.keizaireport.com/report.php/RID/517321/?rss 大和総研 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 サステナブルファイナンスの潮流(1)~ESG投資を巡る国内の動向:産業企業情報 http://www3.keizaireport.com/report.php/RID/517324/?rss 中小企業 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 アジア主要通貨・株価の動き(11月18日まで) http://www3.keizaireport.com/report.php/RID/517328/?rss 国際金融情報センター 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 【動画】株式再上場の実務~再上場特有の審査項目および対応をご紹介 http://www3.keizaireport.com/report.php/RID/517333/?rss 項目 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 税金読本(4-1)特定口座の仕組み http://www3.keizaireport.com/report.php/RID/517334/?rss 大和総研 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 2022年欧州中央銀行・イングランド銀行・日本銀行共催ワークショップ:金研ニュースレター http://www3.keizaireport.com/report.php/RID/517338/?rss 日本銀行 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 リース市場に関する調査を実施(2022年)【概要】~2022年度のリース取扱高は前年度比115.0%となる4兆8,500億円へと復調を予測 http://www3.keizaireport.com/report.php/RID/517343/?rss 矢野経済研究所 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 オーストラリア マーケット動向(2022/11/21)【隔週版】~ここ2週間の豪ドルの対円レートは、下落。 http://www3.keizaireport.com/report.php/RID/517349/?rss 三井住友 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 ウィークリー・マーケット 2022年11月第4週号 http://www3.keizaireport.com/report.php/RID/517350/?rss 日興アセットマネジメント 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 週間市場レポート(2022年11月14日~11月18日)~日本の株式・債券市場、米国の株式市場、外国為替市場 http://www3.keizaireport.com/report.php/RID/517351/?rss 債券市場 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 ウィークリーレポート 2022年11月21日号~米国株式は概ね横ばい。 http://www3.keizaireport.com/report.php/RID/517352/?rss 三井住友トラスト 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 投資の視点:年金コンサルを規制対象に~LDI運用戦略を巡り英規制当局 http://www3.keizaireport.com/report.php/RID/517353/?rss 規制対象 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 FOMC議事要旨に注目、ドルはやや軟調か / NZドル:NZ中銀は利上げペース加速か:Weekly FX Market Focus http://www3.keizaireport.com/report.php/RID/517354/?rss weeklyfxmarketfocus 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 【石黒英之のMarket Navi】米住宅市場の調整はインフレ鈍化の支えに~中古住宅販売は過去最長の減少局面... http://www3.keizaireport.com/report.php/RID/517355/?rss marketnavi 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 日本株~200日線が上向く、年初来プラス圏への浮上も。2023年は「卯跳ねる」 http://www3.keizaireport.com/report.php/RID/517356/?rss 発表 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 政策金利の終着点は見えてきた。ただしその先は視界不良:Market Flash http://www3.keizaireport.com/report.php/RID/517357/?rss marketflash 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 日本企業の業績~現在の状況と今後の見通しについて:市川レポート http://www3.keizaireport.com/report.php/RID/517387/?rss 三井住友 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 投資環境ウィークリー 2022年11月21日号【日本、米国、欧州、中国】インフレ鈍化への期待と景気後退への不安が入り混じる金融市場 http://www3.keizaireport.com/report.php/RID/517388/?rss 三菱ufj 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 【注目検索キーワード】オルタナティブデータ http://search.keizaireport.com/search.php/-/keyword=オルタナティブデータ/?rss 検索キーワード 2022-11-22 00:00:00
金融 金融総合:経済レポート一覧 【お薦め書籍】世界2.0 メタバースの歩き方と創り方 https://www.amazon.co.jp/exec/obidos/ASIN/4344039548/keizaireport-22/ 宇宙開発 2022-11-22 00:00:00
金融 日本銀行:RSS FSBレポ統計の日本分集計結果 http://www.boj.or.jp/statistics/bis/repo/index.htm 集計 2022-11-22 08:50:00
ニュース @日本経済新聞 電子版 串カツ田中とインフォマートの共同出資会社が開発した飲食店の運営管理アプリ。店長らがアルバイトに指示出しする手間を削減できる「仮想マネジャー」。外食の人手不足対策につなげます。(無料記事です) https://t.co/wRBkjoo2al https://twitter.com/nikkei/statuses/1594840613509554177 串カツ田中とインフォマートの共同出資会社が開発した飲食店の運営管理アプリ。 2022-11-21 23:50:07
ニュース @日本経済新聞 電子版 串カツ田中、アプリが「店舗マネジャー」 人手不足対策 https://t.co/1lgA06i9cq https://twitter.com/nikkei/statuses/1594839229015552000 串カツ田中 2022-11-21 23:44:37
ニュース @日本経済新聞 電子版 RT @nikkei: JAXAの探査機「オモテナシ」、月着陸を断念 https://t.co/L8sVl4J7yI https://twitter.com/nikkei/statuses/1594839084106919938 rtnikkeijaxa 2022-11-21 23:44:02
ニュース @日本経済新聞 電子版 イングランド6得点圧勝 ベリンガムやサカら若さ躍動 https://t.co/YCG06wqYRp https://twitter.com/nikkei/statuses/1594838000596574208 若さ 2022-11-21 23:39:44
ニュース @日本経済新聞 電子版 2023年8月の開業を目指して試運転が始まった芳賀・宇都宮LRT(次世代型路面電車)が19日に脱線事故。ポイントの移設やカーブでの脱線防止など安全対策が求められます。 https://t.co/f7NjnPKZfK https://t.co/SDvlQCFS7D https://twitter.com/nikkei/statuses/1594836826367279106 2022-11-21 23:35:04
ニュース @日本経済新聞 電子版 梅田発・池袋着の「ヨドバシ鉄道」、敗戦百貨店が成長源 https://t.co/dpDHJAhUYC https://twitter.com/nikkei/statuses/1594833453618380800 鉄道 2022-11-21 23:21:40
ニュース @日本経済新聞 電子版 マクロ経済スライドとは 財源の範囲に給付抑制 #日経きょうのことば https://t.co/9VKiNK4vM4 https://twitter.com/nikkei/statuses/1594833050726277120 財源 2022-11-21 23:20:04
ニュース @日本経済新聞 電子版 「マクラーレンが最も重要視したのはドライバーエンゲージメントだ」。初の量産PHEV「アルトゥーラ」の1番の挑戦は徹底的な軽量化。パワートレーンの電動化による重量増を打ち消しました。 https://t.co/xfT4EP1PbG https://twitter.com/nikkei/statuses/1594833046557102083 2022-11-21 23:20:03
ニュース @日本経済新聞 電子版 日経平均、休場前で値動き限定的か(先読み株式相場) https://t.co/tOMJBQgY08 https://twitter.com/nikkei/statuses/1594831967190921217 株式相場 2022-11-21 23:15:46
ニュース @日本経済新聞 電子版 就活テスト替え玉受検疑い、28歳男逮捕 https://t.co/CNkq1XogW3 https://twitter.com/nikkei/statuses/1594831783950000144 疑い 2022-11-21 23:15:02
ニュース @日本経済新聞 電子版 「多様さ認めるデンマーク、家族の形を37種類に分類」 「フランスなど婚外子の割合が高いほど子供を産める」 日本は伝統的家族観から多様化が進まず、広がったのは未婚化でした。 【人口と世界 わたしの選択①】 ▶特集ページへ… https://t.co/iR3fxo7oIk https://twitter.com/nikkei/statuses/1594829771237728307 「多様さ認めるデンマーク、家族の形を種類に分類」「フランスなど婚外子の割合が高いほど子供を産める」日本は伝統的家族観から多様化が進まず、広がったのは未婚化でした。 2022-11-21 23:07:02
ニュース @日本経済新聞 電子版 インドネシア・ジャワ島で地震、62人死亡 M5.6 https://t.co/EyKnl9ALDW https://twitter.com/nikkei/statuses/1594828676666822656 死亡 2022-11-21 23:02:41
ニュース @日本経済新聞 電子版 【サッカーワールドカップ】イラン選手、国歌歌わず 抗議デモに連帯か https://t.co/xq2pDHr3px https://twitter.com/nikkei/statuses/1594828568747393026 抗議デモ 2022-11-21 23:02:15
海外ニュース Japan Times latest articles Your guide to watching the World Cup from Tokyo https://www.japantimes.co.jp/life/2022/11/22/general/world-cup-2022-watch-guide/ world 2022-11-22 08:00:44
ニュース BBC News - Home Indonesia: Java quake kills 162 and injures hundreds https://www.bbc.co.uk/news/world-asia-63700629?at_medium=RSS&at_campaign=KARANGA hundredsrescuers 2022-11-21 23:20:02
ニュース BBC News - Home Wales at the World Cup: Gareth Bale had 'no doubts' about historic goal against USA https://www.bbc.co.uk/sport/football/63711137?at_medium=RSS&at_campaign=KARANGA Wales at the World Cup Gareth Bale had x no doubts x about historic goal against USAGareth Bale says he had no doubts about taking the penalty which brought Wales first World Cup goal since to seal a draw with the USA 2022-11-21 23:53:57
ビジネス ダイヤモンド・オンライン - 新着記事 破綻のFTX顧客、資産取り戻せず「はらわた煮えくり返る」 - WSJ発 https://diamond.jp/articles/-/313286 顧客 2022-11-22 08:15:00
ビジネス 東洋経済オンライン 「夢追い型の専門学校」から見える進路格差の悲惨 データで見る「夢」は就職に結びつかない現実 | 学校・受験 | 東洋経済オンライン https://toyokeizai.net/articles/-/631520?utm_source=rss&utm_medium=http&utm_campaign=link_back 専門学校 2022-11-22 08: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件)