投稿時間:2023-06-13 01:17:45 RSSフィード2023-06-13 01:00 分まとめ(25件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS News Blog New – Move Payment Processing to the Cloud with AWS Payment Cryptography https://aws.amazon.com/blogs/aws/new-move-payment-processing-to-the-cloud-with-aws-payment-cryptography/ New Move Payment Processing to the Cloud with AWS Payment CryptographyCryptography is everywhere in our daily lives If you re reading this blog you re using HTTPS an extension of HTTP that uses encryption to secure communications On AWS multiple services and capabilities help you manage keys and encryption such as AWS Key Management Service AWS KMS which you can use to create and protect keys to … 2023-06-12 15:14:17
AWS AWS - Webinar Channel test https://www.youtube.com/watch?v=VB7k44Y59hQ Detail Nothing 2023-06-12 15:25:46
AWS AWS - Webinar Channel Database Performance Monitoring and Tuning with Amazon DevOps Guru for RDS- AWS Database in 15 https://www.youtube.com/watch?v=cHKuVH7YGBE Database Performance Monitoring and Tuning with Amazon DevOps Guru for RDS AWS Database in Amazon DevOps Guru for RDS is a machine learning ML powered capability that is designed to empower database administrators developers and DevOps engineers to quickly detect diagnose and remediate a wide variety of database related performance issues in Amazon Aurora PostgreSQL Amazon Aurora MySQL and Amazon RDS for PostgreSQL When DevOps Guru detects a database related performance issue such as resource over utilization or misbehavior of certain SQL queries the service immediately notifies you and provides diagnostic information and recommendations to help you resolve the issue quickly The service can also help you detect potential database issues with your databases early so that you can prevent them from impacting your users With DevOps Guru you can monitor your databases for performance bottlenecks and operational issuesーno manual setup ML expertise or deep database expertise required In this session you will learn the types of issues DevOps Guru for RDS can detect and how to get started today Learning Objectives Objective Learn about the RDS performance monitoring tools that are available Objective Understand concepts in Amazon DevOps Guru for RDS to help you generate insights about your applications Objective See a demo of Proactive and Reactive Insights you can get with Amazon DevOps Guru for RDS To learn more about the services featured in this talk please visit To download a copy of the slide deck from this webinar visit 2023-06-12 15:15:02
Linux Ubuntuタグが付けられた新着投稿 - Qiita LINEトーク履歴集計アプリ開発③ https://qiita.com/shutax/items/09dde2c616fe9b9cb8d7 txtpostphp 2023-06-13 00:28:50
Linux Ubuntuタグが付けられた新着投稿 - Qiita LINEトーク履歴集計アプリ開発② - 後編 - https://qiita.com/shutax/items/cc9793f5eeff42c0fb99 集計 2023-06-13 00:28:29
Linux Ubuntuタグが付けられた新着投稿 - Qiita LINEトーク履歴集計アプリ開発② - 前編 - https://qiita.com/shutax/items/6198a8200ca8d5ab774e incron 2023-06-13 00:27:54
Linux Ubuntuタグが付けられた新着投稿 - Qiita LINEトーク履歴解析アプリ開発① https://qiita.com/shutax/items/0f2aeecc5890bc394302 記事 2023-06-13 00:27:01
海外TECH MakeUseOf How to Optimize Windows 10 for Gaming and Performance https://www.makeuseof.com/tag/optimize-windows-10-gaming/ windows 2023-06-12 15:15:17
海外TECH DEV Community Automated preview deployments from GitHub to AWS in 10 minutes https://dev.to/crohr/automated-preview-deployments-from-github-to-aws-in-10-minutes-17k1 Automated preview deployments from GitHub to AWS in minutesPreview deployments are a way to spin temporary environments from branches or pull requests They re used to allow teammates and product managers to visually review your work before changes are merged without relying on code only ways to get preview deploymentsTo use preview deployments in your development workflow you have solutions your hosting provider has preview deployments sorted out e g Heroku Vercel Render Scalingo Easy to setup but you get vendor lock in and some providers are costly you find a rd party SaaS to provide the service for you Setup can be complicated if they use custom definition files it s costly and your code is now at risk in another provider s infrastructure you build or use a solution that doesn t rely on rd parties This could be a GitHub Action Jenkins pipeline semi automated script etc Building a custom solution is costly in terms of development and maintenance so today I want to talk about PullPreview a GitHub Action which makes preview deployments very easy to setup PullPreviewPullPreview is an open source GitHub Action which has the following features works with any app that can be booted with Docker Compose i e all can be triggered by applying a label on a pull request deploys code directly from GitHub onto AWS Lightsail servers are started in your own AWS account SSH access to the servers you can use your own custom domain if you want environments are persistent across deployments fully integrated into GitHub UI no need to go through another app Let s get started Add AWS credentials to your repoPullPreview requires AWS credentials to deploy servers so let s create a new user For some obscure reason AWS doesn t provide a default policy for Lightsail so you will need to create a new Policy for this user with the following content Version Statement Effect Allow Action lightsail Resource Then attach the newly created policy and create the user Final step is to retrieve an access key and secret access key for that new user and declare those keys into your repository settings on GitHub as new Repository Secrets Label workflow file and example Docker Compose appThe PullPreview action will be triggered only for pull requests that have a specific label applied By default the label name is pullpreview so let s create it in your GitHub repository Use any color you like Now create a new branch and add the following files the pullpreview workflow file github workflows pullpreview ymlname PullPreviewon pull request types labeled unlabeled synchronize closed reopened jobs deploy permissions contents read to fetch code actions checkout deployments write to delete deployments pull requests write to remove labels statuses write to create commit status name deploy runs on ubuntu latest timeout minutes steps uses actions checkout v uses pullpreview action v see with admins your github username compose files docker compose pullpreview yml ports default port env AWS ACCESS KEY ID secrets AWS ACCESS KEY ID AWS SECRET ACCESS KEY secrets AWS SECRET ACCESS KEY AWS REGION us east an example docker compose file with SSL support docker compose pullpreview ymlservices easily set up SSL termination proxy image caddy restart unless stopped command caddy reverse proxy from PULLPREVIEW URL to web depends on web ports volumes data simple ruby web server for demo purposes which connects to a postgres DB web restart unless stopped depends on db build context dockerfile inline FROM ruby RUN gem install sinatra pg puma CMD ruby rsinatra rpg rpuma e get Hey PullPreview user here is the postgres version PG connect ENV PGURI exec SELECT VERSION getvalue EXPOSE environment PGURI postgres postgres psswrd db postgres APP ENV production db restart unless stopped image postgres environment POSTGRES PASSWORD psswrd Let the magic beginNow commit the previous files push your new branch and open a pull request with the pullpreview label applied GitHub will start executing the PullPreview job and a new preview environment will be up and running a few minutes later Going furtherNext steps would be to replace the example docker compose ci yml file with your own Docker Compose file and see if the environment gets successfully deployed as well You might need a few attempts to get to the point where your environment is fully setup but remember that you can always SSH into the temporary server if the need arises ConclusionWe ve only scratched the surface of what PullPreview can do The fact that it runs entirely within the GitHub ecosystem and in your own AWS account allows for a wide variety of use cases access restriction from specific IP rangescustom domainsvarious instance typessupport for private docker registriessupport for multiple docker compose filessupport for multiple preview environments per pull requestsupport for seed dataetc You should definitely have a look at the documentation Also note that the PullPreview action is free to use for personal use but comes with a commercial license € year for businesses This ensures that the action is maintained and new features added 2023-06-12 15:44:01
海外TECH DEV Community Just finished my first game! https://dev.to/ajmikolaj/just-finished-my-first-game-54i1 Just finished my first game I finally wrote my first game on Python I learned a lot during the process lots of bugs to work out lots of small details to sort through I started with the idea of writing code to play Blackjack but I wanted to make it more interesting so I made sure there was code to allow for splitting doubling down buying insurance etc That also meant I had to write code for managing wagers Obviously it s all fake money but still fun There is still a lot to learn but I feel pretty good for only starting to code weeks ago Here is a link to the code and an image below Code 2023-06-12 15:37:27
海外TECH DEV Community Journey into the Minification Abyss: The Peculiar '0' Placeholder https://dev.to/js_bits_bill/journey-into-the-minification-abyss-the-peculiar-0-placeholder-70j Journey into the Minification Abyss The Peculiar x x PlaceholderIn minified code you ll often notice a pattern that looks like this i default createElement p dangerouslySetInnerHTML html sanitize n desc What s the self this source fileName S lineNumber columnNumber With the line html sanitize n desc we see curious things Why do the parens in sanitize have two expressions Why is there a seemingly useless number present Lets explain sanitize n desc simply calls sanitize with n desc as an argument In other words this is the same as sanitize n desc Inside the parenthesis the comma operator evaluates all expressions in sequence but only returns the value of the last expression function foo return a b foo returns So by adding the before the comma in sanitize n desc the transpiler is using the comma operator to create an expression where the value is discarded but the function sanitize is still executed This ensures that the sanitize function is treated as a standalone expression and evaluated before the function call is made This minute difference allows the transpiler to maintain syntactic coherence in it s rules for transformation which facilitate optimization and compatibility What syntactic coherence you ask Well it depends on a lot like the transpiler used custom configurations and the code context itself but any one of these operations may require this pattern Module bundling to ensure module dependencies are resolved correctly Minification optimization to apply a particular optimization to the code Interoperability to ensure compatibility with other tools plugins in the build pipeline Code analysis to create a compatible output for proper analysis for code metrics While sanitize n desc would still produce the same expression as sanitize n desc the addition of the as a placeholder value highlights the intention for the function to be treated as a standalone expression I always believed the in these patterns were an index to another function in the code bundle but it s not It s just a placeholder to maintaining syntactic coherence according to the transpiler rules 2023-06-12 15:21:48
海外TECH DEV Community What is ZenStack? https://dev.to/zenstack/what-is-zenstack-1mme What is ZenStack Video or TextThis is my initial video publication introducing ZenStack an open source full stack development toolkit that supercharges Prisma ORM with a powerful access control layer and unleashes its full potential for full stack development Honestly I consider myself an old school individual who enjoyed navigating through hyperlinks to find the desired information It gave me a sense of freedom reminiscent of the bygone era when it was known as web surfing However I ve noticed a growing trend where more and more individuals prefer acquiring information through videos Therefore I ve decided to give it a shot If you ve had the chance to watch the video I would greatly appreciate hearing your thoughts on it You now have the power to shape the appearance of our new website 2023-06-12 15:04:35
Apple AppleInsider - Frontpage News 2023 Mac Studio vs 2022 Mac Studio - compared https://appleinsider.com/inside/mac-studio/vs/2023-mac-studio-vs-2022-mac-studio---compared?utm_medium=rss Mac Studio vs Mac Studio comparedApple s second generation Mac Studio is packed with top tier M series chips Here s how the specs compare against the previous version running M Max and M Ultra chips Apple hasn t changed the Mac Studio s designApple has unveiled an upgraded iteration of the Mac Studio marking its second generation The latest version incorporates the M Max processor delivering a remarkable increase in performance while maintaining the same sleek design and form factor as its predecessor Read more 2023-06-12 15:53:25
海外TECH Engadget Reddit suffers a major outage after thousands of subreddits temporarily shut down https://www.engadget.com/reddit-suffers-a-major-outage-after-thousands-of-subreddits-temporarily-shut-down-151741809.html?src=rss Reddit suffers a major outage after thousands of subreddits temporarily shut downIt s been quite a day for Reddit Thousands of communities have temporarily closed shop to protest changes the company is making to its API which is impacting several third party apps On top of that the platform suffered a quot major outage quot across its desktop and mobile websites as well as the mobile apps nbsp quot We re aware of problems loading content and are working to resolve the issues as quickly as possible quot read a message on the Reddit status page as of AM ET By AM the site was loading again quot We re observing improvements across the site and expect issue to recover for most users We will continue to closely monitor the situation quot an update posted at AM read quot A significant number of subreddits shifting to private caused some expected stability issues and we ve been working on resolving the anticipated issue quot Reddit told Engadget in a statement A bot was tracking all of the subreddits that were going private as part of the protests As you might expect the bot was out of commission while Reddit was down but it s up and running again Reddit said in April that it would start charging for access to its API which third party developers have used in thousands of apps that tie into the platform such as moderation tools While the primary target of the API changes may have been companies that are scraping Reddit for content to train language learning models for generative AI systems the move has been a significant blow for those making third party clients that many redditors prefer to the company s own website or apps One of the most prominent third party clients Apollo is shutting down at the end of this month as a result of the API changes The app s creator Christian Selig claimed that he would have to pay million per year to keep operating Apollo as is RIF another widely used third party Reddit app will close on June th as well Reddit CEO Steve Huffman defended the API changes in an AMA that took place before subreddits went private in protest He said the new policy was part of an effort to make Reddit profitable “Reddit needs to be a self sustaining business and to do that we can no longer subsidize commercial entities that require large scale data use he wrote “Some apps such as Apollo Reddit is Fun and Sync have decided this pricing doesn t work for their businesses and will close before pricing goes into effect This article originally appeared on Engadget at 2023-06-12 15:18:02
Cisco Cisco Blog Breaking Through for Mission Advantage https://feedpress.me/link/23532/16186061/breaking-through-for-mission-advantage Breaking Through for Mission AdvantageJoin us as we unlock innovation to solve some of our country s most challenging problems Start by downloading your copy of our new Cisco Innovation Challenge Idea Book and find out the winners of the challenge 2023-06-12 15:00:50
海外科学 NYT > Science Doctors Are Using ChatGPT to Improve How They Talk to Patients https://www.nytimes.com/2023/06/12/health/doctors-chatgpt-artificial-intelligence.html Doctors Are Using ChatGPT to Improve How They Talk to PatientsDespite the drawbacks of turning to artificial intelligence in medicine some physicians find that ChatGPT improves their ability to communicate empathetically with patients 2023-06-12 15:33:23
金融 ◇◇ 保険デイリーニュース ◇◇(損保担当者必携!) 保険デイリーニュース(06/13) http://www.yanaharu.com/ins/?p=5218 chatgpt 2023-06-12 15:12:44
金融 金融庁ホームページ 鈴木財務大臣兼内閣府特命担当大臣閣議後記者会見の概要(令和5年6月9日)を掲載しました。 https://www.fsa.go.jp/common/conference/minister/2023a/20230609-1.html 内閣府特命担当大臣 2023-06-12 17:00:00
金融 金融庁ホームページ 鈴木財務大臣兼内閣府特命担当大臣閣議後記者会見の概要(令和5年6月6日)を掲載しました。 https://www.fsa.go.jp/common/conference/minister/2023a/20230606-1.html 内閣府特命担当大臣 2023-06-12 16:59:00
金融 金融庁ホームページ 任期付職員を募集しています。(育児休業中の職員の代替となる職員) https://www.fsa.go.jp/common/recruit/r5/kikaku-11/kikaku-11.html 育児休業 2023-06-12 16:00:00
ニュース BBC News - Home Former Italian prime minister Silvio Berlusconi dies at 86 https://www.bbc.co.uk/news/world-europe-65877241?at_medium=RSS&at_campaign=KARANGA allegations 2023-06-12 15:06:01
ニュース BBC News - Home Mother jailed for taking abortion pills after legal limit https://www.bbc.co.uk/news/uk-england-stoke-staffordshire-65882169?at_medium=RSS&at_campaign=KARANGA legal 2023-06-12 15:44:37
ニュース BBC News - Home Boris Johnson and Rishi Sunak trade barbs in row over honours list https://www.bbc.co.uk/news/uk-politics-65876723?at_medium=RSS&at_campaign=KARANGA nominations 2023-06-12 15:50:52
ニュース BBC News - Home Download Festival: Is mental health and TikTok the future of rock? https://www.bbc.co.uk/news/newsbeat-65881987?at_medium=RSS&at_campaign=KARANGA download 2023-06-12 15:10:26
ニュース BBC News - Home Heathrow workers call off first summer strikes https://www.bbc.co.uk/news/business-65882032?at_medium=RSS&at_campaign=KARANGA action 2023-06-12 15:53:17

コメント

このブログの人気の投稿

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