タグ

2009年1月6日のブックマーク (4件)

  • CS Unplugged

    CS Unplugged is a collection of free teaching material that teaches Computer Science through engaging games and puzzles that use cards, string, crayons and lots of running around. New! Adapted CS Unplugged lessons for teaching students and educators online

    paella
    paella 2009/01/06
    コンピュータサイエンスの概念をコンピュータ無しに、子供でも分かるように教えるためのサイト。恐ろしいことにフリー。必読。まじで必読。
  • Linux Manpages Online - man.cx manual pages

    What is man.cx? Have you ever wanted to check a manual page for a tool you hadn't installed on the current machine? Well, it happend to me various times. There are some manpage interfaces available on the net, but they all just provide access to the GNU tools or maybe to the tools installed on the host, but they are always missing some pages. So I thought, why isn't there a page with all manpages?

    paella
    paella 2009/01/06
    manページサイトの1つ。見やすくて良い感じ。ただしDebianベースで、Macとは違うので注意。
  • FN0212003 - 配列を偏りなくランダムに並替える - Flash : テクニカルノート

    Platform: All Version: 5.0 and Above [*注] ActionScript 3.0にもとづくスクリプトと解説は「配列を偏りなくランダムに並べ替える」をご参照ください。 1. 配列をランダムに並替える '配列をランダムに並替えるユーザー定義関数('function')を考えてみましょう。 // function定義: xShuffleArray // 引数: 配列 // 戻り値: なし function xShuffleArray(l_array) {  //[1]'function'定義 var n = l_array.length;  //[2]配列の長さを取得 var i = n; while (i--) {  //[3]配列エレメントすべてをループ処理 var j = Math.floor(Math.random()*n);  //[4]ランダムなイ

    paella
    paella 2009/01/06
    配列をランダムに並び替える方法の盲点。偏りをなくするためにはどうしたらよいかがここに書いてありました。
  • Google AJAX Feed API入門

    他のサイトが配信しているATOMやRSSフィードをJavaScriptを使って取得しようとした場合、同一生成元ポリシー(Same-Origin Policy)の制限によって直接他のサーバにあるデータへアクセスできずサーバ側でいったんフィードを受信するなどの処理が必要でした。 Google AJAX Feed APIを使用すると、Googleがフィードのキャッシュとしての役割を果たしてくれるため、サーバ側のプログラムを必要とせず、クライアント側のスクリプトだけで各種フィードを取得することが出来ます。 ここではGoogle AJAX Feed APIを使ってATOMやRSSフィードを取得する方法などを解説していきます。 Google AJAX Feed APIとは ドキュメント

    paella
    paella 2009/01/06
    使いこなせればなんだか色々出来そうなので、ネタのタネとしてブックマーク。