Scene Research Station[*] Antenna

すべて | グループ指定なし | ドジ研 | android | friend | 経済 | 園芸 | 麻雀 | tech | NEWS | browser | design

おとなりアンテナ | おすすめページ

  1. 2025/03/30 02:58:27 Surfin’ Safari - The WebKit Blog 含むアンテナおとなりページ

    Item Flow, Part 1:
    A new unified concept for layout
    Item Flow, Part 1:
    A new unified concept for layout
    CSS Grid and Flexbox brought incredible layout tools to the web, but they don’t yet do everything a designer might want.
    Read more
    Meet Declarative Web Push
    Meet Declarative Web Push
    Web Push notifications are a powerful and important part of the web platform.
    Read more

  2. 2025/03/23 02:54:16 Internet Explorer ブログ (日本語版)含むアンテナおとなりページ

    Read in English Add
    Table of contents Read in English Add Add to plan

  3. 2025/01/11 19:12:00 Chromium Blog含むアンテナおとなりページ

    Announcing Supporters of Chromium-based Browsers
    Thursday, January 9, 2025
    Since Google announced the Chromium project in 2008, we have been excited to build on the great foundations of open-source web browsers and contribute to the continued development of a rich web platform. Today, Chromium is used by hundreds of different projects globally, including big browsers like Chrome, home electronics from LG, application frameworks like Electron and even custom applications like Bloomberg terminals and SpaceX capsule control software.
    In 2024, Google made over 100,000 commits to Chromium, accounting for ~94 percent of contributions. While we have no intention of reducing this investment, we continue to welcome others stepping up to invest more.
    Google also continues to invest heavily in the shared infrastructure of the Open Source project to "keep the lights on", including having thousands of servers endlessly running millions of tests, responding to hundreds of incoming bugs per day, ensuring the important ones

  4. 2024/11/20 13:29:25 QuirksBlog含むアンテナおとなりページ

    JavaScript archives Compatibility Thidrekssaga QuirksBlog Donations CSS book Politics Mobile About COH
    contact

  5. 2024/03/28 06:40:14 くらげだらけ(くだくらげのBLOG)含むアンテナおとなりページ

    くらげだらけ
    読者になる

  6. 2024/03/28 05:33:16 latest log含むアンテナおとなりページ

    latest log
    読者になる

  7. 2022/12/19 23:46:24 Peter Beverloo含むアンテナおとなりページ

    Mastodon

  8. 2021/07/26 20:40:56 Que sera sera含むアンテナおとなりページ

    投稿者@nori0428時刻:12/24/20100コメント
    投稿者@nori0428時刻:12/21/20100コメント
    投稿者@nori0428時刻:12/10/20102 コメント
    投稿者@nori0428時刻:11/11/20100コメント
    投稿者@nori0428時刻:11/05/20102 コメント
    投稿者@nori0428時刻:3/02/20100コメント
    投稿者@nori0428時刻:3/02/20100コメント

  9. 2021/02/02 03:51:19 IT-Walker on hatena含むアンテナおとなりページ

    FAQ / お問い合わせ窓口

  10. 2019/08/15 10:28:19 HTML5.JP - 次世代HTML標準 HTML5情報サイト含むアンテナおとなりページ

    当サイトは閉鎖しました。
    HTML5.JP は、HTML5 の国内での普及を目指し、2007 年に個人プロジェクトとして運営が開始されました。2019 年現在、すでに HTML5 は当たり前のように活用され、多くの情報がネットから入手することができるようになりました。
    当サイトの役割は終えたことに加え、当サイトの更新もままならず情報も古いままであったことから、当サイトを閉鎖することにいたしました。これまで当サイトをご支援頂きました皆様には心より御礼申し上げます。
    2019 年 8 月 15 日 管理人より
    ©2019 Futomi Hatano

  11. 2019/05/26 09:23:25 Chromium Notes含むアンテナおとなりページ

    neugierig.org: Chromium Notes
    This was a blog by Evan Martinabout the Chromium project,better known as Google Chrome.
    Please note this is not the official word of Google; I’m just a programmer. I go by evanm at Google, evan at chromium.org,and evmar on IRC.

  12. 2019/01/29 08:34:23 葉っぱ日記含むアンテナおとなりページ

    コメント
    2017-12-06
    ■ [Joke] ローカルネットワークに対するクロスオリジンの攻撃からシステムを守る簡単な方法
    インターネット上に公開されているわなサイトを経由して社内イントラネットなどのローカルネットワークへXSSやCSRFなどのクロスオリジンでの攻撃を仕掛けようという試みは古くから存在します。現実にこれらが行われたという話は聞いたことはありませんが、理論上は可能であるという話をよく聞きます。対策としてまず検討すべきは、社内システムであっても通常のシステム同様に脆弱性を生まないようセキュアなものにするということです。それらが難しい場合には、少しの手間でローカルネットワークに対するクロスオリジンでの攻撃を低減させることができます。
    フィドラでクロスオリジンからの攻撃を低減させる手順
    Fiddler を起動し「Rules」メニューから「Customize Rules...」をクリックします。エディターが立ち上がってルール用のFiddlerScriptの編集画面が出てきますので、以下を追記します。
    function isLocalServer(host:String):Boolean {
    // TODO: 環境に合わせてここを修正して下さい
    const localServers = ["server-name-1", "server-name-2"];
    var re = /^([¥d]{1,3})¥.([¥d]{1,3})¥.([¥d]{1,3})¥.([¥d]{1,3})$/;
    var m = re.exec(host);
    var i;
    // プライベートIPアドレスのホストはローカルのサーバーとみなす
    if (m !== null) {
    m[1] = m[1]|0;
    m[2] = m[2]|0;
    m[3] = m[3]|0;
    m[4] = m[4]|0;
    if (m[1] > 255 || m[2] > 255 || m[3] > 255 || m[4] > 255) return false;
    if (m[1] === 10) return true;
    if (m[1] === 172 && (m[2] >= 16 && m[2] <= 31)) return true;
    if (m[1]

  13. 2016/06/03 12:00:20 Webデザイン・Webデザイナー専門スクールのブログ【webism】含むアンテナおとなりページ

    業界人の取材日記(1)
    2016年06月
    1 2 3 4
    5 6 7 8 9 10 11
    12 13 14 15 16 17 18
    19 20 21 22 23 24 25
    26 27 28 29 30
    2011年01月

  14. 2016/02/04 11:10:06 Socket.onmessage — Do WebSockets dream of Network Revolution?含むアンテナおとなりページ

    416 Requested Range Not Satisfiable
    nginx

  15. 2010/04/24 05:22:21 IEBlog含むアンテナおとなりページ

    A factor behind this popularity is its pervasive role in styling the 窶歪hrome窶

by mitsuman (mtm@kmkz.jp)