投稿時間:2022-02-21 09:29:45 RSSフィード2022-02-21 09:00 分まとめ(33件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… 新型「iPhone SE」に対応したケースが登場し始める https://taisy0.com/2022/02/21/153552.html apple 2022-02-20 23:30:33
TECH Engadget Japanese Galaxy S22 Ultra 日本最速クイックレビュー (山根博士) https://japanese.engadget.com/s22-ultra-233002630.html galaxysultra 2022-02-20 23:30:02
TECH Engadget Japanese SyQuestの成長を支えた5.25インチリムーバブルHDD「SQ400」「SQ800」「SQ2000」:スイートメモリーズ File082 https://japanese.engadget.com/sq400-230035825.html syquest 2022-02-20 23:00:35
IT ITmedia 総合記事一覧 [ITmedia エグゼクティブ] 移動の変革MaaS 鉄道各社が争うデータ取得 https://mag.executive.itmedia.co.jp/executive/articles/2202/21/news072.html itmedia 2022-02-21 08:27:00
TECH Techable(テッカブル) 中小企業のテレワーク導入「エッセンシャルワーカーへの気遣い」など心理的な課題が壁に https://techable.jp/archives/173206 中小企業 2022-02-20 23:00:53
js JavaScriptタグが付けられた新着投稿 - Qiita 初学者友人「JavaScriptって役に立つの?」わい「ブラウザ設定で無効にっと。ほれ。」→結果… https://qiita.com/Naughty1029/items/4aeef74b8b3a38c2a188 Chromeを使ってたのですが、JavaScriptがオフ≒IEという捉え方なのでしょうかJavaScriptがなかったら英語ドキュメントを読むのも苦労しそうですね。 2022-02-21 09:00:16
AWS AWSタグが付けられた新着投稿 - Qiita AWS Amplifyで独自ドメインホスティング環境を構築してみた https://qiita.com/dayjournal/items/57cb0a8232d11c6c99af 対象ドメインを選択→「ドメインを設定」をクリック。 2022-02-21 08:24:58
技術ブログ Developers.IO Profllyを支えるアーキテクチャや技術スタックを紹介します(月刊Proflly2022年2月号) https://dev.classmethod.jp/articles/whats-new-proflly-202202/ proflly 2022-02-20 23:30:27
技術ブログ Developers.IO DynamoDBの複数テーブルをStepFunctionでS3にExportしてみた https://dev.classmethod.jp/articles/20220221-dynamodb-export-s3-by-stepfunction/ dynamodb 2022-02-20 23:18:56
技術ブログ Developers.IO dbt cloudからSnowflakeへのOAuth接続を試してみた https://dev.classmethod.jp/articles/20220220-dbt-snowflake-oauth/ snowflake 2022-02-20 23:18:10
海外TECH DEV Community Must/Should/Can - a Personal Organization System https://dev.to/joedietrichdev/mustshouldcan-a-personal-organization-system-499e Must Should Can a Personal Organization SystemRepo joedietrich dev must should can InspirationA little while ago I found myself struggling to bring order to my tasks at work I d tried many different organizational systems Some didn t suit my work style others were way too complicated adding to my daily tasks rather than making them easier I decided to put together a system that worked for me The SystemI divide my tasks for the day into three buckets Tasks I must do today Tasks I should do today Tasks I can do today Every day I rewrite and carry over any incomplete tasks to the next day It s simple but it works for me Basic FeaturesI took the simple pen and paper tools and made them digital The features of Must Should Can are straightforward as is system itself Account Creation and LoginTask Creation Editing and PrioritizationTask ResetsTask Archiving and Deleting What I Used BackendRuby on Rails as the framework for the APIActiveModelSerializers to build JSON viewsPostgreSQL as the databaseThe bcrypt gem to improve password security in tandem with the ActiveRecord has secure password feature FrontendReact Create React AppReact Router v For client side routingStyled Components to style the application Authorization Passwords and SaltingWhile building Must Should Can it did not escape my attention that a user s tasks could be very private so there was a need to protect them as much as possible To ensure that privacy I not only implemented user authorization and password authentication I protected their passwords with the ActiveRecord has secure password feature has secure passwordIf you re storing passwords in any system it is a very bad idea to store them in plaintext anywhere in your application Doing so exposes you and your users to potential data losses which is a Bad Thing The has secure password feature adds methods to an ActiveRecord model that make setting and authenticating securely hashed and salted passwords on your user models easy Under the hood has secure password uses the bcrypt gem to hash and salt your user s passwords This process makes it very difficult for bad actors to access your users password data even if they manage to steal your database Hashing is the process of taking data and processing it to create a new value usually of a fixed length sometimes called a fingerprint The process is unidirectional meaning once a value has been hashed it is incredibly impractical with current technology to reverse the process to derive the original value from the hash For example using bcrypt the password Wolfgang the puppy might hash to the value a jLhAzasXWNglfGjpNuFXcOYBCffkERWcQJwBFzxsAsUsQnK This unidirectionality is what makes hashed passwords more secure than plaintext passwords a hacker will need to do extra work to break the encryption involved Or they might have a Rainbow Table which is a precomputed set of values that will let an attacker look up the password based on a given hash If the hashing function is known to the attacker hashing alone won t be enough to protect a user s password since the same input value will always produce the same output hash This is why bcrypt will also salt a password before storing the hash in your database A salt is data added to the input of a hash function In bcrypt s implementation a unique salt is added to every password on generation This means that an attacker would need to use a different pre computed Rainbow Table for every single password which is computationally prohibitive All of this means that properly implemented using has secure password and bcrypt in your application is one important step protect you and your users from bad actors Next StepsI plan to introduce the ability to add notes to tasks so you can for example sketch out an agenda for a meeting or divide tasks into subtasks I also plan to enhance the archive with grouping and sorting Later on I ll enhance the user s account management experience letting them reset their password and edit their user name EndThanks for reading For a walkthrough take a look at the demo video Access the application itself at 2022-02-20 23:17:04
海外TECH DEV Community Self-hosting Quirrel https://dev.to/remixtape/self-hosting-quirrel-5af7 Self hosting QuirrelQuirrel has recently been acquired by Netlify and this is exciting news for Simon skntt Quirrel s author who joined their team The hosted service quirrel dev is being deprecated later this year and has stopped taking new sign ups This leaves a hole in the job queuing as a service niche but thankfully Quirrel is and will stay open source which makes it possible to switch to self hosted instances I ve been running my own self hosted Quirrel instance for both Shellphone and Remixtape on Fly io and this blog post is here to help you with this In this guide I won t go over setting up flyctl nor using Quirrel as their respective documentations would do a much better job than I at that TL DR Deploy RedisDeploy QuirrelGenerate your app s Quirrel tokenDeployment files and instructions can be found in this repository Deploying RedisFirst set up the Fly app to be deployed with the following Dockerfile and shell script named start redis server sh The script starts Redis with persistent storage which is needed for Quirrel FROM redis alpineADD start redis server sh usr bin RUN chmod x usr bin start redis server shCMD start redis server sh bin shsysctl vm overcommit memory sysctl net core somaxconn redis server requirepass REDIS PASSWORD dir data appendonly yesThen initialize the Fly app that will host your Redis instance with the following fly toml file It references the redis data Fly storage volume we haven t created yet which is needed for persistent storage app quirrel redis mounts destination data source redis data flyctl launch name quirrel redis no deploy copy configNow that Fly knows about your Redis app let s deploy the storage volume I recommend deploying it in the same region as your Redis instance In my case it s CDG Paris France flyctl volumes create redis data region cdgSecure Redis with a strong random password I usually use openssl to generate this kind of password Keep it somewhere safe we will need it to deploy Quirrel later openssl rand hex copy its output you can use this alternative below if you can t use openssl node e console log crypto randomBytes toString hex flyctl secrets set REDIS PASSWORD paste redis password hereNow we can deploy Redis flyctl deploy Deploying QuirrelThe next step is to deploy Quirrel with the following fly toml file It uses the Quirrel Docker image published to Quirrel s GitHub container registry app quirrel build image ghcr io quirrel dev quirrel main services internal port protocol tcp services concurrency hard limit soft limit type connections services http checks interval s method get path health protocol http timeout s services ports handlers http port services ports handlers tls http port flyctl launch name quirrel no deploy copy configNow that Fly knows about your Quirrel app it s time to set up its environment variables starting with Quirrel s secret passphrase Like Redis password I m using openssl to generate it openssl rand hex copy its output you can use this alternative below if you can t use openssl node e console log crypto randomBytes toString hex flyctl secrets set PASSPHRASES paste quirrel passphrase hereThen we need to tell Quirrel how to connect to our Redis instance it s time to use that Redis password saved earlier Fly servers use IPv only so make sure to append family to connect to Redis over IPv flyctl secrets set REDIS URL redis paste redis password here cdg quirrel redis internal family And now we can deploy Quirrel flyctl deploy Connect your app to your Quirrel instanceThe last step is to connect your app to your freshly deployed Quirrel instance First let s acquire a Quirrel token from your instance Note you can retrieve your instance s public URL from your Fly dashboard Save the token returned from this command for your app we re going to need it for the next step curl user ignored paste quirrel passphrase here X PUT Finally configure and deploy your application with the following environment variables QUIRREL API URL your Quirrel instance s public URLQUIRREL TOKEN paste quirrel token here your Quirrel token previously generatedQUIRREL BASE URL www exampleapp com your app s URL Bonus using ui quirrel devQuirrel provides a development UI that can connect to any Quirrel instance and allow you to monitor queued jobs A public version is hosted at ui quirrel dev but your Quirrel instance s public URL also hosts this development UI To connect to your self hosted Quirrel instance click on the dropdown menu next to the Quirrel logo in the header to open a connection modal Fill it out with your instance s public URL your app s token and the Quirrel passphrase you generated earlier The modal should look like this Feel free to play around queue a job and see it appear in real time in this development UI Closing notesCongrats you did it You ve deployed a Redis instance a Quirrel instance and configured your production app to use your self hosted Quirrel instance Shout out to Simon skntt for building this cool piece of software I hope this helps Quirrel users transition to self hosting Want to get a headstart to build your next SaaS I m working on Remixtape the modern Remixboilerplate that includes everything you need to build better websites Skip implementing standard functionality like background jobs authentication account management sessions subscription payments teams transactional emails ‍It gives you the solid foundation you need to build great web apps today and scale tomorrow 2022-02-20 23:11:40
海外TECH Engadget Epic Games will offer full-time employment to many of its US quality assurance testers https://www.engadget.com/epic-games-contingent-workers-full-time-230108411.html?src=rss Epic Games will offer full time employment to many of its US quality assurance testersFortnite developer Epic Games confirmed this weekend it will transition most of its US based contingent workers to full time positions with benefits The news comes after The Verge nbsp obtained an internal memo detailing the company s plans Epic spokesperson Elka Looks said the studio plans to hire “a few hundred existing contractors and that most of those workers currently serve as quality assurance testers Epic will directly employ those individuals and they ll have access to the company s benefits plan Looks also noted the company will still hire contingent workers to fill “short term needs and the memo The Verge obtained said Epic would not extend the full time employment offer to some workers “There are a few exceptions in which it makes sense for both the worker and Epic to maintain contingent worker status the document said according to the outlet Epic s decision to convert many of its QA testers to full time employees comes at a moment when workers in similar positions at Activision Blizzard s Raven Software work to unionize In December the studio laid off a dozen QA testers leading to a walkout involving both full time employees and contractors Last month those workers said they would unionize with the Communication Workers of America and asked the troubled publisher to voluntarily recognize their group Activision did not do that and instead moved to reorganize the studio in a way that critics of the company claim is designed to thwart those efforts 2022-02-20 23:01:08
海外科学 NYT > Science Biden Administration Halts New Drilling in Legal Fight Over Climate Costs https://www.nytimes.com/2022/02/20/climate/carbon-biden-drilling-climate.html Biden Administration Halts New Drilling in Legal Fight Over Climate CostsThe Justice Department is pausing new federal oil and gas leases and permits after a judge blocked the government from weighing the cost of climate damage in decisions 2022-02-20 23:39:06
ニュース @日本経済新聞 電子版 円建て金先物が最高値 1年半ぶり、リスク回避と円安で https://t.co/ZfYCjt7a63 https://twitter.com/nikkei/statuses/1495548748310904832 金先物 2022-02-20 23:59:42
ニュース @日本経済新聞 電子版 飲食店チェーンのグローバルダイニングが営業時間の短縮命令などは違法・違憲として東京都を訴えています。類似訴訟が少なく海外とは対照的。経済とのバランスなど行政判断の妥当性の検証も課題となります。 https://t.co/K4PP37Gsrw https://twitter.com/nikkei/statuses/1495546325026361353 飲食店チェーンのグローバルダイニングが営業時間の短縮命令などは違法・違憲として東京都を訴えています。 2022-02-20 23:50:04
ニュース @日本経済新聞 電子版 ICBMとは 米ロが配備制限、中国は増強 #日経きょうのことば https://t.co/t9i4F3A20p https://twitter.com/nikkei/statuses/1495543808037167109 配備 2022-02-20 23:40:04
ニュース @日本経済新聞 電子版 「ワクチン3回目接種、遅い」73%、「食料品や光熱費値上げが打撃」77%。共同通信が世論調査を実施。新型コロナの水際対策の緩和には「早過ぎる」45.7%、「適切だ」34.9%と意見が分かれました。 https://t.co/P5XyNj5Tjg https://twitter.com/nikkei/statuses/1495541335260024834 「ワクチン回目接種、遅い」、「食料品や光熱費値上げが打撃」。 2022-02-20 23:30:14
ニュース @日本経済新聞 電子版 ロシア軍にウクライナ侵攻命令か 米メディア https://t.co/FJJc7WUxZt https://twitter.com/nikkei/statuses/1495538935573118978 米メディア 2022-02-20 23:20:42
ニュース @日本経済新聞 電子版 けさ2月21日の日経電子版トップ(https://t.co/d4qup5tvuC)3本です。 ▶保険医療、政府に指揮権を 日経・日経センター緊急提言 https://t.co/dwl81PMoH9 ▶ロシア、軍事演習を延長 米… https://t.co/lQx5awYQ8U https://twitter.com/nikkei/statuses/1495538305752051719 けさ月日の日経電子版トップ本です。 2022-02-20 23:18:12
ニュース @日本経済新聞 電子版 モスクワなど大都市のショッピングセンターや鉄道駅で「襲撃の恐れがある」。アメリカの在ロシア大使館が注意喚起をしています。ロシアがウクライナ侵攻の口実のため偽装工作を進めていると分析しています。 https://t.co/hxfFo0Jrdg https://twitter.com/nikkei/statuses/1495536266951204870 モスクワなど大都市のショッピングセンターや鉄道駅で「襲撃の恐れがある」。 2022-02-20 23:10:06
ニュース BBC News - Home Ukraine tensions: US sounds fresh alarm over Russia invasion fears https://www.bbc.co.uk/news/world-europe-60454818?at_medium=RSS&at_campaign=KARANGA attack 2022-02-20 23:45:04
ニュース BBC News - Home Jamal Edwards, music entrepreneur and Youtube star, dies aged 31 https://www.bbc.co.uk/news/uk-60457063?at_medium=RSS&at_campaign=KARANGA sheeran 2022-02-20 23:55:02
ニュース BBC News - Home 'I'm fully committed to PGA Tour' - Johnson & DeChambeau spurn Saudi-backed Super League https://www.bbc.co.uk/sport/golf/60457721?at_medium=RSS&at_campaign=KARANGA x I x m fully committed to PGA Tour x Johnson amp DeChambeau spurn Saudi backed Super LeagueDustin Johnson and Bryson DeChambeau distance themselves from a Saudi backed Super League by reaffirming their commitment to the PGA Tour 2022-02-20 23:26:11
ビジネス ダイヤモンド・オンライン - 新着記事 米FDA、4回目接種を検討 秋にも実施の可能性 - WSJ発 https://diamond.jp/articles/-/296921 検討 2022-02-21 08:23:00
ビジネス ダイヤモンド・オンライン - 新着記事 金先物が8カ月ぶり高値、ウクライナ情勢緊迫化で - WSJ発 https://diamond.jp/articles/-/296922 高値 2022-02-21 08:02:00
ビジネス 電通報 | 広告業界動向とマーケティングのコラム・ニュース 電通グループ、「マジック:ザ・ギャザリング」のバーチャル・アート展を開催 https://dentsu-ho.com/articles/8085 ownedvrpfsolution 2022-02-21 09:00:00
北海道 北海道新聞 米長官「侵攻の瀬戸際」と懸念 ロシア軍ベラルーシ残留で https://www.hokkaido-np.co.jp/article/648114/ 国務長官 2022-02-21 08:17:00
北海道 北海道新聞 東日本で大雪の恐れ 北日本と北陸で強風も https://www.hokkaido-np.co.jp/article/648101/ 北陸地方 2022-02-21 08:08:18
北海道 北海道新聞 メダリストたち再び戦いの場へ 「金」の高木美帆は世界選手権 https://www.hokkaido-np.co.jp/article/648095/ 世界選手権 2022-02-21 08:08:10
北海道 北海道新聞 男児殺害「ぜんそくの持病ある」 逮捕の母親、発覚回避か https://www.hokkaido-np.co.jp/article/648093/ 神奈川県大和市 2022-02-21 08:06:06
北海道 北海道新聞 SNS「#野菜」は要注意 京都府警が薬物隠語集公開 https://www.hokkaido-np.co.jp/article/648092/ 交流サイト 2022-02-21 08:04:09
ビジネス 東洋経済オンライン 「配属ガチャ」「上司ガチャ」が何とも不毛すぎる訳 キャリア形成、「いい仕事」は待つ時代じゃない | 最強組織のつくり方 | 東洋経済オンライン https://toyokeizai.net/articles/-/511513?utm_source=rss&utm_medium=http&utm_campaign=link_back 東洋経済オンライン 2022-02-21 09:00: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件)