2014-12-17 veryyoung
1.下载源码 wget http://download.redis.io/releases/redis-2.8.19.tar.gz 2.解压 tar -zxf redis-2.8.19.tar.gz 3.make make 4.install sudo make install 5.服务配置 wget https://github.com/ijonas/dotfiles/raw/master/etc/init.d/redis-server wget https://github.com/ijonas/dotfiles/raw/master/etc/redis.conf sudo mv redis-ser 继续阅读 »
2017-01-13 Bruce Wang
最近工作上接手了两个项目,可它们依赖的node版本不同,于是想到了之前用的nvm(Node Version Manager)。 https://github.com/creationix/nvm 之前安装nvm的方式是通过npm install nvm,而新版本可以通过脚本或者手动安装。目前,nvm没有提供windows的支持,但是在其文档中提到了nvm-windows这个工具。 https://github.com/coreybutler/nvm-windows 安装 在安装nvm-windows前,需要做以下步骤: 卸载系统中已有的node.js 删除node.js安装目录(例如C:\Program Files\no 继续阅读 »
2015-11-23 Oliver Wang
Window ```sh 因为 window 不允许之间新建 . 开头的文件,所以使用 mv 的方式 mv git-credentials .git-credentials ``` 然后编辑 .git-credentials ``` github 是这样的格式 https://{username}:{password}@github.com git.oschina.net 是这样的 https://{username}:{password}@git.oschina.net ``` 最后一步是 sh git config --global credential.helper store Linux 在此之前或 继续阅读 »
2016-05-26 ALEX LIN
更新日志 2016.09.09 UIImageView加载WebP格式的图片 2016.09.19 更新UI系列 2016.10.18 更新隐藏GroupedTableView上边多余的间隔 工具类 提取assets.car中的图片 iPhone 6 屏幕揭秘 iOS 通过获取iTunes上的APP信息,判断是否提醒升级APP POST https://itunes.apple.com/CN/lookup?id=978591579 使用POST方法,id 是iTunes connect里APP信息的Apple ID:为APP自动生成的id Charles 请求 HTTPS 出现 “You may need to c 继续阅读 »
2015-11-30 Klaus Ma
Configuring a remote for a fork List the current configured remote repository for your fork. $git remote -v origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (fetch) origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (push) 继续阅读 »
2016-05-28 ALEX LIN
安装Node.js ``` Using Ubuntu curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - sudo apt-get install -y nodejs Using Debian, as root curl -sL https://deb.nodesource.com/setup_6.x | bash - apt-get install -y nodejs ``` 继续阅读 »
2015-06-25 王财勇
七牛是国内专为移动时代开发者打造的数据管理平台,为互联网网站和移动App提供数据的在线托管、传输加速以及图片、音视频等富媒体的云处理服务。使用七牛云存储,可以在线托管图片、视频,可以在线生成外接地址,供博客使用。你可以通过点击链接 注册并成为标准用户,这样我将获得5GB超大下载流量!十分感谢。 more 新建空间 选择公开空间,通用。当然了选择其它也可以。如果选择私有空间,在后面的生成外部链接不是很方便。 待生成空间后,我们可以去空间设置里设置空间的一些属性。 尤其是我们最好设置一个https域名。待设置好https域名后我们 选择默认域名后,在七牛控制台中引用的URL以此域名显示。 上传资源 方法1. 我们可以在空 继续阅读 »
2018-04-04 findneo
note of https://www.ichunqiu.com/course/56927 Hacking三步曲 理解系统(Understanding) 系统性的基础课程学习,深入理解计算机系统运作机制。 破坏系统(Breaking) 学习与创造漏洞挖掘与利用技巧 重构系统(Reconstruction) 设计与构建系统防护 基础课程学习 核心基础课程——计算机的工作原理 体系结构 CPU的设计与实现 机器指令与汇编语言 指令的解码、执行 内存管理 CMU 18-447 Introduction to Computer Architecture https://www.ece.cmu.edu/~ece447/s15/dok 继续阅读 »
2019-01-06 Vaniot
redis https://github.com/antirez/redis/blob/5.0/src/adlist.h https://github.com/antirez/redis/blob/5.0/src/adlist.c 结构体的定义 结构体的实现,双向链表的相关定义于adlist.h中 节点: ```C++ typedef struct listNode { struct listNode *prev; //前一个节点 struct listNode *next; //后一个节点 void *value; //节点的值 } listNode; more 迭代器: C++ typedef s 继续阅读 »
2016-10-21 Meng Lei
Nginx是一个俄罗斯开发的高性能HTTP服务器和反向代理服务器,功能丰富、性能强悍、运行稳定、应用广泛,完全使用C语言编写,可运行于各种Unix Like OS,并有Windows移植版本(不推荐用于生产环境)。 安装 在Ubuntu中,可以直接使用sudo apt-get install nginx 命令安装nginx,安装之后,默认的配置文件保存在 /etc/nginx 文件夹内,默认提供http服务的目录位置在 /usr/local/nginx/html。 配置 nginx的主配置文件是:nginx.conf ``` user www-data; #用户与用户组 worker_processes 4; #对外提 继续阅读 »