はてなブックマークアプリ

サクサク読めて、
アプリ限定の機能も多数!

アプリで開く

はてなブックマーク

  • はてなブックマークって?
  • アプリ・拡張の紹介
  • ユーザー登録
  • ログイン
  • Hatena

はてなブックマーク

トップへ戻る

  • 総合
    • 人気
    • 新着
    • IT
    • 最新ガジェット
    • 自然科学
    • 経済・金融
    • おもしろ
    • マンガ
    • ゲーム
    • はてなブログ(総合)
  • 一般
    • 人気
    • 新着
    • 社会ニュース
    • 地域
    • 国際
    • 天気
    • グルメ
    • 映画・音楽
    • スポーツ
    • はてな匿名ダイアリー
    • はてなブログ(一般)
  • 世の中
    • 人気
    • 新着
    • 新型コロナウイルス
    • 働き方
    • 生き方
    • 地域
    • 医療・ヘルス
    • 教育
    • はてな匿名ダイアリー
    • はてなブログ(世の中)
  • 政治と経済
    • 人気
    • 新着
    • 政治
    • 経済・金融
    • 企業
    • 仕事・就職
    • マーケット
    • 国際
    • はてなブログ(政治と経済)
  • 暮らし
    • 人気
    • 新着
    • カルチャー・ライフスタイル
    • ファッション
    • 運動・エクササイズ
    • 結婚・子育て
    • 住まい
    • グルメ
    • 相続
    • はてなブログ(暮らし)
    • 掃除・整理整頓
    • 雑貨
    • 買ってよかったもの
    • 旅行
    • アウトドア
    • 趣味
  • 学び
    • 人気
    • 新着
    • 人文科学
    • 社会科学
    • 自然科学
    • 語学
    • ビジネス・経営学
    • デザイン
    • 法律
    • 本・書評
    • 将棋・囲碁
    • はてなブログ(学び)
  • テクノロジー
    • 人気
    • 新着
    • IT
    • セキュリティ技術
    • はてなブログ(テクノロジー)
    • AI・機械学習
    • プログラミング
    • エンジニア
  • おもしろ
    • 人気
    • 新着
    • まとめ
    • ネタ
    • おもしろ
    • これはすごい
    • かわいい
    • 雑学
    • 癒やし
    • はてなブログ(おもしろ)
  • エンタメ
    • 人気
    • 新着
    • スポーツ
    • 映画
    • 音楽
    • アイドル
    • 芸能
    • お笑い
    • サッカー
    • 話題の動画
    • はてなブログ(エンタメ)
  • アニメとゲーム
    • 人気
    • 新着
    • マンガ
    • Webマンガ
    • ゲーム
    • 任天堂
    • PlayStation
    • アニメ
    • バーチャルYouTuber
    • オタクカルチャー
    • はてなブログ(アニメとゲーム)
    • はてなブログ(ゲーム)
  • おすすめ

    ノーベル賞

