- CommonLisp:
- hash-table
- Scheme:
- hash-table (SRFI-69), hashtable (R6RS Scheme)
- Haskell:
- Map
- OCaml:
- Hashtbl, Map
- SML:
- hash_table (sml-nj-lib)
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
#!/bin/sh | |
# usage: git feature <feature-name> | |
function usage() { | |
echo "usage: git feature <feature-name>" | |
exit 1 | |
} | |
if [ $# -eq 0 ] |
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
参考:Oracle 11g Express 文字コードを変更する : リード開発メモ | |
http://freed411.doorblog.jp/archives/30018740.html | |
最後にユーザー表領域作成 | |
CREATE TABLESPACE USERS | |
DATAFILE 'C:\oraclexe\app\oracle\oradata\XE\USERS.dbf' | |
size 1024M autoextend on maxsize 4096M | |
extent management local | |
segment space management auto; |
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
bin/ | |
obj/ | |
*.suo | |
*.user | |
TestResults/ |
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
using System; | |
namespace ConsoleApplication1 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var result = new Func<int, int>(x => x * x) | |
.Invoke(2) |
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
$ git clone ssh://[email protected]:22/takano-s/my-repos.git my-repos | |
Cloning into 'my-repos'... | |
[email protected]'s password: | |
bash: git-upload-pack: command not found | |
fatal: Could not read from remote repository. | |
Please make sure you have the correct access rights | |
and the repository exists. |
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
#Mon Mar 31 10:33:43 JST 2014 | |
gravatar=true | |
ldap.bind_password=password | |
notification=false | |
ldap.baseDN=dc\=example,dc\=co,dc\=jp | |
ldap_authentication=true | |
ssh=true | |
ldap.username_attribute=sAMAccountName | |
allow_account_registration=false | |
ldap.host=192.168.0.27 |
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
#!/bin/sh | |
git config user.name gbname | |
git config user.email [email protected] |
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
@rem quoted path to FxCopCmd.exe. | |
set FXCOP_PATH="%ProgramFiles%\Microsoft Fxcop 10.0\FxCopCmd.exe" | |
@rem path to "FxCop Project File" that created by FxCop GUI (FxCop.exe). | |
set FXCOP_PROJ=MyProj.FxCop | |
@rem path to FxCop report file. | |
set FXCOP_REPORT=FxCopReport.xml | |
cd "%~d0%~p0" |
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
Mar 11, 2014 3:28:26 PM org.apache.catalina.loader.WebappClassLoader clearReferencesThreads | |
SEVERE: The web application [/gitbucket] appears to have started a thread named [Generate Seed] but has failed to stop it. This is very likely to create a memory leak. | |
Mar 11, 2014 3:32:05 PM org.apache.catalina.core.StandardContext startInternal | |
SEVERE: Error listenerStart | |
Mar 11, 2014 3:32:05 PM org.apache.catalina.core.StandardContext startInternal | |
SEVERE: Context [/gitbucket] startup failed due to previous errors | |
Mar 11, 2014 3:32:05 PM org.apache.catalina.loader.WebappClassLoader clearReferencesJdbc | |
SEVERE: The web application [/gitbucket] registered the JDBC driver [org.h2.Driver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered. |