git.devzeng.com git.devzeng.com

git.devzeng.com

曾静的技术博客

嗨,我是曾静 (@devzeng),iOS开发新人,目前暂居深圳。

http://git.devzeng.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR GIT.DEVZENG.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

May

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Thursday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 2.5 out of 5 with 4 reviews
5 star
1
4 star
0
3 star
1
2 star
0
1 star
2

Hey there! Start your review of git.devzeng.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

2 seconds

FAVICON PREVIEW

  • git.devzeng.com

    16x16

CONTACTS AT GIT.DEVZENG.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
曾静的技术博客 | git.devzeng.com Reviews
<META>
DESCRIPTION
嗨,我是曾静 (@devzeng),iOS开发新人,目前暂居深圳。
<META>
KEYWORDS
1 曾静的技术博客
2 但行好事,莫问前程
3 嗨,我是曾静 @devzeng ,ios开发新人,目前暂居深圳
4 这是我用来记录平日学习笔记的地方,欢迎您的访问
5 weibo
6 github
7 twitter
8 email
9 使用scrapy开发爬虫初探
10 继续阅读
CONTENT
Page content here
KEYWORDS ON
PAGE
曾静的技术博客,但行好事,莫问前程,嗨,我是曾静 @devzeng ,ios开发新人,目前暂居深圳,这是我用来记录平日学习笔记的地方,欢迎您的访问,weibo,github,twitter,email,使用scrapy开发爬虫初探,继续阅读,mac上docker的安装和使用初探,使用nssm在windows服务器上部署node js应用,下面记录下部署的 …,ios中kv数据库leveldb的编译和使用,ios中使用protocol buffers,它很适合做数据存储或rpc数据交换格式,更早 →
SERVER
GitHub.com
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

曾静的技术博客 | git.devzeng.com Reviews

https://git.devzeng.com

嗨,我是曾静 (@devzeng),iOS开发新人,目前暂居深圳。

INTERNAL PAGES

git.devzeng.com git.devzeng.com
1

在iOS项目中使用WebP格式图片

http://git.devzeng.com/blog/ios-webp-usage.html

Cwebp input file -o output file.webp. Dwebp input file.webp -o output.png. UIImage *)sd imageWithWebPData:(NSData *)data;. NSString *path = [ NSBundle mainBundle] pathForResource:@logo ofType:@webp]; NSData *data = [ NSData alloc] initWithContentsOfFile:path]; UIImage *img = [UIImage sd imageWithWebPData:data]; self.imageView.image = img;. BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(nullable NSDictionary *)launchOptions;. 2、 webP 格式图片在 iOS 中的应用. 7、 WebP Comparative Study.

2

在iOS项目中使用CocoaPods私有库

http://git.devzeng.com/blog/ios-cocoapods-private-repo.html

Get on with building your app, not duplicating code. Specs [SPEC NAME] [VERSION] [SPEC NAME].podspec. Pod repo add 仓库名 仓库地址. Pod repo add zengjing-spec git@gitlab.com:zengjing/Specs.git. Pod spec create Foundation-pd. Foundation-pd Example(示例项目) LICENSE(LICENSE文件) Foundation-pd.podspec Pod Assets(资源文件) Classes(代码文件) README.md(一些说明信息). Git add . git commit -s -m first commit git push origin master. Git tag -a 0.1.0 -m v0.1.0 HEAD git push origin tag 0.1.0. 语法说明请参考 Podspec Syntax Reference.

3

iOS中KV数据库LevelDB的编译和使用

http://git.devzeng.com/blog/ios-leveldb.html

LevelDB开源并托管在GitHub上,项目的地址是 https:/ github.com/google/leveldb. Git clone https:/ github.com/google/leveldb.git. Cd leveldb CXXFLAGS=-stdlib=libc make PLATFORM=IOS. C -stdlib=libc -I. -I./include -std=c 0x -DOS MACOSX -DLEVELDB PLATFORM POSIX -DLEVELDB ATOMIC PRESENT -O2 -DNDEBUG -fPIC -c db/builder.cc -o /db/builder.o error: unable to open output file /db/builder.o: Operation not permitted 1 error generated. make: * * [/db/builder.o] Error 1. Sudo CXXFLAGS=-stdlib=libc make PLATFORM=IOS.

