Skip to content

Instantly share code, notes, and snippets.

View wayou's full-sized avatar
👁️‍🗨️
NaN

牛さん wayou

👁️‍🗨️
NaN
  • tencent
  • chengdu, disney resort ,china
  • 09:06 (UTC -12:00)
View GitHub Profile
@wayou
wayou / h5_video_inline.html
Last active October 15, 2023 10:07
inline play video in h5 video
<video
id="video"
width="100%"
preload="auto"
x-webkit-airplay="true"
webkit-playsinline="true"
playsinline="true"
x5-video-player-type="h5"
x5-video-player-fullscreen="true"
src="https://video.c-ctrip.com/videos/u20j0z000000mjvtd0DB6.mp4"
@wayou
wayou / find_replace_in_shell.md
Last active October 26, 2018 03:05
find and replace recursively for a directory using shell

Recursively find and replace with bash by leveraging the grep and sed command.

Syntax

grep -rlG <regexp pattern> <path> | xargs sed -i '' 's/pattern/replacement/g'

How it works

@wayou
wayou / file_statistic.sh
Created October 25, 2018 07:45
pirnt file number for each extension and the total file number
# with git:
git ls-files | wc -l | awk '{$1=$1;print $1 " total"}';git ls-files| sed 's/.*\.//' | sort | uniq -c | sort -r|awk '{$1=$1;print}'
# without git
find . -type f | wc -l | awk '{$1=$1;print $1 " total"}'; find . -type f | sed 's/.*\.//' | sort | uniq -c | sort -r|awk '{$1=$1;print}'
@wayou
wayou / .bashrc
Created August 18, 2018 16:03 — forked from vsouza/.bashrc
Golang setup in Mac OSX with HomeBrew. Set `GOPATH` and `GOROOT` variables in zshell, fish or bash.
# Set variables in .bashrc file
# don't forget to change your path correctly!
export GOPATH=$HOME/golang
export GOROOT=/usr/local/opt/go/libexec
export PATH=$PATH:$GOPATH/bin
export PATH=$PATH:$GOROOT/bin
display: ;
visibility: ;
float: ;
clear: ;
position: ;
top: ;
right: ;
bottom: ;
left: ;
@wayou
wayou / trial.key
Created June 8, 2017 09:18 — forked from huqi/trial.key
Beyond Compare 4 license for Mac
Beyond Compare 4
Licensed to: ASIO Allsoftinone
Quantity: 1 user
Serial number: 1822-9597
License type: Pro Edition for Windows
--- BEGIN LICENSE KEY ---
H1bJTd2SauPv5Garuaq0Ig43uqq5NJOEw94wxdZTpU-pFB9GmyPk677gJ
vC1Ro6sbAvKR4pVwtxdCfuoZDb6hJ5bVQKqlfihJfSYZt-xVrVU27+0Ja
hFbqTmYskatMTgPyjvv99CF2Te8ec+Ys2SPxyZAF0YwOCNOWmsyqN5y9t
@wayou
wayou / README.md
Last active November 17, 2016 14:36 — forked from jmarceli/README.md
React errors explained

1

You will get one of these:

Uncaught (in promise) TypeError: Cannot read property 'toUpperCase' of undefined(…)

ReactCompositeComponent.js:870 Uncaught TypeError: Cannot read property 'displayName' of undefined

if you try to:

@wayou
wayou / Global.sublime-settings
Created June 22, 2016 09:18 — forked from benatkin/Global.sublime-settings
excluding node_modules from Sublime Text 2
// Place user-specific overrides in this file, to ensure they're preserved
// when upgrading
{
"folder_exclude_patterns": [".svn", ".git", ".hg", "CVS", "node_modules"]
}
@wayou
wayou / crack_rec.md
Created March 24, 2016 06:59
OSX软件
一些MAC软件的破解方法
  1. 找到对应版本的命令
  2. 打开终端(terminal) 或者 iterm2
  3. 关闭软件
  4. 执行命令
  5. 重新打开软件
Sublime Text

| 版本 | 命令 |

{
"bootstrapped": true,
"in_process_packages":
[
],
"installed_packages":
[
"CodeFormatter",
"DocBlockr",
"EJS",