投稿時間:2022-12-27 17:33:37 RSSフィード2022-12-27 17:00 分まとめ(36件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
IT 気になる、記になる… Amazon、読み放題サービス「Kindle Unlimited」が2ヶ月99円で利用出来る年末年始キャンペーンを開催中 https://taisy0.com/2022/12/27/166507.html amazon 2022-12-27 07:05:27
IT ITmedia 総合記事一覧 [ITmedia News] 「Appleの初売り」1月2日から 最大3.2万円分ギフトカード付与、iPhone購入で“卯年AirTag”もらえる https://www.itmedia.co.jp/news/articles/2212/27/news135.html applegiftcard 2022-12-27 16:30:00
IT ITmedia 総合記事一覧 [ITmedia News] Amazonが初売り、1月3日から 最大10%還元、福袋各種も https://www.itmedia.co.jp/news/articles/2212/27/news139.html amazoncojp 2022-12-27 16:13:00
IT 情報システムリーダーのためのIT情報専門サイト IT Leaders NTT-AT、工場・ビルのOT/IoTセキュリティ監視サービス、FortiGateで通信を可視化し脅威を検知 | IT Leaders https://it.impress.co.jp/articles/-/24259 NTTAT、工場・ビルのOTIoTセキュリティ監視サービス、FortiGateで通信を可視化し脅威を検知ITLeadersNTTアドバンステクノロジNTTATは年月日、「工場・ビル向けOTIoTセキュリティサービス」を提供開始した。 2022-12-27 16:46:00
AWS AWS Japan Blog 中小企業がどこからでもリモートワークで働けるようにする方法 https://aws.amazon.com/jp/blogs/news/three-ways-the-cloud-empowers-todays-transition-to-hybrid-work-for-small-and-medium-businesses/ businessescanenabletheir 2022-12-27 07:41:17
python Pythonタグが付けられた新着投稿 - Qiita jsonをTypedDictのクラスに変換してくれるサービス https://qiita.com/230/items/310785e110d406412b3c typeddict 2022-12-27 16:16:59
golang Goタグが付けられた新着投稿 - Qiita Goのmoduleのtidyに失敗した時の話 https://qiita.com/gold-kou/items/6ed6bee78ade93f120a0 gogomodfileindicatesgo 2022-12-27 16:45:47
技術ブログ Developers.IO そのRDS Proxyホントに必要?立ち止まって一度考えよう https://dev.classmethod.jp/articles/do-you-really-need-rds-proxy/ lambda 2022-12-27 07:24:57
海外TECH DEV Community Why Cookie is preferable compared to localStorage when it comes to authentication https://dev.to/leduc1901/why-cookie-is-preferable-compared-to-localstorage-when-it-comes-to-authentication-48mb Why Cookie is preferable compared to localStorage when it comes to authentication IntroductionWe know about JWT or JSON Web Token as an industry standard RFC method for representing claims securely between two parties JWT is very common nowadays But where should we store them in the front end In this article I will break down common places to store tokens Cookies and LocalStorage Comparison Local StorageTo use localStorage just simply call use the localStorage objectlocalStorage setItem yourTokenName yourToken localStorage getItem yourTokenName yourToken Pros Very convenient don t need any backend just pure JavaScript Big Data size about mb Cons Vulnerable to XSS attacks An XSS attack happens when an attacker can can take the access token that you stored in your localStorage because they can run JavaScript on your website CookiesTo set cookie we can do document cookie cookieName value or do this with http request Set Cookie lt cookie name gt lt cookie value gt Pros If you re using httpOnly and secure cookies this means that your cookies cannot be accessed using JavaScript so even if an attacker can run JS on your site they can t read your access token from the cookie Can set expiration dateCons Only kb of storage Security concerns XSS AttacksLike I said above local storage is vulnerable because it s easily accessible using JavaScript and an attacker can retrieve your access token However while httpOnly cookies are not accessible using JavaScript this doesn t mean that by using cookies you are safe from XSS attacks involving your access token If an attacker can run JavaScript in your application they can just send an HTTP request to your server which will automatically include your cookies It s just less convenient for the attacker because they can t read the content of the token although they might don t have to CSRF AttacksCross site request forgery also known as CSRF is a web security vulnerability that allows an attacker to induce users to perform actions that they do not intend to perform However this can be mitigated easily using sameSite flag in your cookie by including an anti CSRF token ConclusionCookies still have some vulnerabilities but it s preferable compared to localStorage whenever possible Because Both localStorage and cookies are vulnerable to XSS attacks but it s harder for the attacker to do the attack when you re using httpOnly cookies Cookies are vulnerable to CSRF attacks but it can be mitigated using sameSite flag and anti CSRF tokens You can still make it work even if you need to use the Authorization Bearer header or your JWT is larger than KB 2022-12-27 07:49:49
海外TECH DEV Community Make your fonts responsive without javascript or media query https://dev.to/mohsenkamrani/make-your-fonts-responsive-without-javascript-or-media-query-5006 Make your fonts responsive without javascript or media queryThere are a couple of ways to make the fonts responsive In this short tutorial I jump right on a way to make the fonts responsive that in most cases works the best Did you know that you can implement your websites or landing pages with or without coding on DoTenX for free Make sure to check it out and even nominate your work to be showcased DoTenX is open source and you can find the repository here github com dotenx dotenx You might think we can use media queries to make the fonts responsive While this works fine in many case the problem with this approach is that for a whole range of screen sizes your fonts will be the same which is not ideal my text font size px media min width px my text font size px media min width px my text font size px In this example the elements with class my text will have the same font size on a screen size of pixels pixels or pixels One solution would be to use vw instead of the absolute units like px my text font size vw The problem with this approach is that the fonts can become too small or too large on some screens What s a better solution my text font size clamp vw px px The clamp function takes three arguments the minimum value the desired value and the maximum value In this example the minimum value is px the desired value is vw and the maximum value is px The clamp function will return the desired value if it is within the range specified by the minimum and maximum values otherwise it will return the minimum value if the desired value is less than the minimum or the maximum value if the desired value is greater than the maximum 2022-12-27 07:25:46
海外TECH DEV Community Easiest way to understand Pub/Sub System (kid friendly) https://dev.to/csituma/easiest-way-to-understand-pubsub-system-kid-friendly-3h5k Easiest way to understand Pub Sub System kid friendly Imagine that you are in a library and you want to borrow a book You don t want to go to each shelf in the library and search for the book yourself because that would take a lot of time and you might not even find the book Instead you decide to use the pubsub pattern to find the book Here s how you might use the pubsub pattern to find a book in the library You are the publisher in this situation because you are the one sending the find book message to everyone else When you want to borrow a book you go to the librarian and tell them the title of the book you are looking for The library assistants are the subscribers in this situation because they are the ones listening for the find book message When a library assistant hears that someone is looking for a particular book they go and search for the book on the shelves The librarian is the message broker in this situation because they are the ones who receive the find book message from you and send it to the appropriate subscribers When you tell the librarian the title of the book you are looking for they pass this message along to the library assistants who start searching for the book This way you don t have to go and search for the book yourself You can just tell the librarian the title of the book you want and the library assistants will do the work for you This makes it easier to find the book you are looking for and borrow it from the library 2022-12-27 07:16:12
医療系 医療介護 CBnews 原油・物価高騰の影響「あり」9割超-福祉医療機構調べ https://www.cbnews.jp/news/entry/20221227154156 前年同期 2022-12-27 16:25:00
金融 日本銀行:RSS 米ドル資金供給オペレーションのオファー日程(2023年1月~3月) http://www.boj.or.jp/announcements/release_2022/rel221227b.pdf 資金供給オペレーション 2022-12-27 17:00:00
金融 日本銀行:RSS CP・社債等買入のオファー日程(2023年1月~2月) http://www.boj.or.jp/announcements/release_2022/rel221227a.pdf 買入 2022-12-27 17:00:00
ニュース BBC News - Home Dungannon Road: Three dead and five injured after crash near Cookstown https://www.bbc.co.uk/news/uk-northern-ireland-64097063?at_medium=RSS&at_campaign=KARANGA dungannon 2022-12-27 07:33:22
ニュース BBC News - Home Katie Taylor v Amanda Serrano and Tyson Fury v Anthony Joshua? Boxing fights we want to see in 2023 https://www.bbc.co.uk/sport/boxing/64042276?at_medium=RSS&at_campaign=KARANGA Katie Taylor v Amanda Serrano and Tyson Fury v Anthony Joshua Boxing fights we want to see in The boxing fights we want to see in including Tyson Fury v Anthony Joshua and Katie Taylor v Amanda Serrano 2022-12-27 07:49:32
北海道 北海道新聞 年末年始、日本海側は1月2日から大雪 札幌管区気象台が予報 https://www.hokkaido-np.co.jp/article/781314/ 天気予報 2022-12-27 16:35:00
北海道 北海道新聞 旧制中学時代の「小津日記」刊行 当時暮らした三重・松阪 https://www.hokkaido-np.co.jp/article/781313/ 小津安二郎 2022-12-27 16:36:00
北海道 北海道新聞 高校サッカー選手権、28日開幕 「声出し応援」もエリア限定復活 https://www.hokkaido-np.co.jp/article/781312/ 全国高校サッカー選手権 2022-12-27 16:36:00
北海道 北海道新聞 体育館で現金盗む、20歳消防士を免職 とかち広域消防事務組合 https://www.hokkaido-np.co.jp/article/781311/ 消防士 2022-12-27 16:30:00
北海道 北海道新聞 道南484人感染、函館は233人 新型コロナ https://www.hokkaido-np.co.jp/article/781310/ 医療機関 2022-12-27 16:25:00
北海道 北海道新聞 三笠の陥没道道、28日に本格復旧 https://www.hokkaido-np.co.jp/article/781309/ 三笠市内 2022-12-27 16:10:00
北海道 北海道新聞 東証続伸、終値は42円高 中国からの観光客増に期待 https://www.hokkaido-np.co.jp/article/781290/ 日経平均株価 2022-12-27 16:15:09
北海道 北海道新聞 日本の人材力は世界41位 4年下落、国際経験が最低 https://www.hokkaido-np.co.jp/article/781278/ 国際経営開発研究所 2022-12-27 16:15:09
北海道 北海道新聞 美浜原発、住民側が即時抗告へ 差し止め却下決定に不服 https://www.hokkaido-np.co.jp/article/781303/ 美浜原発 2022-12-27 16:17:00
北海道 北海道新聞 ガーシー氏、聴取応じる意向 通常国会で帰国と立花党首 https://www.hokkaido-np.co.jp/article/781301/ 立花孝志 2022-12-27 16:17:00
北海道 北海道新聞 60歳以上の採用は38%止まり 就労環境不十分、民間調査 https://www.hokkaido-np.co.jp/article/781295/ 新型コロナウイルス 2022-12-27 16:07:00
ビジネス 東洋経済オンライン シンガポール「テマセク」、港湾権益の売却検討 20%保有するCKハチソン傘下の港湾運営会社 | 「財新」中国Biz&Tech | 東洋経済オンライン https://toyokeizai.net/articles/-/641417?utm_source=rss&utm_medium=http&utm_campaign=link_back biztech 2022-12-27 17:00:00
ニュース Newsweek 「半導体の巨人」TSMC 中国、アメリカ、台湾を渡り歩いた創業者の生涯 https://www.newsweekjapan.jp/stories/world/2022/12/2023-whos-next.php 2022-12-27 16:40:00
ビジネス プレジデントオンライン 「帰宅してソファでまったり」はむしろ疲れる…自律神経の名医が実践している"整う帰宅ルーティン" - 寝る前のSNSチェックは「人生のムダづかい」 https://president.jp/articles/-/64734 小林弘幸 2022-12-27 17:00:00
IT 週刊アスキー 『GUNDAM EVOLUTION』で追加ユニットが1体解放できるウィンターキャンペーン2022を開始! https://weekly.ascii.jp/elem/000/004/119/4119059/ gundamevolution 2022-12-27 16:45:00
IT 週刊アスキー サンワダイレクト、パソコンなしで利用できるフィルムスキャナー「400-SCN064」発売 https://weekly.ascii.jp/elem/000/004/119/4119053/ 利用 2022-12-27 16:40:00
IT 週刊アスキー 煩悩をはらってスタンプをゲット!『DQウォーク』で年越しキャンペーンが開催 https://weekly.ascii.jp/elem/000/004/119/4119060/ 位置情報 2022-12-27 16:35:00
IT 週刊アスキー 渋谷エリアの東急バス・京王バスが最大5日間乗り放題のフリーパス https://weekly.ascii.jp/elem/000/004/119/4119051/ 京王バス 2022-12-27 16:30:00
マーケティング AdverTimes プロ転向した2022年、改めて読みたい「羽生選手が教えてくれたこと。」の重み https://www.advertimes.com/20221227/article407980/ プロ転向した年、改めて読みたい「羽生選手が教えてくれたこと。 2022-12-27 07:52:08
マーケティング AdverTimes 年末年始に読みたい!宣伝会議 2022年売れた書籍ランキング ベスト10 https://www.advertimes.com/20221227/article407856/ 宣伝会議 2022-12-27 07:19:31

コメント

このブログの人気の投稿

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