May
03
Bash echo color cheat sheet
Published 17:05 May 03, 2018 by @ezra.
#UNIX/Linux# You can make your BASH script more pretty, by colorizing its output.
Use ANSI escape sequences to s...
Apr
27
安装 Manjaro
Published 12:04 Apr 27, 2018 by @ezra.
#Technology# 前言
本文只适用于启动方式为UEFI+GPT
Manjaro 是一款基于Arch Linux的、用户友好的发行版, 虽然 Manjaro is not Arch, 但它依然能够从 AUR(Arch U...
Apr
24
7 THINGS TO ALWAYS REMEMBER
Published 12:04 Apr 24, 2018 by @ezra.
#Feelings#
the past can’t be changed
you only fail if you quit
sometimes “no” means “not right now”
their opin...
Apr
08
xargs vs exec
Published 10:04 Apr 08, 2018 by @ezra.
#Technology# There is a bit of a debate in some circles about using xargs vs. the -exec {} option that’s bu...
Apr
08
find exec vs find xargs
Published 10:04 Apr 08, 2018 by @ezra.
#Technology# If you want to search files by a pattern and then apply something to the results you have at least t...
Apr
08
Xargs Examples
Published 10:04 Apr 08, 2018 by @ezra.
#Technology# What is the xargs command in UNIX?
The xargs command in UNIX is a command line utility for building...
Apr
08
Sed Examples
Published 10:04 Apr 08, 2018 by @ezra.
#Technology# We use sed to work with text files like log files, configuration files, and other text files.
In th...
Apr
08
Awk Examples
Published 09:04 Apr 08, 2018 by @ezra.
#Technology# Sometimes you need something powerful, giving you more control to process data. This is where awk co...
Mar
05
Whiptail Cheatsheet
Published 15:03 Mar 05, 2018 by @ezra.
#Programming# Whiptail is a program that allows shell scripts to display dialog boxes to the user for informationa...
Mar
05
Swift: Codable not decoding properties with subclasses
Published 12:03 Mar 05, 2018 by @ezra.
#Programming# In this code, the groceries properties is not deserialised from JSON. The name property is, but not ...
Feb
24
Remove all macOS generated invisible files
Published 23:02 Feb 24, 2018 by @ezra.
#macOS# Remove all macOS generated invisible files in current folder: both .DS_Store and ._XXXX files.
find ...
Feb
10
RSYNC Cheatsheet
Published 15:02 Feb 10, 2018 by @ezra.
#macOS#
Commands
Description
rsync /path/to/file.ext /path/to/dest
简单的复制文件 file.ext 到 /path...