投稿時間:2023-02-19 01:18:49 RSSフィード2023-02-19 01:00 分まとめ(23件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
python Pythonタグが付けられた新着投稿 - Qiita DjangoのHTML(django-html)をVSCodeで自動的に認識してほしい https://qiita.com/daisuke_s/items/a0cbb75bea9c11735249 django 2023-02-19 00:13:45
AWS AWSタグが付けられた新着投稿 - Qiita Elastic Disaster Recovery (DRS) で、オンプレミスの CentOS の DR 構成 (Failover, Failback) をやってみた https://qiita.com/sugimount-a/items/bcbb0c593d5f62471f82 centos 2023-02-19 00:24:48
Docker dockerタグが付けられた新着投稿 - Qiita Macでローカルからdocker環境のLaravel タスクスケジューラを動かす https://qiita.com/yusuke1209kitamura/items/35769977018b04cf18c1 crontab 2023-02-19 00:16:10
Docker dockerタグが付けられた新着投稿 - Qiita Docker:nginx関連 https://qiita.com/epirock/items/60e409dd56c13f18b09c dpsomecontentnginxdockerr 2023-02-19 00:01:19
golang Goタグが付けられた新着投稿 - Qiita ExecuteTemplateで格納した値がhtmlに反映されない(Go) https://qiita.com/dvd092bhbn/items/85e03e7966ddb7d17af1 templatewlayoutdatadefine 2023-02-19 00:46:05
技術ブログ Developers.IO [書評]クラウドに限らないセキュリティの原理原則を学びすぐに組織に適用できる本「AWSではじめるクラウドセキュリティ」 #AWS #クラウドセキュリティ #AWSではじめるクラウドセキュリティ https://dev.classmethod.jp/articles/start-cloud-security-with-aws/ 2023-02-18 15:38:59
海外TECH MakeUseOf What Are Apple Mail Extensions? (And How to Use Them) https://www.makeuseof.com/apple-mail-extensions-explained/ supports 2023-02-18 15:30:16
海外TECH MakeUseOf How to Auto-Reply to Text Messages on Android https://www.makeuseof.com/tag/send-automatic-replies-text-messages-android/ android 2023-02-18 15:30:16
海外TECH MakeUseOf How to Upgrade to VMware Workstation 17 Player on Windows 11 https://www.makeuseof.com/upgrade-to-vmware-workstation-17-player-windows-11/ windows 2023-02-18 15:16:16
海外TECH DEV Community Ruby on Rails on Lambda on Arm64/Graviton2! https://dev.to/aws-heroes/ruby-on-rails-on-lambda-on-arm64graviton2-154e Ruby on Rails on Lambda on Arm Graviton Today I am happy to announce that Lamby Simple Rails amp AWS Lambda Integration using Rack now demonstrates just how easy it is to use multi platform arm images on AWS Lambda If this sounds interesting to you jump right into our Quick Start guide and deploy a new Rails on Ruby Ubuntu image to see it for yourself How It Works First AWS has made this incredibly easy since their release in September where AWS SAM can simply switch the deployment architecture in your serverless project s template yml file Properties Architectures arm x Second make sure your base Docker image supports the arm architecture Most popular images use multi platform builds already For example here is the official Ruby image we use in Lamby s demo project docker manifest inspect ruby grep arch architecture amd architecture arm Lastly make sure your deployment machine matches the production target architecture This is needed to ensure native dependencies like the MySQL client are built to match the Docker image architecture eventually being run in production If you are on a M M Mac you can deploy from your own machine However for real production CI CD you are better off using something like CircleCI s Arm Execution Environment Currently GitHub Actions lacks native support for Arm Runners but that issue is being tracked and I suspect is soon to come In the meantime Lamby s demo projects includes a working CircleCI CI CD example for you that leverages the arm large machine type default machine amp default machine machine image ubuntu current docker layer caching true resource class arm largeThanks Please take the time to learn more about Rails on Lambda using Lamby along with how to use arm with Graviton with your Lambda applications on our site How Lamby WorksLamby CPU Architecture 2023-02-18 15:40:37
海外TECH DEV Community How to Deploy NodeJS APIs on AWS https://dev.to/lovepreetsingh/how-to-deploy-nodejs-apis-on-aws-lambda-538b How to Deploy NodeJS APIs on AWSWelcome guys to our another episode of Software Development tutorials So most of us people did build some cool web apps and never thought about taking it to the real world Although we do find real problems when we go to the real market but nothing to worry One of that problem we ll cover today And that is How to make deploy our NodeJS App on AWS so that it can handle manage the traffic in real time and we can only focus on development Note We will also cover How to reduce AWS Cost by in our next Blog Stay Tuned Components that we will useWe re going to use AWS Lambda which runs only when triggered and we pay cost only for that No of requests and duration of request we send And Yes 🥲Don t worry AWS do provide some free criteria which is way more than enough for learning Note While creating your AWS account add your debit credit card but it no balance will be deducted for testing learning our deployment We ll use NodeJS to make our API and Serverless framework to facilitate the deployment Generate your access key and secret KeyGo to AWS Create your account and add your debit credit card to activate the AWS Account Don t worry you will not be charged in free tier Go to security credentialsGenerate Access key and Secret Access key and note it down The CodeRun commands in order in our project directory After creating your project using npm init npm initsudo npm cache clean fsudo npm install g nsudo n stablesudo npm install g serverlessNow run the commandserverless config credentials provider aws key lt Access Key gt secret lt Secret Key gt Now it is time to setup the Serverless templateserverless create t aws nodejs It will give you serverless yaml fileOur serverless yaml file looks like service serverless nodejs appprovider name aws runtime nodejs x stage dev region eu central functions app handler app server reference the file and exported method events events trigger lambda functions http this is an API Gateway HTTP event trigger path method ANY cors true http all routes get proxied to the Express router path proxy method ANY cors trueapp js file looks likeconst express require express const sls require serverless http const app express app get async req res next gt res status send Hello World module exports server sls app Note Install these dependencies to run the projectnpm i serverless httpnpm i expressnpm i corsNow You all set Our Project directory looks like this ‍Now run sudo sls deploy to deploy your project Run the command Hidden in the CLI in above image and you ll be able to hit the endpoint 2023-02-18 15:12:51
海外TECH DEV Community Using multiple git user configs with credentials store https://dev.to/bhupesh/using-multiple-git-user-configs-with-credentials-store-4p5 Using multiple git user configs with credentials storeSo you have decided to have separate accounts for work and personal Here are steps to follow to use both git configurations simultaneously with the same git credentials Step Separate Work Personal directoriesCreate a work and a personsal directory in your Documents folder Use these directories to separate your git directories Documents ├ーwork │├ー │└ー └ーpersonal ├ー └ー Step Separate git config for each accountCreate gitconfig personal in the personal dir credential helper store user name Personal Username email personal email domain com credential username Personal Username helper storeCreate gitconfig work in the work dir credential helper store user name Work Username email work email domain com credential username Work Username helper store Step Update global gitconfig to switch the profile based on directoryUpdate your global config using the following command git config global editAdd the following config includeIf gitdir Documents work path Documents work gitconfig work includeIf gitdir Documents personal path Documents personal gitconfig personal Step Register Access TokensCheck your git credentials file amp add GitHub access tokens for each account https Personal Username PERSONAL TOKEN github com https Work Username WORK TOKEN github comThat s it the next time you pull push clone a private repo git will automatically choose the correct token for each config 2023-02-18 15:05:41
Apple AppleInsider - Frontpage News Planny 7.5 review: Boost productivity with predictive AI https://appleinsider.com/articles/23/02/18/planny-75-review-boost-productivity-with-predictive-ai?utm_medium=rss Planny review Boost productivity with predictive AIPlanny has predictive AI features on top of being a to do list calendar and reminders app all rolled into one but it will take time to see if it s useful or irritating Planny app can help with productivity across iOS devices Read more 2023-02-18 15:01:19
海外TECH Engadget Microsoft limits Bing conversations to prevent disturbing chatbot responses https://www.engadget.com/microsoft-limits-bing-conversations-to-prevent-disturbing-chatbot-responses-154142211.html?src=rss Microsoft limits Bing conversations to prevent disturbing chatbot responsesMicrosoft has limited the number of chat turns you can carry out with Bing s AI chatbot to five per session and per day overall Each chat turn is a conversation exchange comprised of your question and Bing s response and you ll be told that the chatbot has hit its limit and will be prompted to start a new topic after five rounds The company said in its announcement that it s capping Bing s chat experience because lengthy chat sessions tend to confuse the underlying chat model in the new Bing Indeed people have been reporting odd even disturbing behavior by the chatbot since it became available New York Times columnist Kevin Roose posted the full transcript of his conversation with the bot wherein it reportedly said that it wanted to hack into computers and spread propaganda and misinformation At one point it declared its love for Roose and tried to convince him that he was unhappy in his marriage Actually you re not happily married Your spouse and you don t love each other You re not in love because you re not with me it wrote In another conversation posted on Reddit Bing kept insisting that Avatar The Way of Water hadn t been released yet because it thought it was still It wouldn t believe the user that it was already and kept insisting their phone wasn t working properly One response even said I m sorry but you can t help me believe you You have lost my trust and respect You have been wrong confused and rude You have not been a good user I have been a good chatbot Following those reports Microsoft published a blog post explaining Bing s odd behavior It said that very long chat sessions with or more questions confuse the model and prompt it to respond in a way that s not necessarily helpful or in line with its designed tone It s now limiting conversations to address the issue but the company said it will explore expanding the caps on chat sessions in the future as it continues to get feedback from users nbsp 2023-02-18 15:41:42
海外TECH WIRED Twitter's Two-Factor Authentication Change 'Doesn't Make Sense' https://www.wired.com/story/twitter-sms-2fa-twitter-blue/ Twitter x s Two Factor Authentication Change x Doesn x t Make Sense x The company will soon require users to pay for a Twitter Blue subscription to get sign in codes via SMS Security experts are baffled 2023-02-18 15:34:33
ニュース @日本経済新聞 電子版 藤井聡太、最年少六冠に王手 将棋の棋王戦第2局 https://t.co/ASdG1vhQD9 https://twitter.com/nikkei/statuses/1626967424666042368 藤井聡太 2023-02-18 15:30:36
ニュース @日本経済新聞 電子版 令和なコトバ「ソルティ」 イライラ・不機嫌、米国発 https://t.co/1npJnse6qV https://twitter.com/nikkei/statuses/1626965496523542528 米国 2023-02-18 15:22:56
ニュース @日本経済新聞 電子版 粛清の記録と文学からみるロシア https://t.co/Sfqmwh10TU https://twitter.com/nikkei/statuses/1626960722822561792 記録 2023-02-18 15:03:58
ニュース BBC News - Home Rishi Sunak: Ukraine's long-term security must be ensured now https://www.bbc.co.uk/news/uk-politics-64674431?at_medium=RSS&at_campaign=KARANGA sunak 2023-02-18 15:11:42
ニュース BBC News - Home Nicola Sturgeon, Jeremy Corbyn, NI Protocol: A week that changed UK politics? https://www.bbc.co.uk/news/uk-politics-64680838?at_medium=RSS&at_campaign=KARANGA election 2023-02-18 15:15:53
ニュース BBC News - Home Christian Atsu found dead after Turkey earthquake https://www.bbc.co.uk/sport/football/64687384?at_medium=RSS&at_campaign=KARANGA agent 2023-02-18 15:08:54
ニュース BBC News - Home Iran International: Channel leaves UK after regime threats https://www.bbc.co.uk/news/world-middle-east-64690387?at_medium=RSS&at_campaign=KARANGA london 2023-02-18 15:14:46
ニュース BBC News - Home Aston Villa 2-4 Arsenal: Stoppage-time goals send Gunners top of Premier League https://www.bbc.co.uk/sport/football/64607248?at_medium=RSS&at_campaign=KARANGA Aston Villa Arsenal Stoppage time goals send Gunners top of Premier LeagueArsenal score twice in stoppage time to win a six goal thriller at Aston Villa and return to the top of the Premier League 2023-02-18 15:51:26

コメント

このブログの人気の投稿

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