http://digitocero.com/en/blog/exporting-and-visualizing-gccs-abstract-syntax-tree-ast
There is a source file named hello.c
.
package com.tonyseek.droid | |
import android.app.ActionBar | |
import android.app.FragmentTransaction | |
import android.os.Bundle | |
import android.support.v4.app.Fragment | |
import android.support.v4.app.FragmentActivity | |
import android.support.v4.app.FragmentManager | |
import android.support.v4.app.FragmentPagerAdapter | |
import android.support.v4.view.ViewPager |
#!/usr/bin/env python | |
#-*- coding:utf-8 -*- | |
import re | |
import copy | |
import logging | |
from db.sqlstore import store | |
[user] | |
name = Jiangge Zhang | |
email = [email protected] | |
[color] | |
ui = auto | |
[alias] | |
lg = log --color --graph --pretty=format:'%Cred%h%Creset - %C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit -- | |
ci = commit | |
st = status | |
br = branch |
http://digitocero.com/en/blog/exporting-and-visualizing-gccs-abstract-syntax-tree-ast
There is a source file named hello.c
.
#!/usr/bin/env sh | |
SITES_AVAILABLE_DIR="/etc/nginx/sites-available" | |
SITES_ENABLED="/etc/nginx/sites-enabled" | |
case "$1" in | |
enable) | |
if [ -f "${SITES_AVAILABLE_DIR}/$2" ] | |
then | |
ln -s "${SITES_AVAILABLE_DIR}/$2" "${SITES_ENABLED}/$2" |
#!/usr/bin/env python | |
#-*- coding:utf-8 -*- | |
"""The login CLI for Shenzhen University IPv6. | |
""" | |
import argparse | |
import urllib | |
import getpass | |
import sys |
#!/usr/bin/env python | |
#-*- coding:utf-8 -*- | |
import uuid | |
def entity_repr(entity, attrs): | |
"""Dumps attributes and values of given entity object.""" | |
attrs_repr = (u"%s=%s" % (n, repr(getattr(entity, n))) for n in attrs) | |
unicode_repr = u"%s(%s)" % (type(entity).__name__, u", ".join(attrs_repr)) |
RubyConf 2011 | 2011-09-29 | Gregory Moeck (@gregmoeck) | Slides
diff --git a/_config.yml b/_config.yml | |
index 42de00c..24dff5e 100644 | |
--- a/_config.yml | |
+++ b/_config.yml | |
@@ -72,6 +72,9 @@ github_repo_count: 3 | |
github_show_profile_link: true | |
github_skip_forks: true | |
+# Send to Kindle | |
+send_to_kindle_button: true |