python3 server.py
- Open http://localhost:8000 with Chrome, Edge, or Firefox
- Open the console in your browser
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <inttypes.h> | |
#include <mach/mach_time.h> | |
#include <stdio.h> | |
int main(void) { | |
static mach_timebase_info_data_t timebase; | |
mach_timebase_info(&timebase); | |
uint64_t time = mach_absolute_time(); | |
printf("mach_absolute_time: %" PRIu64 "\n", time); | |
printf("resolution: %f\n", (double)timebase.numer / (double)timebase.denom); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import json | |
import sys | |
def main(new_filename, old_filename): | |
with open(old_filename) as f: | |
old_images = json.load(f) | |
with open(new_filename) as f: | |
new_images = json.load(f) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type id = string | |
module Environment = Map.Make ( | |
struct | |
type t = id | |
let compare (x : id) y = compare x y | |
end | |
) | |
type value = |
I hereby claim:
- I am ymyzk on github.
- I am ymyzk (https://keybase.io/ymyzk) on keybase.
- I have a public key ASAEbZrZgw7WBw8MounDKtLmPAZxt3DKRPio4FuIQoG9OQo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Example of Proper Tail Calls</title> | |
</head> | |
<body> | |
<h1>Example of Proper Tail Calls</h1> | |
<p> | |
Please open console. If your web browser supports proper tail calls, it shows "It works!". |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int sum(int n) { | |
int acc = 0; | |
for (int i = 0; i <= n; i++) { | |
acc += i; | |
} | |
return acc; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#define N 1024 | |
int main(void) { | |
int a[N][N]; | |
int b[N][N]; | |
int c[N][N]; | |
for (int i = 0; i < N; i++) { |
This is an unofficial fork of OchaCaml for Homebrew Formula.
This Gist is not maintained. See ymyzk/ochacaml for latest information.
- Character encoding: EUC-JP -> UTF-8
- Generate a diff file using
git diff
OS X の標準の Python 環境は Python 3 が入っていないので Homebrew 等でインストールしましょう.
http://brew.sh/index_ja.html を参考に
NewerOlder