a list of slides from nodeconf
you may want to take a look at the jsconf-gist too!
a list of slides from nodeconf
you may want to take a look at the jsconf-gist too!
<?php | |
namespace CHH; | |
trait MetaObject | |
{ | |
protected static $__metaClass; | |
static function setMetaClass(MetaClass $metaClass) | |
{ |
<? | |
include_once 'prototype.php'; | |
use Prototype\Klass; | |
class TestPrototype extends PHPUnit_Framework_TestCase{ | |
public function test_sample(){ | |
$Person = Klass::create(function($first, $last){ | |
$this->_first = $first; | |
$this->_last = $last; |
# 厨2病フレーズだけで記述できるプログラミング言語 のイメージ | |
何ッ () | |
もしも それ が 真実 なの ならば——— | |
これ は 大変なことになるぞ! (いや?)\ | |
まぁ…… いい… | |
ククク…… 見せてもらおうじゃないか…… ←\ | |
旋律 の 傀儡師 の 実力とやらを! # TODO なぜだ!? 動く!? | |
<?xml version="1.0" encoding="UTF-8" ?> | |
<server> | |
<name>diggin.github.com/TestProject</name> | |
<summary>Phix Sample PEAR channel</summary> | |
<alias>TestProject</alias> | |
<url>http://diggin.github.com/TestProject</url> | |
</server> |
fizzbuzzList = [x | x <- map fizzbuzz [1..]] | |
where fizzbuzz x | x `mod` 15 == 0 = "FizzBuzz" | |
| x `mod` 5 == 0 = "Buzz" | |
| x `mod` 3 == 0 = "Fizz" | |
| otherwise = show x | |
main = do | |
mapM_ putStrLn $ take 100 $ fizzbuzzList |
guard 'spork', rspec_env: { 'PADRINO_ENV' => 'test' } do | |
watch('config/apps.rb') | |
watch('config/boot.rb') | |
watch('config/database.rb') | |
watch('Gemfile') | |
watch('Gemfile.lock') | |
watch('spec/spec_helper.rb') { :rspec } | |
end | |
guard 'rspec', :version => 2 do |
The list would not be updated for now. Don't write comments.
The count of contributions (summary of Pull Requests, opened issues and commits) to public repos at GitHub.com from Wed, 21 Sep 2022 till Thu, 21 Sep 2023.
Because of GitHub search limitations, only 1000 first users according to amount of followers are included. If you are not in the list you don't have enough followers. See raw data and source code. Algorithm in pseudocode:
githubUsers
# ホットスタンバイがバックアップじゃないとかその手の話はとりあえず置いておきます | |
# | |
# なぜこんな間抜けな事故が起きたかについてだけ想像 | |
# | |
# 1. いろんなサーバーメンテナンスをスクリプトでやっていた | |
# 2. スクトプトは随時使い回したり書き換えたりして使っていた | |
# | |
# という状態であったと推測する。中小規模自社サービスとかやってるところとかもわり | |
# とこうなんじゃないですかね。ホスティングでそのレベルでいい加減なのどうなんでし | |
# ょうか。 |