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
from optparse import OptionParser | |
import csv | |
import json | |
if __name__ == "__main__": | |
parser = OptionParser(usage="usage: %prog csvfile") | |
parser.add_option("-d", "--delimiter", type="string", dest="delimiter", | |
default=",", help="the delimiter, default is ','") | |
(options, args) = parser.parse_args() |
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> | |
<title>List Styling</title> | |
<style type="text/css"> | |
body { | |
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", | |
"Helvetica Neue", Helvetica, Arial, "Lucida Grande", | |
sans-serif; | |
font-weight: 300; | |
} |
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
// | |
// UIColor+Hex.h | |
// | |
// | |
// Created by 超 沈 on 11-12-31. | |
// Copyright (c) 2011年 __MyCompanyName__. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> |