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!

如何使用Linux命令行测试网速?

http://www.speedtest.net/ 当发现上网速度变慢时,人们通常会先首先测试自己的电脑到网络服务提供商(通常被称为“最后一公里”)的网络连接速度。在可用于测试宽带速度的网站中,Speedtest.net也许是使用最广泛的。 Speedtest.net的工作原理并不复杂:它在你的浏览器中加载JavaScript代码并自动检测离你最近的Speedtest.net服务器,然后向服务器发送HTTP... Read More | Share it now!

正则表达式 regexp

From: http://www.ziqiangxuetang.com/regexp/regexp-tutorial.html 除非您以前使用过正则表达式,否则您可能不熟悉此术语。但是,毫无疑问,您已经使用过不涉及脚本的某些正则表达式概念。 例如,您很可能使用... Read More | Share it now!