投稿時間:2023-03-01 18:27:21 RSSフィード2023-03-01 18:00 分まとめ(30件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT ITmedia 総合記事一覧 [ITmedia ビジネスオンライン] 聴覚に障がいのある人の買い物を便利に ローソン、「コミュニケーションボード」のデータを公開 https://www.itmedia.co.jp/business/articles/2303/01/news171.html itmedia 2023-03-01 17:20:00
IT ITmedia 総合記事一覧 [ITmedia News] 「イブニング」8作品を無料公開、講談社のまんがアプリ 雑誌の休刊で https://www.itmedia.co.jp/news/articles/2303/01/news169.html itmedia 2023-03-01 17:15:00
TECH Techable(テッカブル) 家を買いたい街ランキング、今年も勝どきが1位。リモートワークの広がりで湘南エリアの順位上昇目立つ中で、順位アップ第1位はあの意外な街に… https://techable.jp/archives/198664 lifullhomes 2023-03-01 08:30:00
TECH Techable(テッカブル) 仲間と協力してダンジョン踏破! セガが新作タクティカルアクションゲームを発表 https://techable.jp/archives/198432 endlessdungeon 2023-03-01 08:00:57
IT 情報システムリーダーのためのIT情報専門サイト IT Leaders ローコード開発ツール「SPIRAL」新版、複数ページで使う同一のPHPプログラムを一元管理可能に | IT Leaders https://it.impress.co.jp/articles/-/24518 itleaders 2023-03-01 17:59:00
js JavaScriptタグが付けられた新着投稿 - Qiita JSのWebsocket Wsライブラリで全クライアントではなく、個別の人を指定して送信する方法 https://qiita.com/coret/items/59ccfa7457f8491b6b35 websocket 2023-03-01 17:04:33
Ruby Rubyタグが付けられた新着投稿 - Qiita ブロック引数で渡ってきたhashを、キーを変数名にしてローカル変数に展開する https://qiita.com/ymstshinichiro/items/95eb148793e522a7a4a2 eachdoargsargsgtabpapbend 2023-03-01 17:54:43
AWS AWSタグが付けられた新着投稿 - Qiita AmazonCognitoでユーザー認証するリバースプロキシサーバーをdocker-composeで構築する https://qiita.com/rc-saka/items/1e869aaffb8f518aad1a amazoncognito 2023-03-01 17:01:17
Git Gitタグが付けられた新着投稿 - Qiita Gitを基本からまとめてみた【 SourceTreeを利用したGitの基本操作】 https://qiita.com/kanfutrooper/items/7023662d6484ab9fab02 sourcetree 2023-03-01 17:11:58
Ruby Railsタグが付けられた新着投稿 - Qiita [Rails]新しいバージョンに切り替わらないときの対処案 https://qiita.com/maruvi/items/0be34489336f66b1649f rails 2023-03-01 17:06:36
海外TECH DEV Community 10 Tips for Those Who Decide to Start a New Project on AWS https://dev.to/roman_abdulmanov/10-tips-if-you-decide-to-start-a-project-on-aws-3ebd Tips for Those Who Decide to Start a New Project on AWSHere I collected few tips that may be useful for those just at the beginning of their AWS journey Account separationIt is worth separating production and dev accounts from the very beginning It costs almost nothing but if you do not do it initially you will have to spend precious time on rework This is important to do for the following reasons It allows you to limit people accessing the production environmentIt allows you to create a loosely coupled architecture where the prod environment doesn t depend on the testing environmentYou will have separate billing so that you will have the ability to see how much you pay for your production This is necessary for passing different security and compliance checks PermissionsThe question may quickly arise how to limit the permissions for developers For example Protect against admins assuming roles between accounts Developers with administrator rights could assume a role from another account by defaultIf you have not restricted access to SSM decrypt methods etc developers can access various secrets stored in the environment tokens keys etc Access to the Billing DashboardThe simple solution grant only the necessary permissions but this is more complex than it looks because the scope of rights changes constantly and needs to be continuously reviewed With this approach developers will periodically lose access when they need to develop something new that was not considered earlier To solve this you can grant a more comprehensive range of rights e g up to an Administrator on a test account But set different permission boundaries Good post about it I also recommend setting up MFA for all accounts to reduce the risk of token leaks AutomationAWS is very captivating with its simplicity in setting something up manually especially at the beginning of a project But behind this simplicity lies many complexities There is a very high probability of breaking something by accidentIt is difficult to repeat the environment and for example create an identical staging for the developerIt isn t easy to understand how our system looks like in general because this knowledge is in our headsTo solve this I suggest using one of the popular solutions TerraformPulumiServerless FrameworkAWS SAMAWS CloudFormation CloudFormationThe solutions above use CF So if using CF to manage infrastructure you should familiarize yourself with its limitations The most frustrating thing is the resource limit which you will run out of very quickly if you prefer a serverless approach or have a large project So to avoid this problem at a crucial moment I suggest you think about a strategy for placing resources in nested stacks e g plugin for Serverless Framework CognitoAWS Cognito is a powerful service for a customer identity and access management But when setting it up you can make two mistakes that can cause serious trouble in production Case sensitive user pool If you create a User Pool programmatically you must set the CaseSensitive parameter to false otherwise it will default to true This complicates the sign in process e g User test co vs user test co And most importantly after creating the User Pool you can no longer change this settingThe same applies to Mutable attributes This means that if for example you mark an email as Mutable users will not be able to change their emails and most importantly you cannot change the value of Mutable without recreating the User PoolRecreating the User Pool is only possible by resetting user passwords which would look suspicious Therefore if you made such mistakes when configuring your User Pool and have already launched the product you may have unexpected problems that could have been easily avoided initially DynamoDBDynamoDB unlike the usual relational databases recommends using the single table design For Node js users to make this approach easier to understand and make the code incredibly simpler I recommend looking at the OneTable library Here are some benefits Single table designTypeScript supportLocal unit test supportSimple APIMigrations supportIndexes amp conditions supportBuilt in encryption support BackupsAWS has a built in backup service This is a very powerful service that for example allows you to create a particular type of backup without the possibility of deleting previously created snapshots But this service has its limitations We are faced with the fact that when restoring DynamoDB we must manually restore DDB Streams This would be problematic if as we do everything is deployed through CloudFormation which does not like manual changes Therefore to avoid surprises at the most inconvenient moment in addition to creating backups you need to develop test and document the recovery procedure and periodically perform test recovery to ensure that the process is still up to date LambdaIf you are using lambda you probably have heard about the cold start problem To solve this there are different workarounds warm up requests language specific solutions lambda provisioned concurrency etc But I want to focus on one in my opinion the most critical factor in addition to the chosen language amp memory function bundle size Your bundle size directly affects the cold start time because AWS needs to prepare the code before it can be run Even if you use Lambda Layers and extract dependencies these Layers still need to be loaded So I advise trying to minimize the bundle size in every possible way For example we use Node js we never add AWS SDK because it is already present in the environment we use esbuild because it showed the best results in terms of speed and size and as a result we don t have a single function larger than KBs AlarmsThe alarm system is incredibly useful for detecting suspicious activity and important alerts For example we set up alarms when various errors occur in the system Lambda errors amp throttlingErrors in logs e g from docker WAF alarmsBilling alarms spending more than a certain amount in Custom metricsAnd then we connected SNS to send these alarms to us in a special slack channel Audit logsYou can enable activity logging via CloudTrail It costs almost nothing but can be indispensable when analyzing suspicious activity or determining why something is not working in the system We had an incident with user registration in Cognito and this logging helped to sort out the real reasons 2023-03-01 08:18:37
医療系 医療介護 CBnews 東京でインフル患者減、ピークアウトの兆しも-都内の全31保健所のうち23保健所で前週下回る https://www.cbnews.jp/news/entry/20230301170441 都内 2023-03-01 17:15:00
金融 RSS FILE - 日本証券業協会 つみたてNISA取扱い証券会社一覧 https://www.jsda.or.jp/anshin/oshirase/tsumitatenisaichiran.html 証券会社 2023-03-01 09:00:00
金融 RSS FILE - 日本証券業協会 採用情報 https://www.jsda.or.jp/about/recruit/index.html 採用情報 2023-03-01 09:00:00
金融 金融庁ホームページ 職員を募集しています。(一般行政事務を担う係長級職員) https://www.fsa.go.jp/common/recruit/r4/souhi-03/souhi-03.html 行政事務 2023-03-01 09:30:00
海外ニュース Japan Times latest articles High school student arrested after teacher stabbed at school in Saitama https://www.japantimes.co.jp/news/2023/03/01/national/crime-legal/saitama-school-teacher-stabbed/ High school student arrested after teacher stabbed at school in SaitamaThe teacher was conscious when he was taken to hospital and the injury was not life threatening according to the city s board of education 2023-03-01 17:54:05
海外ニュース Japan Times latest articles Seiya Suzuki in shock over injury-forced WBC withdrawal https://www.japantimes.co.jp/sports/2023/03/01/baseball/mlb/suzuki-wbc-injury-shock/ makihara 2023-03-01 17:52:35
ニュース BBC News - Home Matt Hancock disputes claim he rejected care home Covid advice https://www.bbc.co.uk/news/uk-politics-64807127?at_medium=RSS&at_campaign=KARANGA false 2023-03-01 08:45:02
ニュース BBC News - Home House prices see biggest annual fall in over 10 years https://www.bbc.co.uk/news/business-64807971?at_medium=RSS&at_campaign=KARANGA february 2023-03-01 08:14:45
ニュース BBC News - Home Bola Tinubu wins Nigeria's presidential election against Atiku Abubakar and Peter Obi https://www.bbc.co.uk/news/world-africa-64760226?at_medium=RSS&at_campaign=KARANGA calls 2023-03-01 08:37:18
ニュース BBC News - Home Customers to be warned of energy bill rises from April https://www.bbc.co.uk/news/business-64801155?at_medium=RSS&at_campaign=KARANGA rises 2023-03-01 08:44:23
ニュース BBC News - Home Secondary school places: When do parents find out? https://www.bbc.co.uk/news/education-64662613?at_medium=RSS&at_campaign=KARANGA wales 2023-03-01 08:52:14
ビジネス 不景気.com 日医工が北米事業から撤退、多額減損で米加子会社を売却 - 不景気com https://www.fukeiki.com/2023/03/nichiiko-pullout-na.html 後発医薬品 2023-03-01 08:56:23
ニュース Newsweek 衝撃のビフォーアフター...「ごみ屋敷」掃除ボランティアで、世界に大反響を呼んだ女性 https://www.newsweekjapan.jp/stories/world/2023/03/post-100982.php SNSのフォロワーの人が、夫が自殺してしまったと言ってきた。 2023-03-01 17:46:00
IT 週刊アスキー 最大80%オフ!PS Storeとニンテンドーeショップで「セガ 春先取りセール」を開催中 https://weekly.ascii.jp/elem/000/004/126/4126892/ playstationstore 2023-03-01 17:45:00
IT 週刊アスキー 悪魔退治に挑め!スクエニの新作スマホゲーム『エンゲージ・キル』正式サービス開始 https://weekly.ascii.jp/elem/000/004/126/4126890/ engagekill 2023-03-01 17:30:00
IT 週刊アスキー LINE、ヤフー、PayPayが連携したマイレージ型販促サービス「LYP(エルワイピー)マイレージ」開始 https://weekly.ascii.jp/elem/000/004/126/4126891/ paypay 2023-03-01 17:30:00
IT 週刊アスキー HISモバイル、3世代での家族での契約で最大3万円のキャッシュバックのキャンペーン https://weekly.ascii.jp/elem/000/004/126/4126893/ 発生 2023-03-01 17:20:00
マーケティング AdverTimes GPTモデルをキュレーターに迎え、アーティスト 岸裕真が新作を発表 https://www.advertimes.com/20230301/article412872/ dieselartgallery 2023-03-01 08:09:45
マーケティング AdverTimes 『anan』前編集長 能勢邦子氏が考える ビジネスに生きる編集術 https://www.advertimes.com/20230301/article412781/ 『anan』前編集長能勢邦子氏が考えるビジネスに生きる編集術出版・メディアで仕事をする人にとって必要な能力のひとつ「編集力」。 2023-03-01 08:00:52

コメント

このブログの人気の投稿

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