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 printString(char *string) | |
{ | |
int i; | |
for (i = 0; string[i] != '\0' ; i++) { | |
printf("%c",string[i]); | |
} | |
} |
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
private IEnumerable<TreeNode> getAllFileTreeNode(TreeNodeCollection nodes) | |
{ | |
foreach (TreeNode f in nodes) | |
{ | |
if (f.Nodes.Count > 0) | |
{ | |
foreach (TreeNode subNode in getAllFileTreeNode(f.Nodes)) | |
yield return subNode; | |
} | |
yield return f; |
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 Test | |
{ | |
class NullTest | |
{ | |
static int? GetNullableInt() | |
{ | |
return null; | |
} |
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
# 建立一個新的.dropbox目錄,存另一個帳號的資料 | |
# Make another .dropbox dir to save data | |
HOME=/Users/$USER/.dropbox-alt | |
/Applications/Dropbox.app/Contents/MacOS/Dropbox |
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/bash | |
## call git init | |
git init | |
## make .gitignore | |
cat > .gitignore << EOF | |
# Mac OS X Finder and whatnot | |
.DS_Store | |
# no useful files |
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/bash | |
# Chromium update script | |
# - by shad <[email protected]> | |
# - by superbil <[email protected]> | |
OS=mac | |
SITE=http://build.chromium.org/buildbot/snapshots/chromium-rel- | |
LATEST=$(wget -q -O - ${SITE}${OS}/LATEST) | |
INSTALL_DIR=/Applications | |
TARGET=Chromium |
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
tell application "System Events" | |
if (output muted of (get volume settings)) is true then | |
set volume without output muted | |
else | |
set volume with output muted | |
end if | |
end tell |
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
#side_base, | |
.elections-promotion, | |
#navigation, | |
#footer, | |
#header, | |
.content-bubble-arrow | |
{ | |
display: none !important; | |
} |
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
<ul class="list"> | |
<li class="film"><a href="search/label/film">Film</a></li> | |
<li class="theatre"><a href="search/label/film">Theatre</a></li> | |
<li class="music"><a href="search/label/film">Music</a></li> | |
<li class="lyrics"><a href="search/label/film">Lyrics Case</a></li> | |
<li class="quotes"><a href="search/label/film">Quotes。</a></li> | |
<li><img 135px width="135" src="http://farm4.static.flickr.com/3430/3378859683_329df186f2_m.jpg" width: /></li> | |
<li class="life"><a href="search/label/film">Life</a></li> | |
<li class="wonders"><a href="search/label/film">Wonders</a></li> | |
<li class="travel"><a href="search/label/film">Travel</a></li> |
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
# Mac OS X Finder and whatnot | |
.DS_Store | |
# Thumbnails | |
._* | |
# Files that might appear on external disk | |
.Spotlight-V100 | |
.Trashes |