休息角

简介

茶余饭后的小点心。

*欢迎任何形式的资料、知识、小技巧。

Cookies

  • 安装cnpm替代npm(淘宝npm镜像,同步延迟10分钟)速度超快,用法与npm相同,只需在输入命令时用cnpm替换npm
    npm install -g cnpm --registry=https://registry.npm.taobao.org
     
  • Git Book
    https://git-scm.com/book/zh/v2
     
  • 编程类开放书籍
    https://linuxstory.org/free-chinese-programming-books/
     
  • Nginx开发从入门到精通
    http://tengine.taobao.org/book/
     
  • How the Grinch stole array.length access
    http://mrale.ph/blog/2014/12/24/array-length-caching.html
     
  • Optimization killers
    https://github.com/petkaantonov/bluebird/wiki/Optimization-killers
     
  • 一个利用benchmark进行多平台性能测试的网站
    https://jsperf.com/
     
  • 一个直接展示V8引擎运算过程(IR)的工具
    http://mrale.ph/irhydra/2/#
     
  • vim套件
    http://vim.spf13.com/
     
  • 常用redis调优(简单入门)
    http://www.cnblogs.com/mushroom/p/4738170.html
     
  • Grokking V8 closures for fun (and profit?)
    http://mrale.ph/blog/2012/09/23/grokking-v8-closures-for-fun.html
     
  • 同时重定向标准输出及错误流
    [command] 2>&1 | >> some.log (先将标准错误流重定向至标准输出流,再利用管道将标准输出流的结果输出到日志文件中。 2和1不能调换顺序,标准输出流有缓冲而标准错误流没有。)
    或 [command] >> some.log 2>&1
    重定向至不同文件  [command] 2>> e.log | >> i.log (注意要先重定向了标准错误流,标准错误流不进管道)
     
  • http://mvdirona.com/jrh/talksAndPapers/JamesRH_Lisa.pdf
     
  • ioredis各方法没有文档,传参可直接模拟redis-cli中参数依次传入或将参数整理成一个数组传入。
    如希望操作 ZRANGEBYSCORE zset-test 0 1000 WITHSCORES LIMIT 2 2, 则可redisClient.zrangebyscore('zset-test', 0, 1000, 'WITHSCORES', 'LIMIT', 2, 2, console.log) 或 redisClient.zrangebyscore('zset-test', [0, 1000, 'WITHSCORES', 'LIMIT', 2, 2], console.log)
     
  • 阿里巴巴Java开发手册.pdf
    阿里巴巴的Java开发手册,具有一定的参考价值。
     
  • 一个交互式、游戏化的Git教学网站,整体通关时间约1~2小时,对90%日常开发中的常用命令都进行了练习及动画演示。http://learngitbranching.js.org/
     
  • 一本比较有趣的介绍JS编外知识的书,讲解了一些JS的实现细节。https://github.com/getify/You-Dont-Know-JS
     
  • Extract private-key & certificate-files from *.pfx
    • openssl pkcs12 -in  myfile.pfx -nocerts -out private_key.pem -nodes 
    • openssl pkcs12 -in  myfile.pfx -nokeys -out certificate_file.crt 
  • 一个相对较为全面的查询手册 https://www.geeksforgeeks.org/
     
  • 简单关于GET与POST的讨论 https://stackoverflow.com/a/1744404/5478057

你可能感兴趣的:(golang)