This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.
To capture the video (filesize: 19MB), using the free "QuickTime Player" application:
| # Subscribe to my YouTube Channel -> https://lokjianming.page.link/CVLm # | |
| How to Crack Sublime Text 3 with Hex Editor | |
| 1. Download & Install Sublime Text 3.2.2 Build 3211 | |
| 2. Visit Hexed.it | |
| 3. Open file sublime_text.exe | |
| 4. Search address 97 94 0D | |
| 5. Change to 00 00 00 | |
| 6. Export File |
| git config --global user.name "Ling Ma" | |
| git config --global user.email "[email protected]" | |
| git config credential.helper store |
| linux: | |
| npm ls -gp --depth=0 | awk -F/ '/node_modules/ && !/\/npm$/ {print $NF}' | xargs npm -g rm | |
| For those using Windows, the easiest way to remove all globally installed npm packages is to delete the contents of: | |
| C:\Users\username\AppData\Roaming\npm | |
| You can get here quickly by typing %appdata% (either in explorer, run prompt, or start menu). |
| go back to the last commit | |
| git reset --hard | |
| remove untracked files | |
| git clean -d | |
| Stop tracking and ignore changes to a file in Git |
| sudo add-apt-repository ppa:webupd8team/java | |
| sudo apt-get update | |
| sudo apt-get install oracle-java8-installer |
| If you have nodejs already installed and want to update, then first remove current instalation and install it again using scripts above. | |
| sudo apt-get remove --purge nodejs npm | |
| curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash - | |
| sudo apt-get install -y nodejs |
| sudo git clone https://github.com/lorinma/dockeride.git /usr/src/dockeride; ln -sf /usr/src/dockeride/.bashrc ~/.bashrc; ln -sf /usr/src/dockeride/.vim ~/.vim; ln -sf /usr/src/dockeride/.vimrc ~/.vimrc; wget –quiet -O miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh; bash miniconda.sh -b -p $HOME/miniconda; rm -rf miniconda.sh; source ~/.bashrc; |
| # install Java8 | |
| Add the two following lines to your file /etc/apt/sources.list (which you can create if it does not exist) | |
| sudo vim /etc/apt/sources.list; | |
| deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main | |
| deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main | |
| sudo apt-get update; sudo apt-get install oracle-java8-set-default -y; |