自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (16)
  • 问答 (1)
  • 收藏
  • 关注

原创 为什么 tar 可以?

我一直很好奇:作为一个文件打包的格式,tar 包为什么在解压后,使用 ls -l 命令查看,文件的权限、文件 owner 和 group、修改时间等等各种属性都在? 除了正常的文件,连设备文件也可以打包,因为如此,tar 命令可以用来备份整个 Linux 操作系统,一旦玩崩了,用备份恢复,什么都不会丢。tar 命令是 Unix/Linux 平台用的最多的命令之一。 原始的 tar 只具备打包和...

2018-12-27 16:43:36 137

原创 Linux 权限判定的顺序

有太多文章介绍 Linux 的权限管理了:用 umask 设定缺省权限,用 chmod 改变权限。下面这个题目有可能难住一批 Linux 用户,当权限设定冲突的时候,内核是怎么判定的呢? 请看题:$ ls -l data.txt----rw---- 1 jerry admin 6 Jan 1 21:49 data.txtdata.txt 文件的主人是 jerry,所属的组是 adm...

2019-01-02 16:15:57 1028

原创 在 Linux 上按需播放 GIF 动画视频

我在查看 vscode 官网帮助时,发现很多 demo 都是用 GIF 图片表达的视频。用GIF有个好处,就是这种图片格式在所有浏览器上都支持。不方便的是,这些GIF播放速度都很快,刚开始学习,往往还没有看清楚或没理解,内容就跳过去了。想暂停是做不到的,GIF 总是从头放到尾,没有停顿的。当然,解决办法是有的。我做了一些搜寻工作,整理出来,分享给大家。Chrome 浏览器插件 : GIF...

2018-12-27 16:38:05 1963

原创 numpy ndarray 之内功心法

一、多维数据的形象表示import numpy as np# 一维数据不用赘言data_1d = np.array([0, 1, 2, 3])# 二维数据作为 m 行 n 列的表格,例如 2 行 3 列data_2d = np.arange(6).reshape(2, 3)# 三维数据作为 k 层 m 行 n 列 的积木块, 例如 2 层 3 行 4 列data_3d = ...

2018-09-18 20:34:48 158

Linux Firewalls Attack Detection and Response

Linux Firewalls Attack Detection and Response,这是英文原版,内容清晰,适合英语基础较好的阅读。书中全面阐述了iptables防火墙,并详细讨论了如何应用psad、 fwsnort、fwknop 3个开源软件最大限度地发挥iptables检测和防御攻击的效力。

2019-02-14

High Performance MySQL 3rd.Edition

High Performance MySQL 3rd.Edition by Baron Schwartz, Peter Zaitsev, and Vadim Tkachenko

2017-10-08

Learning HTTP2

完整的学习 HTTP2 协议 HTTP/2 (原名HTTP/2.0)即超文本传输协议 2.0,是下一代HTTP协议。是由互联网工程任务组(IETF)的Hypertext Transfer Protocol Bis (httpbis)工作小组进行开发。是自1999年http1.1发布后的首个更新。HTTP 2.0在2013年8月进行首次合作共事性测试。在开放互联网上HTTP 2.0将只用于https://网址,而 http://网址将继续使用HTTP/1,目的是在开放互联网上增加使用加密技术,以提供强有力的保护去遏制主动攻击。DANE RFC6698允许域名管理员不通过第三方CA自行发行证书。

2017-10-08

deep learning technical introduction

这篇介绍深度学习的综述文章,既简介又全面,区区100页,让你了解深度学习的最新架构。

2017-09-28

Clean Architecture

Practical Software Architecture Solutions from the Legendary Robert C. Martin (“Uncle Bob”), , By applying universal rules of software architecture, you can dramatically improve developer productivity throughout the life of any software system. Now, building upon the success of his best-selling books Clean Code and The Clean Coder, legendary software craftsman Robert C. Martin (“Uncle Bob”) reveals those rules and helps you apply them., , Martin’s Clean Architecture doesn’t merely present options. Drawing on over a half-century of experience in software environments of every imaginable type, Martin tells you what choices to make and why they are critical to your success. As you’ve come to expect from Uncle Bob, this book is packed with direct, no-nonsense solutions for the real challenges you’ll face—the ones that will make or break your projects., Learn what software architects need to achieve—and core disciplines and practices for achieving it, Master essential software design principles for addressing function, component separation, and data management, See how programming paradigms impose discipline by restricting what developers can do, Understand what’s critically important and what’s merely a “detail”, Implement optimal, high-level structures for web, database, thick-client, console, and embedded applications, Define appropriate boundaries and layers, and organize components and services, See why designs and architectures go wrong, and how to prevent (or fix) these failures, Clean Architecture is essential reading for every current or aspiring software architect, systems analyst, system designer, and software manager—and for every programmer who must execute someone else’s designs., Register your product at informit.com/register for convenient access to downloads, updates, and/or corrections as they become available.

2017-09-28

Information Theory, Inference, and Learning Algorithms

机器学习的信息理论基础。 我移除了里面添加的链接等信息,可以直接打印成很干净的书。

2017-07-01

Linux调试技术

收藏的,分享给大家。 Linux上开发必须掌握的基本技术。

2011-10-01

tcpip源码分析

中文的,对于向了解tcp/ip实现的人来说再好不过了。

2011-10-01

网络协议手册

Network Protocols Handbook 常用的网络协议介绍,比较全

2011-10-01

MFC Windows程序设计

很经典的mfc教程,讲的比较全面和详细。中文版的,呵呵

2011-09-29

Android API手册

Android API, Build 1.1_r1 编程的参考手册,很好用

2011-09-29

C C++代码审查表

代码走读的标准。开code review会的时候,帮助你审查同事的代码。

2011-09-16

开源软件架构

这本书好难找啊,看了之后对常用的开源软件的架构了如指掌,学习起来更方便了。

2011-09-16

应用密码学手册

《Handbook of Applied Cryptography》 密码学入门经典

2011-09-16

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除