- 博客(7)
- 资源 (7)
- 收藏
- 关注
原创 牛某网算法初级班1笔记
冒泡排序public static void bubbleSort(int[] arr) { if (arr == null || arr.length < 2) { return; } for (int e = arr.length - 1; e > 0; e--) { for (int i = 0; i < e; i++) { if (arr...
2018-10-12 10:44:45
352
翻译 树莓派官方文档之samba
Samba/CIFSSamba is a implementation of the SMB/CIFS networking protocol that is used by Windows devices to provide shared access to files, printers, and serial ports etc. There is a comprehensive Wik...
2018-10-11 21:53:58
622
翻译 消逝的艺术之结构体封装
谁应该阅读这篇文章This page is about a technique for reducing the memory footprint of programsin compiled languages with C-like structures -manually repacking these declarations for reduced size.To read it...
2018-10-11 20:47:33
425
原创 浏览器访问github性能优化
浏览器访问github.com时会请求如下域名# 主站域名 大陆可访问github.com # raw代码文件 大陆可访问*.githubusercontent.com# 代码片段 大陆不可访问gist.github.com# 网页静态内容 大陆不可访问assets-cdn.github.com# 头像图片子域名avatars*.githubusercontent.com# ...
2018-10-11 15:58:41
639
原创 linux下nodemcu环境搭建
构建esp8266编译链sudo apt-get install \ build-essential zip gdb git vim make unrar autoconf automake gawk \ bison texinfo libtool gcc g++ gperf libc-dbg ncurses-dev expat flex help2man \ lu...
2018-10-11 15:34:56
985
原创 linux下socks5环境搭建
编译安装sudo apt-get install --no-install-recommends build-essential cmake libmbedtls-dev libsodium-devsudo apt-get install --no-install-recommends wget gettext build-essential autoconf libtool libpcre...
2018-10-11 15:17:49
5432
原创 linux下nodejs环境搭建
# 安装nvmcurl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bashsource ~/.bashrcexport NVM_NODEJS_ORG_MIRROR=https://npm.taobao.org/mirrors/node# 指定node版本nvm install v7...
2018-07-31 07:16:12
244
算法笔记(机械工业出版社)
2018-07-31
算法笔记上机训练实战指南
2018-07-29
机器学习实战.pdf
2018-05-10
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人