Monthly Archives: April 2015

linux nohup 关终端不中断进程

感谢各路大神帮忙,使用nohup让程序后台跑起来。 不想看的直接输入 $ nohup yourapps & e.g $nohup node app.js & 不要log: nohup yourapps >/dev/null 2>&1... Read More | Share it now!

Welcome to Huang Shiyang’s WordPress

Welcome to Huang Shiyang’s WordPress! Most of my sources can be found here.     Links: Personal Website: http://huangshiyang.com Github: https://github.com/ShiyangHuang ... Read More | Share it now!

Java 里把 InputStream 转换成 String 的几种方法

我们在 Java 中经常会碰到如何把 InputStream 转换成 String 的情形,比如从文件或网络得到一个... Read More | Share it now!

Generating SSH keys

https://help.github.com/articles/generating-ssh-keys/ SSH keys are a way to identify trusted computers, without involving passwords. The steps below will walk you through generating an SSH key and adding the public key to your GitHub account. We... Read More | Share it now!

在Mac下安装mongodb

在Mac下安装mongodb 安装mongodb 1、首先是下载安装文件 有2种选择 第一种、用浏览器或者第三方工具下载 当前版本的下载地址: http://downloads.mongodb.org/osx/mongodb-osx-x86_64-2.4.6.tgz 第二种,打开终端,使用以下命令行下载: curl... Read More | Share it now!

Express安装后出现command not found问题

Express安装后出现command not found问题 express不能运行 安装Node.js的web框架Express:npm install -g express,键入命令:express –help,出现提示:sh: express: command not... Read More | Share it now!

三款热门入门级在线编程教程对比

三款热门入门级在线编程教程对比 From http://www.csdn.net/article/2013-04-11/2814844-coding 摘要:为了能够高效地学习各种技术和编程,掌握几个非常不错的网站还是很有必要的。本文我们将推荐3个非常不错的技术网站,Codecademy、CodeSchool、... Read More | Share it now!

断点续传

一、断点上传辨义 在 Http 协议之下的 文件下载有“断点续传”功能,从服务器到客户端的文件下载可行,而对Http 协议的文件上传则不同。 断点续传是基于 请求-响应... Read More | Share it now!

Mac OS X Dev Setup【mac系统配置】

From: https://github.com/nicolashery/mac-dev-setup This document describes how I set up my developer environment on a new MacBook or iMac. We will set up Node (JavaScript), Python, and Ruby environments, mainly for JavaScript and Python development.... Read More | Share it now!