4

iOS中使用Protocol Buffers

http://git.devzeng.com/blog/ios-protobuf.html

Protocol buffers are a language-neutral, platform-neutral extensible mechanism for serializing structured data. Protobuf开源并托管在Github,项目地址是 https:/ github.com/google/protobuf/. 限定修饰符 数据类型 字段名称 = 字段编码值 [字段默认值 ]. 其中 1 15的编码时间和空间效率都是最高的,编码值越大,其编码的时间和空间效率就越低 相对于1-15 ,当然一般情况下相邻的2个值编码效率的是相同的,除非2个值恰好实在4字节,12字节,20字节等的临界区。 使用分号(;)分隔枚举变量而不是C 语言中的逗号(,). Ruby -e $(curl -fsSL https:/ raw.githubusercontent.com/Homebrew/install/master/install). Brew install automake brew install libtool brew install protobuf. 本站点采用 知识共享...

5

将博客从Octopress迁移到Jekyll

http://git.devzeng.com/blog/octopress-to-jekyll.html

Git clone https:/ github.com/onevcat/vno-jekyll.git blog site. Sudo gem install bundler bundle install. Sudo gem uninstall bundler. Bundler exec jekyll serve. 2、 Hello World - Vno. 跨平台开发是我们长久以来都在关注的话题,前段时间写了一篇关于React Native的文章 React Native开发初探。 也在公司的项目中部分使用React Native,虽然React Native的出现带来了很多变革,但是光一个环境搭建就把很多人挡在了门外,另外React Native更新的频率过快差不多两周一个版本,所以目前还是处于观望阶段。 Facebook在React.js Conf 2015大会(2015.3.26)上开源了React Native。 最开始只支持iOS,2015年9月15日发布了React Native for Android,至此React Native支持主流的两大平台 iOS和Android。

UPGRADE TO PREMIUM TO VIEW 6 MORE

TOTAL PAGES IN THIS WEBSITE

11

SOCIAL ENGAGEMENT



OTHER SITES

git.develz.org git.develz.org

git.develz.org Git

Mirror of ancient Dungeon Crawl. Dungeon Crawl Stone Soup. Mirror of DGameLaunch with local changes. Marc H. Thoben. Mirror of Git Magic. Marc H. Thoben. IRC-bot used on IRC in crawl channels. Marc H. Thoben. Mirror of Gruesome Roguelike. IRC-bot used on IRC in crawl channels. Mirror of The Doryen Library. Monster-information parser used by Gretell. Scripts playing with GUI libraries. Simple scripts to help create mp4. Example C code using ncurses and readline. Lua widget collection for Spring RTS.

git.devid.net git.devid.net

Sign in | GitLab

Didn't receive a confirmation email? Request a new one. Open source software to collaborate on code. Manage git repositories with fine grained access controls that keep your code secure. Perform code reviews and enhance collaboration with merge requests. Each project can also have an issue tracker and a wiki. Willkommen beim Code-Managment und Ticketsystem der DeviD.

git.devnull.li git.devnull.li

git.devnull.li

