- 浏览: 46271 次
- 性别:
- 来自: 北京
最新评论
-
chm2920:
mysql5.1 的问题?
Rails3.0.4 ruby1.9.2 mysql2 一个Error -
chm2920:
貌似字段数不能超过9个
Rails3.0.4 ruby1.9.2 mysql2 一个Error -
chm2920:
70分至99分:好奇心强,喜欢冒险,人缘较好。事业心一般,对待 ...
心理测试
文章列表
白皮书
https://github.com/ethereum/wiki/wiki/%5BChinese%5D-Ethereum-TOC
https://ethfans.org/posts/ethereum-whitepaper
以太坊智能合约编程之菜鸟教程
Dapp 与 传统 区别
https://ethereum.stackexchange.com/questions/12186/typical-architecture-of-a-dapp-with-a-browser-client
Dapps for beginners
https://dappsfor ...
vsftp 3.0.2 配置 记录
- 博客分类:
- Linux
匿名下载,登录后上传
sudo chown ftp:ftp /home/ftp
sudo chmod 755 /home/ftp/
sudo chmod 777 /home/ftp/pub
配置
anonymous_enable=YES
local_enable=YES
write_enable=YES
local_umask=022
anon_umask=022
anon_upload_enable=YES
anon_mkdir_write_enable=YES
dirmessage_enable=YES
use_localtime=YES
xf ...
下载putty:
http://www.putty.nl/latest/x86/putty.exe
设置 putty:
输入账号和密码
Firefox 火狐
在地址栏中,输入 about:config ,回车
火狐会提示什么要注意安全之类的,点我会小心之类的确定。
然后寻找:
一些数值计算
- 博客分类:
- Javascript
// 升序
d3.ascending = function (a, b) {
return a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN;
};
// 降序
d3.descending = function (a, b) {
return b < a ? -1 : b > a ? 1 : b >= a ? 0 : NaN;
};
// 最小值
d3.min = function (array, f) {
var i = -1,
...
1、string to json
data = (new Function("return " + data))();
2、自调用
_sugMonitor: function () {
var _arg = arguments,
self = this;
clearTimeout(this.iter);
this.iter = setTimeout(function () {
_arg.callee.apply(self, _arg);
}, 300);
}
3
...
function showNode(node, j) {
var s = '';
for (var i = 0; i < j; i++) {
s += ' '
}
if (s != '') {
s += '|--';
}
console.log(s + node.name + ' -- ' + node.value);
}
function showTree(t, n, hsh) {
showNode(t, n);
var m = n + 1;
if ( ...
function objectToString(o){
var parse = function(_o){
var a = [], t;
if(Array.isArray(_o)){
for(var i = 0, t; t = _o[i]; i ++){
a[a.length] = "{ " + arguments.callee(t).join(", ") + "}";
}
} els ...
展示:
js 代码:
Zepto.datepicker = function(target){
var datepicker = {
init : function(){
this._target = target;
this._date = new Date();
this._formatDate();
},
bind: function(){
this._picker = (function(){
var arr = [];
arr.push('<div class="d ...
Rails:
1、
apt-get install curl
bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)
reload
rvm requirements
apt-get install ****** git
rvm install 1.9.3
.bashrc ADD:
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/. ...
本文地址:http://jovesky.com/blog/2011/12/24/ubuntu-under-the-dual-monitor-setup/声明: 本文采用 BY-NC-SA 协议进行授权. 转载请注明 文章来自 Jove Sky
ubuntu(GNOME)现在已经能很好的处理双屏了,无论是克隆方式还是扩展方式!但有时我们需要一个不同的管理器如awesome、fluxbox这类简单的窗口管理器中又如何设置成双显呢?其实也很容易--xr
zuoming99
等级: 初级会员
性别:
文章: 8
积分: 30
来自: 陕西
IE 回收机制
typeof instanceOf
运行时状态
跨域问题
FF下
过滤左右空字符
正则表达式 script
两个IFrame 对齐
准备:
NodeJS nodejs.org
Node-WebSocket-Server https://github.com/miksago/node-websocket-server
服务端:
var spawn = require('child_process').spawn;
var tail = spawn("tail", ['-f', 'development.log']);
console.log('starting');
var ws = require("websocket-serve ...
db 文件夹也要有写权限
原文如下:
http://jaux.net/2008/12/18/sqlite3-unable-to-open-database-file/
Recently, I’m working on my Skypiea project which is powered by SQLite3 and Python (as CGI script). Yesterday I encountered a program: When the web server ran a CGI script which would update the database ...