Recommended IOS Programming App

Oct 25, 2016
Programming
App

How to set up your own cloud storage

Oct 23, 2016

Vdisk shut down, 360yunpan shut down. It seems that we are losing every alternatives to store file on cloud. Buying more removable disk is not the solution. In fact, the best option is setting up your own cloud storage service.

Today I’m going to guide you to set up owncloud service. owncloud is an open source & free platform to store & share your files from all your devices(Including web/mobile/desktop). You could set it up for your own or share the service with your friends or family. I’d introduce you both ways to do so.

cloud
owncloud

FreeCodeCamp 学习参考

Oct 9, 2016

FreeCodeCamp 中文网官方维基文档,内容较少,不过是目前少有的中文参考资料。

FCC 官方wiki文档,内容多而全,只要你稍有英文基础,在做题闯关中遇到的所有疑惑基本都可以在这里找到答案。

freecodecamp

Push local projects to new git repo

Oct 7, 2016
git remote set-url origin https://xxx.com.git
git push origin master
bash
git

localStorage store JSON

Oct 6, 2016
/**localStorage store json**/
//Store
localStorage.books = JSON.stringify({name: 'json', stored: true})
//Get
var data = JSON.parse(localStorage.books)
js
html5

How to use shadowsocks(ss)

Sep 22, 2016

Quick User Guide

1.Get your configure info from shadowsocks service provider.

Remember these four things:

  • Server domain name or IP address
  • Encrypt Method (rc4-md5/aes-256-cfb/etc.)
  • Port number (8388 or some numbers)
  • Password

ss-info

shadowsocks