Vim plugin to explore easily. Repo for translation of git. Software for an augmented. Unnamed repository; edit this. Unnamed repository; edit this. Unnamed repository; edit this. Unnamed repository; edit this. Vim ftplugin to ease navigatio. Vim syntax definition for. Unnamed repository; edit this. Vim ftplugin for PO (translati. Py addr normalizer.git. Unnamed repository; edit this. Script to extract a package. Website for all of jerojasro. Python interface for Sugar. Show what you type into anothe.

git.devsub.net git.devsub.net

All Activities - Gitorious

Eg 'wrapper', 'category:python' or '"document database"'. Is a great way of collaborating on distributed open source projects. Gitorious provides open source. Infrastructure for open source projects which use Git. Read more…. Most active repository clones. Weil TUWEL ein Dateigrößenlimit hat. Repos für die Bachelorarbeit von Bernhard Bonigl und Christop. View more ». Git hosting at your company, custom features, support and more. gitorious.com.

git.devunit.eu git.devunit.eu

Sign in | GitLab

Open source software to collaborate on code. Manage git repositories with fine grained access controls that keep your code secure. Perform code reviews and enhance collaboration with merge requests. Each project can also have an issue tracker and a wiki.

git.devzeng.com git.devzeng.com

曾静的技术博客

近期一直都有关注数据的采集方面的开发,之前也用Python(urllib BeautifulSoup)写过 爬虫 但是效果不是很好,表现在内存占用过高和做出来的东西不够通用,很多周边的东西 图片下载、缩略图等 都需要自己来实现。 开发环境准备CentOS 6.5自带的是Python 2.6.6,使用Scrapy需.…. Docker 是个划时代的开源项目,它彻底释放了虚拟化的威力,极大提高了应用的运行效率,降低了云计算资源供应的成本,同时让应用的部署、测试和分发都变得前所未有的高效和轻松 Docker 最初是 dotCloud 公司创始人 Solomon Hykes 在法国期间发起的一个公司内部项目,它是基于 dotCloud 公司多年云服务技术的一次革新,并于2013年3月以 Apache 2.0 授权协议开源,主要项目代码在 GitHub 上进行维护。 Docker 项目后来还加入了 Linux 基金会.…. LevelDB开源并托管在GitHub上,项目的地址是 https:/ github.com/google/leveldb。 于 2016-12-07 生成,感谢 GitCafe.

git.diariotraduttore.com git.diariotraduttore.com

Game Italian Translation (G.I.T.)

Il GIT. è un gruppo di persone che amano la spensieratezza del giocare in italiano. Tradurre è la nostra passione! Independence War II: Edge of Chaos. 13102008] git.diariotraduttore.com. Il Game Italian Translation ha subito un altro silenzio, questa volta non però per volontà (o assenza) del gruppo, quanto per motivi di natura tecnica da noi non dipendenti. Il server di Multiplayer.it. Insieme a noi si è spostato anche il Progetto TIFONE. Arrivederci dunque a presto con le prossime novità! Emperor: Batt...

git.digispeaker.com git.digispeaker.com

www.digispeaker.com

To clone one one of these trees, install git. Git clone http:/ git.digispeaker.com/projects/. Only the http: protocol is supported, git: protocol is not enabled. For developer access contact Jon Smirl jonsmirl@digispeaker.com. Since the digispeaker.com host is somewhat slow, it is faster to first clone the base kernel from kernel.org and then only retrieve the digispeaker deltas from digispeaker.com. Git clone git:/ git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git digispeaker.

git.digitalfishfun.com git.digitalfishfun.com

Sign in · GitLab

Contact me for an account. If you're here to view projects, try here.

git.dim13.org git.dim13.org

dim13·git

Random bits of code. Simple ASCII 7 segment display. Automated Certificate Management Environment. DimOS - real time preemptive kernel for Atmegas. SendMail Milter to interface Bogofilter. Simple bootmanager inspired by booteasy. BSD sys/queue.h lists example. Coherent UNIX Serial Keygen. R/O Git in pure Go. Http:/ www.spoj.com/problems/HOMO/. ITerm to Xresource color scheme convertor. Graphical Network Monitor for OpenBSD. Graphical Network Monitor for OpenBSD. KR reverse polish calc.

git.dinotools.org git.dinotools.org

Sign in | GitLab

Open source software to collaborate on code. Manage git repositories with fine grained access controls that keep your code secure. Perform code reviews and enhance collaboration with merge requests. Each project can also have an issue tracker and a wiki.