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

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
AWS AWS Partner Network (APN) Blog Accelerate Application Modernization with Amazon ECS, AWS Fargate, and MongoDB Atlas https://aws.amazon.com/blogs/apn/accelerate-application-modernization-with-amazon-ecs-aws-fargate-and-mongodb-atlas/ Accelerate Application Modernization with Amazon ECS AWS Fargate and MongoDB AtlasBusinesses are faced with increased data and variety as data structures are no longer tabular and come in all forms and shapes like JSON logs videos and big data These challenges drive developers to adopt MEAN or MERN stacks that can be deployed in a highly scalable secure and cost efficient environment Learn how you can migrate to the two stacks by introducing MongoDB Atlas and Amazon ECS with AWS Fargate into your architectures 2023-02-21 20:46:41
AWS AWS Big Data Blog A hybrid approach in healthcare data warehousing with Amazon Redshift https://aws.amazon.com/blogs/big-data/a-hybrid-approach-in-healthcare-data-warehousing-with-amazon-redshift/ A hybrid approach in healthcare data warehousing with Amazon RedshiftData warehouses play a vital role in healthcare decision making and serve as a repository of historical data A healthcare data warehouse can be a single source of truth for clinical quality control systems Data warehouses are mostly built using the dimensional model approach which has consistently met business needs Loading complex multi point datasets into a … 2023-02-21 20:02:18
AWS AWS Security Blog How to monitor and query IAM resources at scale – Part 2 https://aws.amazon.com/blogs/security/how-to-monitor-and-query-iam-resources-at-scale-part-2/ How to monitor and query IAM resources at scale Part In this post we continue with our recommendations for using AWS Identity and Access Management IAM APIs In part of this two part series we described how you could create IAM resources and use them soon after for authorization decisions We also described options for monitoring and responding to IAM resource changes for entire accounts … 2023-02-21 20:15:45
AWS AWS Security Blog How to monitor and query IAM resources at scale – Part 1 https://aws.amazon.com/blogs/security/how-to-monitor-and-query-iam-resources-at-scale-part-1/ How to monitor and query IAM resources at scale Part In this two part blog post we ll provide recommendations for using nbsp AWS Identity and Access Management IAM nbsp APIs and we ll share useful details on how IAM works so that you can use it more effectively For example you might be creating new IAM resources such as roles and policies through automation and notice a delay for resource propagations … 2023-02-21 20:14:33
AWS AWS Security Blog How to monitor and query IAM resources at scale – Part 2 https://aws.amazon.com/blogs/security/how-to-monitor-and-query-iam-resources-at-scale-part-2/ How to monitor and query IAM resources at scale Part In this post we continue with our recommendations for using AWS Identity and Access Management IAM APIs In part of this two part series we described how you could create IAM resources and use them soon after for authorization decisions We also described options for monitoring and responding to IAM resource changes for entire accounts … 2023-02-21 20:15:45
AWS AWS Security Blog How to monitor and query IAM resources at scale – Part 1 https://aws.amazon.com/blogs/security/how-to-monitor-and-query-iam-resources-at-scale-part-1/ How to monitor and query IAM resources at scale Part In this two part blog post we ll provide recommendations for using nbsp AWS Identity and Access Management IAM nbsp APIs and we ll share useful details on how IAM works so that you can use it more effectively For example you might be creating new IAM resources such as roles and policies through automation and notice a delay for resource propagations … 2023-02-21 20:14:33
海外TECH MakeUseOf How to Use Google Earth in a Browser https://www.makeuseof.com/tag/use-google-earth-browser/ google 2023-02-21 20:31:17
海外TECH MakeUseOf How to Make a Binance Cash Withdrawal to Your Bank https://www.makeuseof.com/how-to-make-a-binance-withdrawal-to-bank/ account 2023-02-21 20:31:16
海外TECH MakeUseOf What to Do When the Audio Services Are Not Responding on Windows https://www.makeuseof.com/what-to-do-when-audio-services-are-not-responding-on-windows/ services 2023-02-21 20:16:17
海外TECH MakeUseOf Honor Magic5 Lite Review: A Triumph for Budget Smartphone Buyers https://www.makeuseof.com/honor-magic5-lite-review/ light 2023-02-21 20:05:16
海外TECH DEV Community gnu-on-alpine and alpine-plus-plus: Two Lightweight Containers for Implementing GitHub Container Actions with Shell Scripting https://dev.to/cicirello/gnu-on-alpine-and-alpine-plus-plus-two-lightweight-containers-for-implementing-github-container-actions-with-shell-scripting-360i gnu on alpine and alpine plus plus Two Lightweight Containers for Implementing GitHub Container Actions with Shell Scripting IntroductionThe motivation of the gnu on alpine and alpine plus plus Docker containers is the implementation of GitHub Container Actions via shell scripting They are built upon alpine to keep the image size small for fast loading within GitHub Actions and both are preinstalled with bash coreutils findutils and gawk and alpine plus plus is additionally preinstalled with git Both gnu on alpine and alpine plus plus are multiplatform images supporting the following platforms linux linux amdlinux arm vlinux arm vlinux armlinux ppclelinux sxTable of Contents IntroductionMotivationDocker Tags and Versioning SchemeInstallingDocker Pull CommandUse as a base image in a DockerfileLearn MoreWhere You Can Find Me MotivationGitHub Actions can be implemented in a couple ways The most common is with JavaScript However another way to implement a GitHub Action is as a container action As a container action you can use any language to implement the action provided the container includes all of the tools that your action requires One simple approach is to use your favorite Linux distribution as the base image for your container and to define the steps to install any tools that your action needs e g compilers interpreters CLI tools etc within the Dockerfile of your action The problem with that approach is that whenever a workflow of one of your users runs the container for your action is built which in this case includes installing the various tools that it needs A better approach that speeds up runs of your action is to use a base image that includes all of the tools that your action requires This way your Dockerfile only requires the steps necessary to copy the source of your action into the container and to set an entrypoint Here is an example of the Dockerfile of one of my GitHub Actions note this one doesn t use the containers that are the subject of this post FROM ghcr io cicirello pyaction COPY tidyjavadocs py tidyjavadocs pyENTRYPOINT tidyjavadocs py Docker Tags and Versioning SchemeI push images to both Docker Hub and the GitHub Container Registry with the following tags The tag latest indicates well the latest image Tags of the form MAJOR MINOR PATCH such as indicate the Semantic Version of the Alpine image used as the base Tags of the form MAJOR MINOR e g correspond to the most recent patch level of the Alpine image used as the base For example if is the latest release then maps to this as well Tags of the form MAJOR e g correspond to the most recent patch level of the Alpine image used as the base with major corresponding major version For example if is the latest release then maps to this as well I use GitHub s dependabot to monitor for updates to the base Alpine image InstallingThe pre built images are hosted on both Docker Hub and the GitHub Container Registry You can use it in the following ways Docker Pull CommandPull the latest images from Docker Hub with the following or replace with tag of desired version docker pull cicirello gnu on alpine Or for alpine plus plus docker pull cicirello alpine plus plus Pull from the Github Container Registry with docker pull ghcr io cicirello gnu on alpine Or for alpine plus plus docker pull ghcr io cicirello alpine plus plus Use as a base image in a DockerfileUse as a base image in a Dockerfile or replace with tag of desired version FROM cicirello gnu on alpine The rest of your Dockerfile would go here Or for alpine plus plus FROM cicirello alpine plus plus The rest of your Dockerfile would go here Or you can use as a base image via the Github Container Registry with FROM ghcr io cicirello gnu on alpine The rest of your Dockerfile would go here Or for alpine plus plus FROM ghcr io cicirello alpine plus plus The rest of your Dockerfile would go here Learn MoreTo learn more consult the GitHub repositories cicirello gnu on alpine A lightweight docker image for shell scripting with GNU tools gnu on alpineA lightweight docker image for shell scripting with GNU tools Alpine plus bash coreutils findutils gawk Docker Hub GitHubImage StatsBuild StatusLicenseSupport SummaryThe gnu on alpine Docker image is designedto support shell scripting using GNU toolssuch as the bash shell gawk coreutils andfindutils while keeping the image size relativelysmall Alpine Linux is used as the baseimage The gnu on alpine image addsbash findutils coreutils and gawk on topof Alpine Linux Multiplatform Imagegnu on alpine has the following platforms available linux linux amdlinux arm vlinux arm vlinux armlinux ppclelinux sxSource Repository and BuildsThe source repository is maintained on GitHub The images are built on Github and pushed to Docker Hub as well as the Github Container Registry using Github Actions Docker Tags and Versioning SchemeEach image pushed to Docker Hub and the Github Container Registry is tagged as follows The tag latest indicates… View on GitHub cicirello alpine plus plus A lightweight docker image for shell scripting and git alpine plus plusA lightweight docker image for shell scripting and git Alpine plus bash coreutils findutils gawk git Docker Hub GitHubImage StatsBuild StatusLicenseSupport SummaryThe alpine plus plus Docker image is motivated byGithub actions implemented primarily with bashand shell utilities but is also potentiallyapplicable to any use case where you primarilyneed bash and GNU tools like gawk etc as wellas git but also want to keep the image sizerelatively small Alpine Linux is used as the baseimage Alone Alpine almost suits this purposeHowever it lacks the bash shell and commonlyused GNU tools such as findutils gawk etc Italso lacks git The alpine plus plus image addsgit bash findutils coreutils and gawk on topof Alpine Linux Multiplatform Imagealpine plus plus has the following platforms available linux linux amdlinux arm vlinux arm vlinux armlinux ppclelinux sxSource Repository and BuildsThe source repository is maintained on GitHub… View on GitHub Where You Can Find MeFollow me here on DEV Vincent A CicirelloFollow Researcher and educator in A I algorithms evolutionary computation machine learning and swarm intelligence Follow me on GitHub cicirello cicirello My GitHub Profile Vincent A CicirelloSites where you can find me or my workWeb and social media Software development Publications If you want to generate the equivalent to the above for your own GitHub profile check out the cicirello user statisticianGitHub Action View on GitHubOr visit my website Vincent A Cicirello Professor of Computer Science Vincent A Cicirello Professor of Computer Science at Stockton University is aresearcher in artificial intelligence evolutionary computation swarm intelligence and computational intelligence with a Ph D in Robotics from Carnegie MellonUniversity He is an ACM Senior Member IEEE Senior Member AAAI Life Member EAI Distinguished Member and SIAM Member cicirello org 2023-02-21 20:38:06
海外TECH Engadget The Kindle Store has a prolific new author: ChatGPT https://www.engadget.com/the-kindle-store-has-a-prolific-new-author-chatgpt-203039907.html?src=rss The Kindle Store has a prolific new author ChatGPTChatGPT is listed as the author or co author of at least books on Amazon s Kindle Store according to Reuters However the actual number of bot written books is likely much higher than that since Amazon s policies don t explicitly require authors to disclose their use of AI It s the latest example of AI generated writing flooding the market and playing a part in ethically dubious content creation since the November release of OpenAI s free tool “I could see people making a whole career out of this said Brett Schickler a Rochester NY salesman who published a children s book on the Kindle Store “The idea of writing a book finally seemed possible Schickler s self published story The Wise Little Squirrel A Tale of Saving and Investing is a page children s story ーwritten and illustrated by AI ーselling for for a digital copy and for a printed version Although Schickler says the book has earned him less than since its January release he only spent a few hours creating it with ChatGPT prompts like “write a story about a dad teaching his son about financial literacy Other examples of AI created content on the Kindle Store include children s story The Power of Homework a poetry collection called Echoes of the Universe and a sci fi epic about an interstellar brothel Galactic Pimp Vol “This is something we really need to be worried about these books will flood the market and a lot of authors are going to be out of work said Mary Rasenberger executive director of the Authors Guild “There needs to be transparency from the authors and the platforms about how these books are created or you re going to end up with a lot of low quality books ClarkesworldMeanwhile science fiction publication Clarkesworld Magazine has temporarily halted short story submissions after receiving a flood of articles suspected of using AI without disclosure as reported by PCMag Although Editor Neil Clarke didn t specify how he identified them he recognized the allegedly bot assisted stories due to “some very obvious patterns “What I can say is that the number of spam submissions resulting in bans has hit percent this month he said “While rejecting and banning these submissions has been simple it s growing at a rate that will necessitate changes To make matters worse the technology is only going to get better so detection will become more challenging Clarkesworld currently prohibits stories “written co written or assisted by AI and the publication has banned over users this month for submitting suspected AI assisted content Clarkesworld pays cents per word making it a prime target “From what I can tell it s not about credibility It s about the possibility of making a quick buck That s all they care about Clarke tweeted nbsp In addition to the standalone ChatGPT tool Microsoft s new version of Bing uses a more advanced version of the tool to help with search queries JASON REDMOND via Getty ImagesApart from ethical issues about transparency there are also questions of misinformation and plagiarism For example AI bots including ChatGPT Microsoft s Bing AI and Google s Bard are prone to “hallucinating the term for spouting false information confidently Additionally they re trained on human created content ーalmost always without the original author s knowledge or permission ーand sometimes use identical syntax to the source material nbsp Starting last year tech publication CNET used an in house AI model to write at least economic explainers Unfortunately apart from the initially cagey approach that only revealed it was written by AI if you clicked on the byline it also included numerous factual errors and nearly identical phrasing from other websites articles As a result CNET was forced to make extensive corrections and pause its use of the tool ーhowever one of its sister sites has already at least experimented with using it again 2023-02-21 20:30:39
海外科学 NYT > Science A Sudden Rush to Make Sustainable Aviation Fuel Mainstream https://www.nytimes.com/2023/02/21/climate/united-sustainable-aviation-fuel.html gases 2023-02-21 20:14:43
ニュース BBC News - Home Biden hails 'rock solid' Nato as Putin blames West for Russia's war https://www.bbc.co.uk/news/world-europe-64715646?at_medium=RSS&at_campaign=KARANGA president 2023-02-21 20:11:38
ニュース BBC News - Home Nurses suspend strike as pay talks re-start https://www.bbc.co.uk/news/health-64722953?at_medium=RSS&at_campaign=KARANGA college 2023-02-21 20:55:43
ニュース BBC News - Home Leeds United new manager: Javi Gracia named as Jesse Marsch's replacement https://www.bbc.co.uk/sport/football/64723160?at_medium=RSS&at_campaign=KARANGA jesse 2023-02-21 20:04:50
ニュース BBC News - Home Women's T20 World Cup: South Africa beat Bangladesh to set up England semi-final https://www.bbc.co.uk/sport/cricket/64720190?at_medium=RSS&at_campaign=KARANGA bangladesh 2023-02-21 20:26:30
ビジネス ダイヤモンド・オンライン - 新着記事 三井住友銀行の“異例”頭取人事で見えた「新エリート路線」、三菱UFJトップ人事も大予想 - メガバンク 最後の審判 三井住友の正念場 https://diamond.jp/articles/-/317882 2023-02-22 05:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 トヨタすら白旗!三菱自とSUBARUにも迫る「値上げ危機」、“円安で輸出企業高笑い”のウソ【再編集】 - トヨタ「非創業家」新社長を待つ試練 https://diamond.jp/articles/-/317817 2023-02-22 05:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 JR東日本と東急不動産が不動産で包括提携、協業とは名ばかりの「不平等条約」!? - Diamond Premium News https://diamond.jp/articles/-/318138 diamondpremiumnewsjr 2023-02-22 05:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 薄毛に効く治療薬ランキング下位の「非推奨薬」が、日本で一転「大プッシュ」される裏事情 - 選ばれるクスリ https://diamond.jp/articles/-/317890 第一人者 2023-02-22 05:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 HIS、近ツー、阪急交通社…国内旅行はコロナ前実績に迫るも、海外・訪日旅行は? - コロナで明暗!【月次版】業界天気図 https://diamond.jp/articles/-/318200 2023-02-22 05:05:00
ビジネス 電通報 | 広告業界動向とマーケティングのコラム・ニュース 海洋立国ならではの挑戦 https://dentsu-ho.com/articles/8480 人工知能 2023-02-22 06:00:00
ビジネス 電通報 | 広告業界動向とマーケティングのコラム・ニュース 「飽くなき挑戦」をストーリーで表現するマツダミュージアム https://dentsu-ho.com/articles/8473 運営 2023-02-22 06:00:00
ビジネス 東洋経済オンライン 「餃子の雪松」が全国制覇しても絶対変えない流儀 現金商売の原点は“商店街の息子たち"にあり | 消費・マーケティング | 東洋経済オンライン https://toyokeizai.net/articles/-/652946?utm_source=rss&utm_medium=http&utm_campaign=link_back 冷凍餃子 2023-02-22 06:00:00
ビジネス 東洋経済オンライン 維新・馬場代表「改革保守の再編は起こりうる」 日本維新の会・馬場代表が描く日本政治の未来 | 国内政治 | 東洋経済オンライン https://toyokeizai.net/articles/-/652484?utm_source=rss&utm_medium=http&utm_campaign=link_back 参議院選挙 2023-02-22 05:40:00
ビジネス 東洋経済オンライン コロナ5類「マスク要否」論争で知っておきたい事 専門家は有効性を主張するが否定的な研究もある | 新型コロナ、「新しい日常」への前進 | 東洋経済オンライン https://toyokeizai.net/articles/-/654221?utm_source=rss&utm_medium=http&utm_campaign=link_back 位置付け 2023-02-22 05:20: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件)