2014年9月9日のブックマーク (10件)

  • Dog Whisperer | Nat Geo Wild

    WELCOME TO NATGEOTV.COMGo to National Geographic Channel's site for Japan or select your region from the list below.

    tmatsuu
    tmatsuu 2014/09/09
    すごい
  • MetricsAt - Metrics & Monitoring for applications

    Metrics and Monitoring for applications.We can automatically extract your application data from log files, database or arbitrary shell command. Statistic and visualized data for you. Read more.

    MetricsAt - Metrics & Monitoring for applications
    tmatsuu
    tmatsuu 2014/09/09
    ふむ。フリーミアムモデルらしいが大丈夫か。
  • 9-Way File-System Comparison With A SSD On The Linux 3.17 Kernel - Phoronix

    9-Way File-System Comparison With A SSD On The Linux 3.17 Kernel Written by Michael Larabel in Software on 7 September 2014 at 10:00 AM EDT. Page 1 of 4. 14 Comments. Sunday benchmarks this week on Phoronix are comparing nine popular, mainline file-systems present within the Linux 3.17 kernel. All the usual contenders are present and the benchmarks happened with a solid-state disk. Using the recen

    tmatsuu
    tmatsuu 2014/09/09
    これは、JFSはチートと考えてよろしいでしょうか。
  • Home - JuliaHub

    The Modern Platform for Technical Computing A single place for modeling, simulation, and user built applications with the Julia language. Designed with access to CPUs and GPUs for multi-threading, parallel and distributed computing, JuliaHub's supercomputing infrastructure allows teams to model breakthrough science and technology. The next-generation platform for model-based design Leverage Scient

    Home - JuliaHub
    tmatsuu
    tmatsuu 2014/09/09
    プログラミング言語JuliaをWeb上で。しかしSign up for an inviteが500エラーに。ぐぬぬ
  • Tokyo OpenSolaris 勉強会 2014.09 (2014/09/27 13:30〜)

    Solaris に関するテーマをみんなで勉強していきましょう。 ※ 参加受付は開催前日の PM 5:00 で締め切りになります。参加の可能性がある方は、とりあえず参加申し込みして、後からキャンセルするようにしてください (参加受付の締め切り後も、キャンセル可能です)。 テーマについてスピーカーが話をしますが、参加メンバーも情報を出し合ってワイワイと進めていきます。とりあえず「特定の話だけでも聞きたい」という方も大歓迎です。 タイムスケジュール 13:00 ~ 13:30 開場集合 13:30 ~ 14:00 自己紹介等 14:00 ~ 15:30 (未定枠) 15:45 ~ 17:30 Solaris Internal の “Part Four Memory” (藤原 克則) Solaris Internal の “Part Four Memory” 恒例の Solaris Interna

    Tokyo OpenSolaris 勉強会 2014.09 (2014/09/27 13:30〜)
    tmatsuu
    tmatsuu 2014/09/09
    9/27
  • brendangregg/perf-tools · GitHub - Performance analysis tools based on Linux perf_events (aka perf) and ftrace

    You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

    brendangregg/perf-tools · GitHub - Performance analysis tools based on Linux perf_events (aka perf) and ftrace
    tmatsuu
    tmatsuu 2014/09/09
    便利かもしれない。あとで試す
  • Linux ftrace TCP Retransmit Tracing

    Recent posts: 28 Apr 2023 » eBPF Observability Tools Are Not Security Tools 01 Mar 2023 » USENIX SREcon APAC 2022: Computing Performance: What's on the Horizon 17 Feb 2023 » USENIX SREcon APAC 2023: CFP 02 May 2022 » Brendan@Intel.com 15 Apr 2022 » Netflix End of Series 1 09 Apr 2022 » TensorFlow Library Performance 19 Mar 2022 » Why Don't You Use ... 26 Sep 2021 » The Speed of Time 06 Sep 2021 »

    tmatsuu
    tmatsuu 2014/09/09
    先日stunnelへの通信でTCP retransmitが発生しててなんだなんだと調べたらident/authだったオチ。あるあるー
  • Zephir使えばPHP Extensionが誰でも超絶簡単に作れる - Qiita

    はじめに ※ タイトルは、正確には、「Zephir使えばPHP Extensionが(PHPのコードさえかければ)誰でも超絶簡単に作れる」ですが、PHP Extensionを書きたい人はPHPのコードを書ける人だと思われますので、省略してます。 メモリ操作を気にせずにPHP Extensionを作れる言語”Zephir” こちらの記事を読んで面白そうだなと気になってストックだけして積んでた状態でした。 しかし、とある案件でファイルのフルスキャンをしたくなったのでPHP Extension化を試みました。 情報は公式の Zephir Language にもありますが、日語情報が少ないのでこちらに簡単にまとめます。 結論から箇条書きすると 面白い。 初めて触ったその日にメモリ管理に気を使う必要なく、PHP Extensionの開発が出来ました。 今回のケースでは、PHPでベタ書きした場合と比

    Zephir使えばPHP Extensionが誰でも超絶簡単に作れる - Qiita
    tmatsuu
    tmatsuu 2014/09/09
    ほう
  • Batsを使って手軽にCLIプログラムのテストをする - Qiita

    BatsはCLIで実行するUNIXプログラムのテストをするためのツールです。 Bash Automated Testing SystemでBatsとのこと。 Bats自体がbashで書かれていて、特にbashスクリプトのテストに最適なようですが、出力と終了ステータスをチェックするような単純な作りなので、CLIで動作するプログラムであれば何でもテストできるでしょう。 元々、ruby-buildのテストファイル眺めてたら拡張子が*.batsになってて、「なんだろこれ?」と思って見たら同じ作者のBatsというツールでした。 使ってみたら結構手軽で便利だったので紹介します。 簡単な例 以下の例を見れば大体どんな感じかわかると思います。 bc, dcの演算結果をチェックするためのテストですね。 #!/usr/bin/env bats @test "addition using bc" { resul

    Batsを使って手軽にCLIプログラムのテストをする - Qiita
    tmatsuu
    tmatsuu 2014/09/09
    すばらしい
  • ISUCON4(2014) オンライン予選レギュレーション : ISUCON公式Blog

    2014.9.27 13:38 追記 ブラウザでの表示崩れについて追記しました -- 2014.9.26 12:05 追記 予選登録は締め切りました -- 2014.9.8 13:00 公開 参加者予選参加者 (以下参加者) はチームでの登録とし、チームは2人~3人での構成とする。 参加者は予選の第1日目、2日目のいずれかのみに参加することができる。 参加者は「一般枠」「学生枠」のいずれかに登録すること。 「学生枠」参加メンバー全員が学生・生徒であること (年齢は問わない)「一般枠」学生枠以外の参加者 学生枠の要件に該当する参加者でも、一般枠に登録することができる。 参加登録参加者は、代表者1名が以下のページから行う。 登録内容の確認メールは登録後しばらく経ってから送ります 参加メンバーの変更、予選参加日程の変更は参加登録メールへの返信で受け付けます https://feedback.li

    ISUCON4(2014) オンライン予選レギュレーション : ISUCON公式Blog
    tmatsuu
    tmatsuu 2014/09/09
    レギュレーションきた