Skip to content

Instantly share code, notes, and snippets.

View BruceWind's full-sized avatar
🏠
Working from home

Bruce BruceWind

🏠
Working from home
View GitHub Profile
@BruceWind
BruceWind / PrintAllSizesOfDependencies.md
Last active December 22, 2020 09:56 — forked from medvedev/build.gradle
Gradle task that prints total dependencies size and (dependency+(size in kb)) list sorted by size desc
/* Tested with Gradle gradle-6.6.1-all.zip and gradle plugin 4.0.2 */


allprojects {
    repositories {
        afterEvaluate {
    
        tasks.register("depsize-all-configurations") {
            description = 'Prints dependencies for all available configurations'
@BruceWind
BruceWind / tmux-cheatsheet.markdown
Last active September 9, 2020 08:07 — forked from ryerh/tmux-cheatsheet.markdown
Tmux with Ubuntu

如果alias丢失

紧急使用可以先执行 source ~/.bash_rc

添加如下代码到~/.bash_profile之后下次启动tmux就有效了

case $- in *i*) . ~/.bashrc;; esac

注意:本文内容适用于 Tmux 2.3 及以上的版本,但是绝大部分的特性低版本也都适用,鼠标支持、VI 模式、插件管理在低版本可能会与本文不兼容。