投稿時間:2021-03-25 12:45:23 RSSフィード2021-03-25 12:00 分まとめ(59件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
TECH Techable(テッカブル) スマホを空から配達! Samsungがドローン会社と提携しアイルランドで実施 https://techable.jp/archives/151146 samsung 2021-03-25 02:30:31
IT 情報システムリーダーのためのIT情報専門サイト IT Leaders サイバートラスト、ソフトウェア脆弱性調査・可視化ツール「MIRACLE Vul Hammer」を発表 | IT Leaders https://it.impress.co.jp/articles/-/21257 サイバートラスト、ソフトウェア脆弱性調査・可視化ツール「MIRACLEVulHammer」を発表ITLeadersサイバートラストは年月日、企業の情報システムを構成するOSやソフトウェアに脆弱性があるかどうかを調べて可視化する脆弱性管理ソフトウェア「MIRACLEVulHammerミラクルバルハンマー」を発表した。 2021-03-25 11:18:00
AWS lambdaタグが付けられた新着投稿 - Qiita Lambda関数を作成する開発者に必要な権限を考えてみた https://qiita.com/maika_kamada/items/78a7985b121ce4644463 Lambda関数にアタッチするIAMポリシーとIAMロールを自分で作って試せると嬉しいなと思い、Lambda関数を構築する開発者に必要なIAM周りのIAMポリシーについて考えてみました。 2021-03-25 11:52:14
python Pythonタグが付けられた新着投稿 - Qiita Macにgrpcをインストールする方法 https://qiita.com/hatt_takumi/items/317b15eb8150aebd66f4 bigsur 2021-03-25 11:57:30
python Pythonタグが付けられた新着投稿 - Qiita ロジスティック回帰(備忘録) https://qiita.com/Genchan/items/a5ab9bbd7ab67c0effe5 modelpredictprobaXtrainilocarrayeeeeeeeeeeeeeeeeeeeeちなみに、に分類される確率だけを出力する場合は、モデル名predictproba評価用の説明変数データstatsmodelsapiの場合モデル作成ポイントは、smaddconstant説明変数データをしないと、回帰式の切片が出てこないところ。 2021-03-25 11:16:59
js JavaScriptタグが付けられた新着投稿 - Qiita Introduction to Cookies & Storage (Local and Session Storage) https://qiita.com/jerfareza/items/6c978220ae6789743edb Introduction to Cookies amp Storage Local and Session Storage If you have been working on frontend development for quite some time undoubtedly you will encounter cookies and storages at some point So what are they CookiesCookies in terms of software development are information stored in a file or several files on your computer by websites that you visit A cookie Is a pretty old technology dating back to Is used mainly for state management it remembers your logins shopping carts personalization user preferences and tracking might be used for recording and analyzing user behavior Is small sized up to bytes kb Can be accessed server side or client side Has a lifetime depending on its definition Session cookies are deleted when the user s browsing session ends while permanent cookies last until its Expires date attribute or Max age attribute Uses key value pairings How to make secure cookiesUse Secure attributeThis ensures cookies to be sent only to the server on encrypted requests over HTTPS never over HTTP It s better to use this attribute in tandem with HttpOnly Use HttpOnly attributeDespite its potentially confusing name as it contradicts the above attribute this attribute prevents access of cookies using Document cookie API by ensuring they are sent only to the server This helps mitigating XSS cross site scripting attacks Shorten the lifetime of sensitive cookiesIf cookies are used to store user related information such as authentication it s better to set a short lifetime Combined all three together we can set up a cookie like Set Cookie id value Expires date Max Age age Secure HttpOnlySet Cookie id cookie id Expires Thu June GMT Max Age Secure HttpOnlyIf both Expires and Max Age exist Max Age has precedence Set SameSite attributeCookies misuse can lead to CSRF cross site request forgery Let say you visited an e commerce website A The website links to another website B that hosts some of the images for the product you are browsing While sending request for images to B cookies belong to that website might be sent along thus potentially enabling B to know what are you doing in A We can for instance block all third party websites cookies to prevent CSRF but that might lead to a poor browsing experience Instead we should be setting SameSite attribute By doing so we can control whether to allow cookies to be sent along for requests initiated by third party websites For example Set Cookie SameSite Lax Set Cookie SameSite Strict You can read a much complete explanation here Local storagesLocal storages in terms of software development as the name implies are storages stored locally in your computer by websites that you visit It might sound similar to cookies because in a sense they have a similar purpose But here s the difference Local storage Came into prominence around the early s Is usually used for personalization user preferences preferred theme that is not sensitive data Has max size up to MB depending on the browser that you use much bigger than cookie Has no expiration time Can only be accessed on the client side via window localStorage This means on each HTTP request data in local storage is not sent to the server Uses key value pairings always in UTF format Note Don t confuse local storage with cache storage That s an entirely different storing method On securityLocal storages store information as is and it has no data protection Period So obviously we should never store in local storage sensitive data such as User amp sessions IDsJWTs JSON Web Tokens Personal informationAny credit card related informationAPI keysAnd since local storages are pure JavaScript there s no telling that a malicious script may access your storages and pull out all the information there since it s quite easy to loop over storage without knowing the keys Something like for let i i lt localStorage length i let key localStorage key i console log key localStorage getItem key What about session storage It s basically just local storage with a limited lifetime Session storages exist as long as the webpages browser tabs that initiated them are alive If you open a site in several browser tabs each browser tab will have different session storage If you do a page refresh the data stays But closing the tab will remove the data I personally have never used session storage Feel free to let me know what would be the optimum usage ClosingThis short article more like a memo is nothing spectacular Other people might have written something more comprehensive regarding this topic So why did I do this Because I m a firm believer that if you want to remember something write it down in your own words and you will remember it better And it s been working great for me so far 2021-03-25 12:00:05
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) 勤務年数で区切ったグラフをつくりたい https://teratail.com/questions/329751?rss=all excel 2021-03-25 11:59:59
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) Angular 二重中括弧内の連想配列表示方法を教えてほしい https://teratail.com/questions/329750?rss=all Angular二重中括弧内の連想配列表示方法を教えてほしい前提・実現したいことAngularを勉強中で下記コードを試しているのですが、想定どおりに表示されません。 2021-03-25 11:56:42
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) pythonでfor文の適切な使い方を教えてほしい。 https://teratail.com/questions/329749?rss=all 前提・実現したいことfor文を使って値を取得したいのですがうまくいきません。 2021-03-25 11:51:09
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) sql select count に+1をして変数に代入したい エラー:Unsupported operand types https://teratail.com/questions/329748?rss=all sqlselectcountにをして変数に代入したいエラーUnsupportedoperandtypescntDBselectselectcountfromlineitemsparamnamegtrequestgtnameauthorgtrequestgtauthorpricegtrequestgtpriceidgtcntここでUnsupportedoperandtypesエラーselectnbspcountnbspの結果は数値で返ってきてるのですが、型が違う変数同士の加算で起こるエラーが出ています。 2021-03-25 11:50:18
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) 中にユーザーが入ってる配列はどっちがいい? userArray or usersArray https://teratail.com/questions/329747?rss=all userarrayorusersarray 2021-03-25 11:50:17
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) datepicker の曜日が崩れる https://teratail.com/questions/329746?rss=all 2021-03-25 11:48:03
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) JSP select disabledがグレーアウトしない https://teratail.com/questions/329745?rss=all JSPselectdisabledがグレーアウトしない前提JSPでselectにdisabledを付与している箇所があります。 2021-03-25 11:43:38
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) ブラウザバックなどで POST 内容を再送信させない方法 https://teratail.com/questions/329744?rss=all nbsppost 2021-03-25 11:41:41
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) 関数の呼び出し時の違いについて(Python) https://teratail.com/questions/329743?rss=all 現在Pythonを学習しているのですが、関数の呼び出し時の違いがよくわかりません。 2021-03-25 11:35:14
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) Google Spread Sheetの別シート参照を、セルの内容に合わせてシートを選択したい https://teratail.com/questions/329742?rss=all GoogleSpreadSheetの別シート参照を、セルの内容に合わせてシートを選択したいGooglenbspSpreadnbspSheetの別シート参照をしているのですが、特定のセルに入力してあるシート名をもとにしてシートを選択、データを引用したいです。 2021-03-25 11:32:24
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) 商品のメニュー表なのですが、こちらのphpコードを短くするにはどのようになりますか。 https://teratail.com/questions/329741?rss=all セットメニューの場合フィールドの名前は、「商品名sname、sname、sname」「温shotshotshot」「冷scoldscoldscold」「値段spricespricesprice」というように、商品の増減を予想し多めに登録しています。 2021-03-25 11:29:34
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) Androidエミュレーターのhostsが変更できない https://teratail.com/questions/329740?rss=all Androidエミュレーターのhostsが変更できない前提・実現したいことMAMPでローカルサーバーを立てて、Androidエミュレーターからlocalhostへアクセスする開発環境を構築しようとしています。 2021-03-25 11:27:17
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) ツイートIDから投稿内容(テキスト)を取得したい https://teratail.com/questions/329739?rss=all ツイートIDから投稿内容テキストを取得したいやりたいことツイートリンクをコピーしてそのURLからツイートIDを取得し、そのツイートIDを用いて元のツイート内容を取得したい。 2021-03-25 11:25:50
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) Django再描画時にタブを指定したい https://teratail.com/questions/329738?rss=all Django再描画時にタブを指定したいつのタブがあるhtmlにreturnrenderで再描画したい時下記ソースの書き方では描画するタブが指定できません。 2021-03-25 11:11:22
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) 文字列の16進数表記のプログラムがわからない。 https://teratail.com/questions/329737?rss=all 進数のフォーマット演算子がXであることは知っています。 2021-03-25 11:07:40
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) dxlib をgcc からコンパイルしたい。 https://teratail.com/questions/329736?rss=all dxlib を gcc から コンパイル し たい 。 2021-03-25 11:03:42
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) HerokuとEC2を見分けたい https://teratail.com/questions/329735?rss=all HerokuとECを見分けたいサービスが使用しているサーバーを見分けたいです。 2021-03-25 11:02:54
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) Rails環境下のElasticSearchのコントローラ設定をしたい https://teratail.com/questions/329734?rss=all Rails環境下のElasticSearchのコントローラ設定をしたい環境RubyRubynbsponnbspRailsMySQLElasticsearchSNAPSHOTkuromojiltgemgtelasticsearchmodelnbspnbspdelasticsearchrailsnbspnbspd実現したいこと・前置きElasticSearchを使って既存のMySQLのレコードを取り込み、全文検索を高速化させたいです。 2021-03-25 11:02:52
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) fieldのないデータをfilterにかけて値を取得したい(django-rest-framework) https://teratail.com/questions/329733?rss=all fieldのないデータをfilterにかけて値を取得したいdjangorestframework現在DRFdjangorestframeworkにてAPIを作成しております。 2021-03-25 11:02:07
Program [全てのタグ]の新着質問一覧|teratail(テラテイル) 1つのグラフに値を更新し続けたいが、別グラフが生成されてしまう。Jupyter Notebook(anaconda3) https://teratail.com/questions/329732?rss=all つのグラフに値を更新し続けたいが、別グラフが生成されてしまう。 2021-03-25 11:02:00
Ruby Rubyタグが付けられた新着投稿 - Qiita RSpec 多対多関係 モデルテスト(例.Tagモデル) https://qiita.com/holdout0521/items/6de7b50549f8f7f952ca RSpec多対多関係モデルテスト例TagモデルはじめにrspecのTagのmodelテストをする際、中間テーブルposttagを介したやり方に苦戦したため、factorybotを用いて、多対多関係hasmanythroughのテスト作成方法をご説明致します。 2021-03-25 11:31:50
Ruby Rubyタグが付けられた新着投稿 - Qiita バリデーションの書き方(Rails) https://qiita.com/shinji0320/items/4126859ee763bdf80671 バリデーションの書き方Railsバリデーションとはバリデーションは、正しいデータだけをデータベースに保存するために制約をかける事です。 2021-03-25 11:26:34
AWS AWSタグが付けられた新着投稿 - Qiita Lambda関数を作成する開発者に必要な権限を考えてみた https://qiita.com/maika_kamada/items/78a7985b121ce4644463 Lambda関数にアタッチするIAMポリシーとIAMロールを自分で作って試せると嬉しいなと思い、Lambda関数を構築する開発者に必要なIAM周りのIAMポリシーについて考えてみました。 2021-03-25 11:52:14
AWS AWSタグが付けられた新着投稿 - Qiita 結局DynamoDBってなんやねん https://qiita.com/YU-TA-9/items/f78fff9dbc551cfae984 デメリット学習コスト多分一番のネックがここ、RDBと整合性がほぼないので基本からの学習が必要検索の制限つまり集計などには向かないです解決策にLSIとGSIを記しましたが、乱用出来る代物ではないので補佐的な位置づけで見た方が良いAWSのサービスであることAWSを使用できない、したくない場合は厳しいAWS外で動いているサービスと連携できると思うがピンポイントでDynamoDBのみ使用するのはアーキテクト的に微妙な気もしますなど後書きさらに踏み込んだ仕様に関しては、他の有識者の方の記事を見るととても参考になります。 2021-03-25 11:47:43
AWS AWSタグが付けられた新着投稿 - Qiita 【AWS】EC2へのデプロイ時にmimemagicのバージョンエラーが出た場合の対処 https://qiita.com/yohei95/items/4ba5f044e0059e8690ce 2021-03-25 11:44:22
AWS AWSタグが付けられた新着投稿 - Qiita Amazon ECR とは https://qiita.com/miyuki_samitani/items/efe3f8a1bd16b4c0c4f1 開発で使用していた同様のコンテナイメージを本番用にデプロイすることが出来ます。 2021-03-25 11:01:52
Azure Azureタグが付けられた新着投稿 - Qiita Azureとオンプレ環境をインターネットVPNのSite to Site(IKEv2)で接続する手順 https://qiita.com/kan_itani/items/0cda4479b61d543c8dde オンプレ側に引いた回線とのバランスを考えてSKUを選択しましょう。 2021-03-25 11:51:33
Ruby Railsタグが付けられた新着投稿 - Qiita 【AWS】EC2へのデプロイ時にmimemagicのバージョンエラーが出た場合の対処 https://qiita.com/yohei95/items/4ba5f044e0059e8690ce 2021-03-25 11:44:22
Ruby Railsタグが付けられた新着投稿 - Qiita RSpec 多対多関係 モデルテスト(例.Tagモデル) https://qiita.com/holdout0521/items/6de7b50549f8f7f952ca RSpec多対多関係モデルテスト例TagモデルはじめにrspecのTagのmodelテストをする際、中間テーブルposttagを介したやり方に苦戦したため、factorybotを用いて、多対多関係hasmanythroughのテスト作成方法をご説明致します。 2021-03-25 11:31:50
Ruby Railsタグが付けられた新着投稿 - Qiita バリデーションの書き方(Rails) https://qiita.com/shinji0320/items/4126859ee763bdf80671 バリデーションの書き方Railsバリデーションとはバリデーションは、正しいデータだけをデータベースに保存するために制約をかける事です。 2021-03-25 11:26:34
海外TECH Engadget Dodge's 2FA security update for muscle cars will slow thieves to a crawl https://www.engadget.com/dodge-muscle-car-pin-security-mode-022908065.html performance 2021-03-25 02:29:08
医療系 医療介護 CBnews 21年度介護報酬改定の効果検証、調査項目を了承-社保審・介護給付費分科会 https://www.cbnews.jp/news/entry/20210325112536 介護報酬 2021-03-25 11:35:00
ニュース ジェトロ ビジネスニュース(通商弘報) 韓国で保管されているLINEデータ、日本に移管へ https://www.jetro.go.jp/biznews/2021/03/ae274cc0ec824873.html 韓国 2021-03-25 02:35:00
ニュース ジェトロ ビジネスニュース(通商弘報) 2020年のアルゼンチンのEC市場、前年比2倍超に急成長 https://www.jetro.go.jp/biznews/2021/03/c01ccec9028c295f.html 市場 2021-03-25 02:30:00
ニュース ジェトロ ビジネスニュース(通商弘報) 英政府、信頼回復へ監査体制や企業統治について見直しを提言 https://www.jetro.go.jp/biznews/2021/03/77010fcd758b19c9.html 企業統治 2021-03-25 02:20:00
ニュース ジェトロ ビジネスニュース(通商弘報) 中銀が外貨保有の制度を変更、輸出者の手元外貨は31.5%に微増 https://www.jetro.go.jp/biznews/2021/03/a430df3d154c902c.html 輸出者 2021-03-25 02:15:00
ニュース ジェトロ ビジネスニュース(通商弘報) カナダ農務・農産食品省、気候変動に対応する農業気候解決(ACS)プログラムを新設 https://www.jetro.go.jp/biznews/2021/03/ae905101f2f4bd2b.html 気候変動 2021-03-25 02:10:00
ニュース ジェトロ ビジネスニュース(通商弘報) 「新型コロナ禍」の下、2020年の温室効果ガス削減目標を達成 https://www.jetro.go.jp/biznews/2021/03/c0abd3081cfadc07.html 温室効果ガス 2021-03-25 02:05:00
LifeHuck ライフハッカー[日本版] 仕事に集中したい時に、Macの通知をミュートする方法 https://www.lifehacker.jp/2021/03/231592how-to-use-do-not-disturb-on-mac.html 集中 2021-03-25 12:00:00
LifeHuck ライフハッカー[日本版] カメラ好きへのギフトにも。撮影テクが学べるユニークトランプ https://www.lifehacker.jp/2021/03/machi-ya-the-photography-deck-end.html thephotographydeck 2021-03-25 11:05:00
GCP Google Cloud Platform Japan 公式ブログ GKE で未来を築く https://cloud.google.com/blog/ja/products/containers-kubernetes/building-the-future-with-google-kubernetes-engine/ 毎日億件以上のコンテナのダウンロード、毎月万件以上の統合テストが実行され、GKEとGoogleCloudの合計で万コア時間以上が使用されています読み間違いではありません、KubernetesプロジェクトそのものがGKEとGoogleCloudで構築され、提供されています。 2021-03-25 03:00:00
北海道 北海道新聞 コロナ下希望託す 聖火リレー福島出発 https://www.hokkaido-np.co.jp/article/525464/ 聖火リレー 2021-03-25 11:43:58
北海道 北海道新聞 NBA、渡辺は3リバウンド ラプターズ連敗9で止める https://www.hokkaido-np.co.jp/article/525533/ 連敗 2021-03-25 11:43:00
北海道 北海道新聞 ゴーン被告、逃亡成功を自賛 「日本人の行動は予測容易」 https://www.hokkaido-np.co.jp/article/525532/ 日産自動車 2021-03-25 11:43:00
北海道 北海道新聞 トランスジェンダーを初承認 米高官人事で上院 https://www.hokkaido-np.co.jp/article/525517/ 高官 2021-03-25 11:08:00
北海道 北海道新聞 中京大中京2―0専大松戸 畔柳が12奪三振で完封 https://www.hokkaido-np.co.jp/article/525518/ 中京大中京 2021-03-25 11:12:00
北海道 北海道新聞 落語家の柳家小三治さん体調不良で入院 早期復帰を目指す https://www.hokkaido-np.co.jp/article/525501/ 人間国宝 2021-03-25 11:07:06
北海道 北海道新聞 中京大中京が2回戦へ 選抜高校野球大会第6日 https://www.hokkaido-np.co.jp/article/525516/ 中京大中京 2021-03-25 11:06:00
北海道 北海道新聞 GoToクーポン詐取に実刑 初摘発ケース、東京地裁 https://www.hokkaido-np.co.jp/article/525515/ 東京地裁 2021-03-25 11:05:00
北海道 北海道新聞 コロナ便乗犯罪、45件摘発 目立つ高額転売 https://www.hokkaido-np.co.jp/article/525514/ 高額 2021-03-25 11:05:00
ビジネス 東洋経済オンライン 「スズメバチに刺された」患者救う薬剤師の機転 アンサングシンデレラ 病院薬剤師 葵みどり | 漫画 | 東洋経済オンライン https://toyokeizai.net/articles/-/416699?utm_source=rss&utm_medium=http&utm_campaign=link_back 国家資格 2021-03-25 11:30:00
マーケティング AdverTimes 記者への「逆質問」はタブー? 麻生財務相の「マスクいつまで?」発言で考える https://www.advertimes.com/20210325/article344096/ 危機管理 2021-03-25 02:30:46
GCP Cloud Blog JA GKE で未来を築く https://cloud.google.com/blog/ja/products/containers-kubernetes/building-the-future-with-google-kubernetes-engine/ 毎日億件以上のコンテナのダウンロード、毎月万件以上の統合テストが実行され、GKEとGoogleCloudの合計で万コア時間以上が使用されています読み間違いではありません、KubernetesプロジェクトそのものがGKEとGoogleCloudで構築され、提供されています。 2021-03-25 03: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件)