Skip to content

Instantly share code, notes, and snippets.

View shhider's full-sized avatar

Shi Haohong shhider

  • Hangzhou / 杭州
View GitHub Profile
@shhider
shhider / index.md
Last active August 9, 2019 03:15
[ffmpeg 常用功能记录] #ffmpeg

convert image format

ffmpeg -i input.jpg output.gif

convert audio format

@shhider
shhider / basic.md
Last active December 31, 2020 03:15 — forked from tzutalin/ffmpeg.md
[ffmpeg Lite Doc] #ffmpeg #litedoc

video <=> gif

# Video => GIF
ffmpeg -i xxx.mov -pix_fmt rgb24 xxx.gif

# Gif => Video
ffmpeg -i input.gif -b:v 0 -crf 40 -vf scale=600:-1 output.mp4
@shhider
shhider / 00-dependencies.md
Last active May 23, 2019 08:32
[about npm package.json] #nodejs #npm

The tilde ~ matches the most recent patch version (the third number) for the specified minor version (the second number). ~1.2.3 will match all 1.2.x versions but will hold off on 1.3.0.

The caret ^ is more relaxed. It matches the most recent minor version (the second number) for the specified major version (the first number). ^1.2.3 will match any 1.x.x release including 1.3.0, but will hold off on 2.0.0.

Reference

@shhider
shhider / ellipsis.css
Created April 28, 2019 02:19
[Useful CSS Snippets] #css
.ellipsis {
text-overflow: ellipsis;
white-space: nowrap;
word-wrap: normal;
overflow: hidden;
}
@shhider
shhider / index.md
Created March 1, 2019 02:28
[apt-get examples] #debian #apt #apt-get #package
  • apt-get update —— 在修改 /etc/apt/sources.list 或者/etc/apt/preferences之後运行该命令。此外您需要定期运行这一命令以确保您的软件包列表是最新的。
  • apt-get install packagename——安装一个新软件包(参见下文的 aptitude )
  • apt-get remove packagename——卸载一个已安装的软件包(保留配置文件)
  • apt-get –purge remove packagename——卸载一个已安装的软件包(删除配置文件)
  • dpkg –force-all –purge packagename 有些软件很难卸载,而且还阻止了别的软件的应用,就可以用这个,不过有点冒险。
  • apt-get autoclean apt会把已装或已卸的软件都备份在硬盘上,所以如果需要空间的话,可以让这个命令来删除你已经删掉的软件
  • apt-get clean 这个命令会把安装的软件的备份也删除,不过这样不会影响软件的使用的。
  • apt-get upgrade——更新所有已安装的软件包
  • apt-get dist-upgrade——将系统升级到新版本
@shhider
shhider / index.md
Created February 25, 2019 08:32
[Google 搜索语法] #google

"" - 完全匹配搜索

@shhider
shhider / index.md
Created December 26, 2018 06:12
[operators in Reason] #javascript #bucklescript #reasonml

todo

  • |>
  • ``
@shhider
shhider / index.md
Last active August 9, 2019 03:20
[Which is faster in JS] #javascript

environment: MacBook Pro(Early 2015), 2.7Ghz, 16GB, macos 10.14.x

Array

Iterate array -- for-loop vs. forEach(map, reduce)

// for loop vs. forEach

// todo...

@shhider
shhider / index.sh
Last active October 29, 2018 06:35
[macOS cmds you need to know] #macOS
# macOS Mojave 在非 retina 屏幕字体发虚问题
defaults write -g CGFontRenderingFontSmoothingDisabled -bool NO
# macOS 开启「允许任何来源的应用」
sudo spctl --master-disable
@shhider
shhider / index.sh
Last active October 29, 2018 06:54
[Homebrew cmds you need to know] #homebrew #brew #brew-update #mirror
# === basic ===
brew cleanup
# === 更换源。在天朝,你懂得 ===
# Coding.net 源
cd "$(brew --repo)" && git remote set-url origin https://git.coding.net/homebrew/homebrew.git
# 重置 brew 源
cd "$(brew --repo)"