『Neil Fraser』

  • 人気
  • 新着
  • すべて
  • Neil Fraser: News: CS by Mail

    5 users

    neil.fraser.name

    13 April 2015 Hypothetically, how would you teach Computer Science or programming to someone who has no access to a computer, and with whom your only communication is books and postal mail? Think about it for a minute. I'll wait. This morning I got a letter from Ray Reyes at Kern Valley State Prison. His story is that he was incarcerated in 1997 at the age of 18 (I've no idea what for, nor do I ca

    • 世の中
    • 2015/04/16 09:34
    • Diff, Match and Patch: Demo of Diff

      3 users

      neil.fraser.name

      Diff takes two texts and finds the differences. This implementation works on a character by character basis. The result of any diff may contain 'chaff', irrelevant small commonalities which complicate the output. A post-diff cleanup algorithm factors out these trivial commonalities. Text Version 1:I am the very model of a modern Major-General, I've information vegetable, animal, and mineral, I kno

      • テクノロジー
      • 2010/06/09 19:19
      • Neil Fraser: News: JSONP Memory Leak

        3 users

        neil.fraser.name

        27 July 2009 [Sorry, this is a technical post. Non-programmers should probably skip this and listen to some nice accordion music instead.] Occasionally one has to defeat the same-origin policy and exchange data from a 3rd party server. The least ugly hack is the badly named JSONP technique. Basically you create a script tag, append it to head, then it will fetch a remote JavaScript file and execut

        • テクノロジー
        • 2009/07/30 12:20
        • JavaScript
        • tips
        • Neil Fraser: Writing: Differential Synchronization

          6 users

          neil.fraser.name

          by Neil Fraser, January 2009 Read this as a DocEng paper. Watch this as a Google Tech Talk. Keeping two or more copies of the same document synchronized with each other in real-time is a complex challenge. This paper describes the differential synchronization algorithm. Differential synchronization offers scalability, fault-tolerance, and responsive collaborative editing across an unreliable netwo

          • テクノロジー
          • 2009/01/12 20:10
          • algorithm
          • Neil Fraser: Writing: Diff Strategies

            5 users

            neil.fraser.name

            by Neil Fraser, April 2006 Computing the differences between two sequences is at the core of many applications. Below is a simple example of the difference between two texts: Text 1: Apples are a fruit. Text 2: Bananas are also fruit. Diff:   AppleBananas are also fruit. This paper surveys the literature on difference algorithms, compares them, and describes several techniques for improving the us

            • テクノロジー
            • 2008/07/18 12:19
            • diff
            • algorithm
            • text
            • Neil Fraser: Software: Image to HTML Converter

              38 users

              neil.fraser.name

              Most web pages are made up of HTML files linked to separate image files. Here's a way to embed an image directly into an HTML file. Enter the URL of any JPEG, PNG or GIF on the web: How does it work? A table is created which is filled with large numbers of 1x1 cells. Each cell has a background colour of the corresponding pixel in the image. That's all it is; just a massive grid of coloured table c

              • 暮らし
              • 2007/06/25 08:51
              • image
              • html
              • converter
              • generator
              • 画像
              • ジェネレータ
              • tool
              • service
              • Neil Fraser: Software: Table Sorter

                65 users

                neil.fraser.name

                Another example (with a custom date sorting function) can be found on the Moo Database browser. Installation Download tablesort.js (9KB) or the compressed tablesort-min.js (4KB), then add this line anywhere in your page: <SCRIPT LANGUAGE='JavaScript1.2' SRC='tablesort.js'></SCRIPT> Modify your table(s) so that the header row(s) are within a <THEAD> block, any footer rows are within a <TFOOT> block

                • 暮らし
                • 2007/06/12 11:16
                • javascript
                • table
                • sort
                • library
                • ajax
                • web
                • Neil Fraser: Software: MobWrite

                  6 users

                  neil.fraser.name

                  MobWrite This project is now located on Google Code. Developer only: Daemon: Local Demos Remote Demos Unit Tests AppEngine: Local Demos Remote Demos Unit Tests Last modified: 3 March 2009

                  • 暮らし
                  • 2006/09/11 14:37
                  • php
                  • ajax
                  • python
                  • tool
                  • Software
                  • javascript
                  • これはすごい
                  • Neil Fraser: Software: MobWrite

                    7 users

                    neil.fraser.name

                    MobWrite This project is now located on Google Code. Developer only: Daemon: Local Demos Remote Demos Unit Tests AppEngine: Local Demos Remote Demos Unit Tests Last modified: 3 March 2009

                    • テクノロジー
                    • 2006/09/07 21:37
                    • javascript
                    • ajax
                    • web2.0
                    • php
                    • tool

                    このページはまだ
                    ブックマークされていません

                    このページを最初にブックマークしてみませんか?

                    『Neil Fraser』の新着エントリーを見る

                    キーボードショートカット一覧

                    j次のブックマーク

                    k前のブックマーク

                    lあとで読む

                    eコメント一覧を開く

                    oページを開く

                    はてなブックマーク

                    • 総合
                    • 一般
                    • 世の中
                    • 政治と経済
                    • 暮らし
                    • 学び
                    • テクノロジー
                    • エンタメ
                    • アニメとゲーム
                    • おもしろ
                    • アプリ・拡張機能
                    • 開発ブログ
                    • ヘルプ
                    • お問い合わせ
                    • ガイドライン
                    • 利用規約
                    • プライバシーポリシー
                    • 利用者情報の外部送信について
                    • ガイドライン
                    • 利用規約
                    • プライバシーポリシー
                    • 利用者情報の外部送信について

                    公式Twitter

                    • 公式アカウント
                    • ホットエントリー

                    はてなのサービス

                    • はてなブログ
                    • はてなブログPro
                    • 人力検索はてな
                    • はてなブログ タグ
                    • はてなニュース
                    • ソレドコ
                    • App Storeからダウンロード
                    • Google Playで手に入れよう
                    Copyright © 2005-2025 Hatena. All Rights Reserved.
                    設定を変更しましたx