投稿時間:2023-06-29 22:20:29 RSSフィード2023-06-29 22:00 分まとめ(27件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT InfoQ Presentation: Ubiquitous Caching: A Journey of Building Efficient Distributed and In-Process Caches at Twitter https://www.infoq.com/presentations/trends-caches/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global Presentation Ubiquitous Caching A Journey of Building Efficient Distributed and In Process Caches at TwitterJuncheng Yang discusses three trends in hardware workload and cache usage that shape the design of modern caches By Juncheng Yang 2023-06-29 12:45:00
IT InfoQ Considering Remote Mob Programming In A High Stakes Environment https://www.infoq.com/news/2023/06/mob-programming-high-stakes/?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global Considering Remote Mob Programming In A High Stakes EnvironmentRemote mob programming helped a team in a high stakes environment to be resilient work under pressure and deliver successfully Setting expectations on the first call and being serious about the reasons for doing mob programming ensured that the team kept doing it By Ben Linders 2023-06-29 12:40:00
IT ITmedia 総合記事一覧 [ITmedia エンタープライズ] 「生成AI」を自動化に活用 Automation Anywhereの3つの新サービス https://www.itmedia.co.jp/enterprise/articles/2306/29/news229.html automationanywhere 2023-06-29 21:30:00
IT ITmedia 総合記事一覧 [ITmedia News] 歩道で“ゆっくりモード”を使える電動キックボード ハンドル横も光る 7月1日の改正道交法に合わせてLuupが配備へ https://www.itmedia.co.jp/news/articles/2306/29/news232.html itmedia 2023-06-29 21:20:00
python Pythonタグが付けられた新着投稿 - Qiita Python備忘録 https://qiita.com/towamz/items/7b4fc640beec811e8900 ageformatnameageprintfna 2023-06-29 21:47:21
Ruby Rubyタグが付けられた新着投稿 - Qiita 標準入力の備忘録 https://qiita.com/mainosuke23456/items/75e7ccf64f471065270e etsanswernsplitputsanswer 2023-06-29 21:36:51
Linux Ubuntuタグが付けられた新着投稿 - Qiita AWS EC2(Ubuntu)でapt updateができなかった話 https://qiita.com/daiki7010/items/4a8ba24719f7836f4bf9 amazon 2023-06-29 21:50:08
AWS AWSタグが付けられた新着投稿 - Qiita [祝!]EC2 Instance Connect Endpoint経由でRDS(3389)に接続できた話 https://qiita.com/___nix___/items/f92401855651ad9494ac ecinstanceconnectendpoint 2023-06-29 21:55:23
AWS AWSタグが付けられた新着投稿 - Qiita AWS EC2(Ubuntu)でapt updateができなかった話 https://qiita.com/daiki7010/items/4a8ba24719f7836f4bf9 amazon 2023-06-29 21:50:08
Docker dockerタグが付けられた新着投稿 - Qiita ODMをdockerで試してみる https://qiita.com/taketomsho/items/b9bf4827911de4c6dab4 docker 2023-06-29 21:29:29
海外TECH MakeUseOf What Is Brave’s Off the Record Mode and How Do You Enable It? https://www.makeuseof.com/brave-off-the-record-mode/ incognito 2023-06-29 12:30:18
海外TECH MakeUseOf The 13 Best Free Music Download Sites to Legally Download Music for Free https://www.makeuseof.com/tag/where-to-get-free-music-legally/ The Best Free Music Download Sites to Legally Download Music for FreeHere are several sites where you can download free music without resorting to digital piracy Grow your digital music collection legally 2023-06-29 12:15:28
海外TECH MakeUseOf 6 Benefits of Learning to Code as a UI/UX Designer https://www.makeuseof.com/benefits-learning-to-code-ui-ux-designer/ benefits 2023-06-29 12:15:18
海外TECH DEV Community FaceBook Like Clone With Source Code https://dev.to/brojenuel/facebook-like-clone-with-source-code-1fbe FaceBook Like Clone With Source CodeI d like to share my work with you and what you choose to do with it is completely up to you Without any further delay here are the links Source Code Demo Screen Shots have a nice day 2023-06-29 12:34:12
海外TECH DEV Community AppSync Merged API – Our real project experience as part of our hackathon https://dev.to/aws-builders/appsync-merged-api-our-real-project-experience-as-part-of-our-hackathon-2m96 AppSync Merged API Our real project experience as part of our hackathonAWS released a new feature for GraphQL APIs in May Multiple AppSync APIs can be merged into one overall API Our AI Hackathon gave us the opportunity to test the new Merged API feature in a real world project Why are Merged APIs such a useful feature When designing complex software it is common to break the application into components or microservices Each component has its own API so that it can be developed and deployed independently However when APIs are published or used in front ends it makes sense to provide an aggregated API with services of all components This is possible with the new Merged API feature How to create a Merged API using AWS CDK We first looked at the AppSync documentation in the AWS CDK to see how to create Merged APIs Unfortunately the documentation doesn t include a section on Merged APIs We checked the feature requests and pull requests on the AWS CDK GitHub project However since we did not find any information we determined that Merged APIs are not currently supported by CDK L constructs To get support for this feature in AWS CDK we ve created a feature request in the AWS CDK project So how did we create the Merged APIs CloudFormation already includes support for Merged APIs The documentation describes the attributes and resources which are required Using CDK L constructs we could use these CloudFormation resources to create the Merged API First we created the necessary IAM roles Currently they don t follow the principle of least privilege When Merged APIs are supported in the CDK this should also be considered const role new Role this merged api role props namespace assumedBy new ServicePrincipal appsync amazonaws com roleName merged api role props namespace role addToPolicy new PolicyStatement resources actions appsync const cwRole new Role this MergedAPICWRole assumedBy new ServicePrincipal appsync amazonaws com cwRole addToPolicy new PolicyStatement actions logs CreateLogGroup logs CreateLogStream logs PutLogEvents resources arn aws logs cdk Stack of this region cdk Stack of this account In the GraphQL API the attributes apiType and mergedApiExecutionRoleArn are specific to Merged APIs In addition logging had to be explicitly configured which requires more effort than L constructs const api new CfnGraphQLApi this merged api props namespace authenticationType API KEY additionalAuthenticationProviders authenticationType AMAZON COGNITO USER POOLS userPoolConfig userPoolId props userPool userPoolId awsRegion cdk Stack of this region apiType MERGED name cdk Names uniqueId this mergedApiExecutionRoleArn role roleArn xrayEnabled true logConfig cloudWatchLogsRoleArn cwRole roleArn fieldLogLevel ALL Each source API is assigned to the Merged API using a SourceApiAssociation new CfnSourceApiAssociation this name sourceApiIdentifier graphqlApi apiId mergedApiIdentifier mergedApi attrApiId sourceApiAssociationConfig mergeType AUTO MERGE The first deployment failed After specifying mergeType AUTO MERGE we were able to create the Merged API How did we structure our project Each component is developed as separate CDK stack An additional stack called MergedApiStack includes the Merged API The source APIs are passed to the Merged API Stack using CDK Stack Props This allows us to publish a central AppSync API that includes API methods of all components SummaryBecause of the missing CDK L constructs it was difficult to create the Merged API Otherwise our experience with the Merged API has been very good The Merged API is updated directly and allows us to have one central API for our application What s next We will likely implement an L construct to add support for Merged APIs in the AWS CDK Then our hackathon and community work will also contribute to AWS CDK Who to reach out to Danielle Matt Johannes or myself 2023-06-29 12:09:57
Apple AppleInsider - Frontpage News Apple Vision Pro 'Gaze and Pinch' gesture combo is perfect for AR & VR https://appleinsider.com/articles/23/06/29/apple-vision-pro-gaze-and-pinch-gesture-combo-is-perfect-for-ar-vr?utm_medium=rss Apple Vision Pro x Gaze and Pinch x gesture combo is perfect for AR amp VREven before Apple Vision Pro was announced researchers had been studying the effectiveness of what turned out to be Apple s choice of controls for the headset Apps on Vision ProAs first revealed at WWDC Vision Pro automatically selects whatever a user is looking at in its display And then its surrounding cameras detect when that user makes a pinching movement to effectively tap or click on the object Read more 2023-06-29 12:36:48
Apple AppleInsider - Frontpage News Apple says it already changed its rules enough to satisfy Spotify EU complaint https://appleinsider.com/articles/23/06/29/apple-to-defend-itself-against-spotify-complaint-with-eu?utm_medium=rss Apple says it already changed its rules enough to satisfy Spotify EU complaintThe European Union is to hear Apple s argument on Friday against an anti steering accusation that was initiated by Spotify and could lead to an almost billion fine Spotify s App Store icon left Apple Music right Back in Spotify complained to the EU that Apple was abusing its monopoly by forcing developers to use the App Store s payment system At the same time the music streamer claimed that Apple was also unfairly denying it the ability to inform users of lower prices on its website Read more 2023-06-29 12:42:29
Cisco Cisco Blog Webex first collaboration suite with EU Cloud Code of Conduct Level 3 adherence https://feedpress.me/link/23532/16213419/webex-first-collaboration-suite-with-eu-cloud-code-of-conduct-level-3-adherence Webex first collaboration suite with EU Cloud Code of Conduct Level adherenceWebex by Cisco is the first collaboration and conferencing solution to achieve Level adherence to the EU Cloud Code of Conduct 2023-06-29 12:00:29
海外科学 NYT > Science A Proto-Pizza Emerges From a Fresco on a Pompeii Wall https://www.nytimes.com/2023/06/27/world/europe/pizza-mural-pompeii.html experts 2023-06-29 12:56:41
金融 金融庁ホームページ 資金決済法に基づく払戻手続実施中の商品券の発行者等一覧を更新しました。 https://www.fsa.go.jp/policy/prepaid/index.html 資金決済法 2023-06-29 13:15:00
金融 金融庁ホームページ 鈴木財務大臣兼内閣府特命担当大臣閣議後記者会見の概要(令和5年6月27日)を掲載しました。 https://www.fsa.go.jp/common/conference/minister/2023a/20230627-1.html 内閣府特命担当大臣 2023-06-29 13:15:00
ニュース BBC News - Home Government to appeal asylum ruling in Supreme Court https://www.bbc.co.uk/news/uk-66051292?at_medium=RSS&at_campaign=KARANGA seekers 2023-06-29 12:42:24
ニュース BBC News - Home Undercover policing unit tactics not justified, says report https://www.bbc.co.uk/news/uk-66020767?at_medium=RSS&at_campaign=KARANGA inquiry 2023-06-29 12:46:45
ニュース BBC News - Home Why is Thames Water in so much trouble? https://www.bbc.co.uk/news/business-66051555?at_medium=RSS&at_campaign=KARANGA water 2023-06-29 12:22:03
ニュース BBC News - Home 'They took my mother's name away for being an unmarried mum' https://www.bbc.co.uk/news/world-europe-66031767?at_medium=RSS&at_campaign=KARANGA irish 2023-06-29 12:36:23
ビジネス ダイヤモンド・オンライン - 新着記事 制裁のロシア貨物船、トルコに100回以上寄港 - WSJ発 https://diamond.jp/articles/-/325413 貨物船 2023-06-29 21:06:00
海外TECH reddit Is it weird to play with neighborhood kids? https://www.reddit.com/r/japanlife/comments/14m3mr9/is_it_weird_to_play_with_neighborhood_kids/ Is it weird to play with neighborhood kids I m an ALT in a tiny inaka town My walk home from school takes me past the only large park in the area and many of the kids from my school and other schools play there Every time they see me coming past people shout they run over to say hi and stuff whatever lol Recently I ve started getting invitations to join whatever activity they re currently doing usually baseball dodgeball or climbing some random wall that wasn t made for climbing I have no real issue doing it there s nobody around here my age to hang out with big city is an option but too far away for weekdays In my home country it s not particularly weird to join in a game in a public park and I ve seen teachers at my school playing with kids at lunch and occasionally after school If the answer is a definite no then so be it I ll go back to grinding on Genshin and save my sports life for the weekends when I can go into town Just curious is all submitted by u HotAndColdSand to r japanlife link comments 2023-06-29 12:23:27

コメント

このブログの人気の投稿

投稿時間: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件)