This file contains hidden or 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
# Basic settings | |
export LANG=ja_JP.UTF-8 | |
bindkey -e | |
## Complete | |
zstyle ':completion:*' format '%BCompletion %d%b' | |
zstyle ':completion:*' group-name '' | |
autoload -U compinit && compinit | |
## History |
This file contains hidden or 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 python | |
# -*- coding: utf-8 -*- | |
import urllib | |
import urllib2 | |
try: | |
import json | |
except: | |
import simplejson as json |
This file contains hidden or 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 python | |
# -*- coding: utf-8 -*- | |
import os | |
import pikzie | |
from sqlobject import ( | |
sqlhub, connectionForURI, | |
SQLObject, |
This file contains hidden or 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
<?php | |
$someValue = "Hello"; | |
$somevalue = "World"; | |
function helloworld($say){ | |
echo $say.PHP_EOL; | |
} | |
// Fatal error: Cannot redeclare helloWorld() |
This file contains hidden or 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 python | |
# -*- coding: utf-8 -*- | |
someValue = "Hello" | |
somevalue = "World" | |
def helloWorld(say): | |
print say | |
def helloworld(say): |
This file contains hidden or 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 ruby | |
someValue = "Hello" | |
somevalue = "World" | |
def helloWorld(say) | |
p say | |
end | |
def helloworld(say) |
This file contains hidden or 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> | |
void | |
helloWorld(char say[]) | |
{ | |
printf("%s\n", say); | |
} | |
void | |
helloworld(char say[]) |
This file contains hidden or 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 perl | |
use strict; | |
my $someValue = "Hellow"; | |
my $somevalue = "World"; | |
sub helloWorld{ | |
my $say = shift; | |
print "${say}\n"; |
This file contains hidden or 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
<html> | |
<head> | |
<script type="text/javascript" charset="utf-8"> | |
var someValue = "Hello"; | |
var somevalue = "World"; | |
function helloWorld(say){ | |
alert(say); | |
} |
This file contains hidden or 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 <iostream> | |
#include <string> | |
using namespace std; | |
void | |
helloWorld(string say) | |
{ | |
cout << say << endl; | |
} |