- 都是片纸不少,耳机数据线什么的都在,
- 都是11月初激活的。
- 5s成色略差,5c成色冲新
- 价格
- 5s:4100
- 5c:3100
- 联系:
- 用户名+gmail
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
RT |
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
Pod::Spec.new do |s| | |
s.name = "xxxxxxx" | |
s.version = "0.0.1" | |
s.summary = "A short description of xxxxxxxx." | |
s.homepage = "xxxxxx" | |
s.license = 'MIT' | |
s.author = { "shiweifu" => "[email protected]" } | |
s.platform = :ios, '7.0' | |
s.source = { :git => "[email protected]:weifu/iOS/xxxxxx.git", :tag => "0.1" } |
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
import sh | |
import sys | |
cfgfile = sys.argv[-1] | |
for line in open(cfgfile): | |
line = line.strip() | |
split_line = line.split(',') | |
print(split_line) |
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
//get all UITableViewCell | |
-(NSArray *)cellsForTableView | |
{ | |
UITableView *tableView = self.tableView; | |
NSInteger sections = tableView.numberOfSections; | |
NSMutableArray *cells = [[NSMutableArray alloc] init]; | |
for (int section = 0; section < sections; section++) { | |
NSInteger rows = [tableView numberOfRowsInSection:section]; | |
for (int row = 0; row < rows; row++) { | |
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:row inSection:section]; |
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
#coding: utf-8 | |
#author: shiweifu | |
import web | |
from web import form | |
import urllib, hashlib | |
#template |
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
var mySheet = document.styleSheets[0]; | |
function addCSSRule(selector, newRule) {if (mySheet.addRule) {mySheet.addRule(selector, newRule);} else {ruleIndex = mySheet.cssRules.length;mySheet.insertRule(selector + '{' + newRule + ';}', ruleIndex);}} | |
addCSSRule('html', 'padding: 10px; height: 528.000000px; -webkit-column-gap: 20px; -webkit-column-width: 300.000000px;') | |
addCSSRule('p', 'text-align: justify;') | |
addCSSRule('body', '-webkit-text-size-adjust: 100%;') |
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
import urllib2 | |
import urllib | |
import re | |
from time import sleep | |
from cookielib import CookieJar | |
r = "name='csrfmiddlewaretoken'\svalue='(.+)'\s/" | |
r_compile = re.compile(r) |
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
<div class="container"> | |
<div class="row"> | |
<div class="span5" style="margin-left: 300px;"> | |
<section id="login-form" class="box"> | |
<form action="/login" method="post"> |