今日のイベント主催者の太一です。
ymsrに対する最大にして最後のイタヅラが今日の送別会です。
| package rand | |
| import ( | |
| "crypto/rand" | |
| "math/big" | |
| ) | |
| type RandomStringer struct { | |
| proposal []rune | |
| length *big.Int |
| import ( | |
| "crypto/rand" | |
| "strings" | |
| ) | |
| func FixSeed(seed string, fn func()) func() { | |
| return func() { | |
| orig := rand.Reader | |
| rand.Reader = strings.NewReader(seed) // fix seed | |
| defer func() { |
| package main | |
| import ( | |
| "fmt" | |
| "io/ioutil" | |
| "os" | |
| "path/filepath" | |
| "syscall" | |
| ) |
| package main | |
| import ( | |
| r "github.com/dancannon/gorethink" | |
| "log" | |
| ) | |
| type upd struct { | |
| Zzz []string `gorethink:"zzz"` | |
| } |
| @ECHO OFF | |
| ::---------------------------------------------------------------------- | |
| :: WebStorm startup script. | |
| ::---------------------------------------------------------------------- | |
| :: --------------------------------------------------------------------- | |
| :: Locate a JDK installation directory which will be used to run the IDE. | |
| :: Try (in order): WEBIDE_JDK, ..\jre, JDK_HOME, JAVA_HOME. | |
| :: --------------------------------------------------------------------- |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>Chat Example</title> | |
| <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script> | |
| <script type="text/javascript"> | |
| $(function() { | |
| var conn; |
| オリジナルは力武さんの投稿 http://erlang-users.jp/ml/erlang/index.cgi?0::166 | |
| アキュムレータ accumulator | |
| アノテーション annotation | |
| アリティ arity | |
| ー致条件 match specification | |
| 入れ子リスト deep list | |
| インターフェイス interface | |
| エクスポート export |
| // see. | |
| // http://jasmine.github.io/1.3/introduction.html | |
| // https://github.com/adobe/brackets/wiki/How-to-Write-Extensions | |
| /*jslint vars: true, plusplus: true, devel: true, nomen: true, regexp: true, indent: 4, maxerr: 50 */ | |
| /*global define, $, brackets, describe, it, expect, beforeFirst, afterLast, beforeEach, afterEach, runs, waitsFor, waitsForDone, waitsForFail */ | |
| /*unittests: MyExtension */ // for Test Runner of https://github.com/dangoor/TestQuickly | |
| define(function(require, exports, module) { | |
| "use strict"; | |
| var SpecRunnerUtils = brackets.getModule("spec/SpecRunnerUtils"), | |
| FileUtils = brackets.getModule("file/FileUtils"); |