Command Line - gitignore.io / docs
Temp
gitignore.io
Create useful .gitignore files for your project
gitignore.io
Create useful .gitignore files for your project
Generate file checksums
Generate file checksums
7 Ways to Generate a MD5 File Checksum (Windows and Android) | InfosecScout
Do you wonder how to generate a MD5 file checksum? You are at the best place, in this article, I'll show you 7 methods to…
codingsince1985/checksum: Compute message digest for large files in Go
Compute message digest for large files in Go. Contribute to codingsince1985/checksum development by creating an account on GitHub.
Makefile中的tab缩进 - 胡小兔 - 博客园
Makefile中的Tab缩进 这学期选了OOP课,写了条笔记。 makefile中的缩进的问题,要从makefile的基本结构说起: target: prerequisite recipe (she
有没有 Windows 下好用的 samba 客户端/浏览器 - V2EX
Windows - @SSang - Windows 自带的有几个痛点:1 、不能用非标端口2 、不能映射根目录(如 \\file.com\ 这种)3 、只能使用一个账号网上找了一圈好像都没有解决的办法,问一下大家都是
IYUUPlus使用篇-转移做种客户端【全平台】 - 大卫Blog
功能实现做种客户端之间的转移(transmission、qBittorrent之间随意互转);比如:transmission转qBittorrent、qBittorrent转transmissi...
文件系统FUSE开发实践
预热 最近一直在优化分布式文件系统的性能,学习了linux内核文件系统的函数,了解到linux一切皆文件,除了常见的文件、目录还有socket(可查阅apue第四章内容),那这些文件的管理都离不开VFS(虚拟文件系统),linux支持ext、ext2xfs等多种文件系统,那都是依赖于统一的文件操作界面,底层采用链表的方式,将不同的文件系统链接。打个比方,linux内核就像一个工厂,而VFS是模板,
SUSE Linux Enterprise Desktop 15 SP2: 管理指南
讲述系统管理任务,如维护、监视和自定义初始安装的系统。
Building a multi-stage Dockerfile with --target flag builds all stages instead of just the specified one
From the docker build docs, you can specify a --target flag with the name of the stage to build it. Also, the same is specified in the multi-stage build docs.
When you build your image, you don’t
Build images with BuildKit
Learn the new features of Docker Build with BuildKit
How to delete cache? - General Discussions - Docker Community Forums
How to copy files from dockerfile to host?
I want to get some files when dockerfile built successfully, but it doesn't copy files from container to host.
That means when I have built dockerfile, the files already be host.
Docker: Copying files from Docker container to host
I'm thinking of using Docker to build my dependencies on a Continuous Integration (CI) server, so that I don't have to install all the runtimes and libraries on the agents themselves.
To achieve ...
跟我一起写Makefile — 跟我一起写Makefile 1.0 文档
升级glic: 解决"libc.so.6: version 'GLIBC_2.14' not found"问题 - 散尽浮华 - 博客园
线上一台服务器在执行leveldb程序的时候,报错:"libc.so.6: version `GLIBC_2.14' not found"。 排查原因及解决方法如下: 1)
documents/Makefile at master · ULHPC/documents
Reports and various documents / slides relative to the UL HPC platform - documents/Makefile at master · ULHPC/documents
二、主目录 Makefile 分析(1) - 游戏进行中 - 博客园
2.1 uboot 版本号 uboot 的版本号分三个级别: VERSION:主版本号 PATCHLEVEL:次版本号,为补丁级别 SUBLEVEL:再次版本号 EXTRAVERSION:附加版本信息
Function and difference between $() and ${} in Makefile
In makefile, ${CC} -o myfile myfile.c and $(CC) -o myfile myfile.c both work fine even without definition of CC.
My question is:
How to use $(..) and ${..}?
Are they just convert the string in {}...
What's the difference between := and = in Makefile?
For variable assignment in Make, I see := and = operator. What's the difference between them?
What is the difference between the GNU Makefile variable assignments =, ?=, := and +=?
Can anybody give a clear explanation of how variable assignment really works in Makefiles.
What is the difference between :
VARIABLE = value
VARIABLE ?= value
VARIABLE := value
VARIABLE += v...
What is a Makefile and how does it work?
Run and compile your programs more efficiently with this handy automation tool.
【译】EditorConfig 介绍 | AlloyTeam
golang 之静态链接 – PHPor 的Blog
01 编译
也谈Go的可移植性 | Tony Bai
Go有很多优点,比如:简单、原生支持并发等,而不错的可移植性也是Go被广大程序员接纳的重要因素之一。但你知道为什么Go语言拥有很好的平台可移植性吗?本着“知其然,亦要知其所以然”的精神,本文我们就来探究一下Go
群晖交叉编译记录(编译subversion) - 書劍飄零 - 博客园
前言 由于群晖套件商店里的svn为1.9.7版本,不支持权限设置时路径使用通配符。查阅资料发现自1.10版本开始才支持。故需要编译1.10+的svn版本。 当前的群晖型号为x86_64架构,试着在de
Golang交叉编译中使用libpcap库
Golang交叉编译中使用libpcap链接库 之前提到的一个流量统计与可视化程序,有人提到希望有arm的版本,我想这go交叉编译还是挺简单的 结果遇到了挺大一个坑——纯Go程序交叉编译是很简单,加上环境变量 CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build 基本就可以进行编译了。 但是我这个程序有一个很大的特点——使用的gopacket用了li