Skip to content

Instantly share code, notes, and snippets.

View BadUncleX's full-sized avatar

BadUncle BadUncleX

View GitHub Profile

Keybase proof

I hereby claim:

  • I am alexwanng on github.
  • I am foxlog (https://keybase.io/foxlog) on keybase.
  • I have a public key whose fingerprint is 7A93 33B3 2E90 5C6B 57C3 DF63 6A4F F834 CCFD A77C

To claim this, I am signing this object:

@BadUncleX
BadUncleX / Search my gists.md
Created June 28, 2020 02:38 — forked from santisbon/Search my gists.md
How to search gists

Enter this in the search box along with your search terms:

Get all gists from the user santisbon.
user:santisbon

Find all gists with a .yml extension.
extension:yml

Find all gists with HTML files.
language:html

@BadUncleX
BadUncleX / 992_tweets.md
Last active May 21, 2019 01:44
2019年tweets

2019-05-21 09:43:10

how to batch rename file with prefix in bash

for filename in *.pdf; do mv "$filename" "YOUR-PREFIX-NAME_$filename"; done;
@BadUncleX
BadUncleX / get_variable_type.rs
Last active February 4, 2025 07:33
rust常用小工具 tools
/// rust tools
fn main() {
get_variable_type();
}
///get any variable type
fn get_variable_type() {
//expected (), found reference
let v: () = "hello world";

Keybase proof

I hereby claim:

  • I am foxlog on github.
  • I am foxlog (https://keybase.io/foxlog) on keybase.
  • I have a public key whose fingerprint is 7A93 33B3 2E90 5C6B 57C3 DF63 6A4F F834 CCFD A77C

To claim this, I am signing this object:

@BadUncleX
BadUncleX / gitignore中如何删除已经track的文件.md
Last active February 4, 2025 07:40
git rm --cached <file> gitignore中如何删除已经track的文件
@BadUncleX
BadUncleX / 00 [不同语言实现列表交叉合并].md
Last active April 11, 2018 08:47
列表交叉合并类似 Python中的zip功能 (clojure clj ruby scala map vector list)

Ruby中的zip和Flatten

感觉这个最优雅

#data = [[1,2,3,4],[5,6,7,8],[11,22,33,44]]

## interleave four array
s1 = [1,2,3,4,5,6,7]
s2 = [10,20,30,40,50,60,70]
@BadUncleX
BadUncleX / 00 [使用clojure执行git gc做垃圾回收].md
Last active April 11, 2018 06:59
clojure实现git gc垃圾回收处理 file io clj 文件处理

copy from here: http://bit.ly/2HcCZaA

This script goes through all git directories
;; recursively and executes "git gc" to each

Analytics

@BadUncleX
BadUncleX / 00 [A brief example of protocols and records in Clojure].md
Created April 11, 2018 06:14
A brief example of protocols and records in Clojure clj
@BadUncleX
BadUncleX / 00 [shell脚本实现使用find和xargs删除隐藏的全部git子目录].md
Created April 11, 2018 06:01
shell脚本实现使用find和xargs删除隐藏的全部git子目录

shell脚本实现使用find和xargs删除隐藏的全部git子目录