My collection of descriptions
"Documentation is like sex: when it is good, it is very, very good; and when it is bad, it is better than nothing"
Dick Brandon
- Setup developer environment on Windows
- ...
- GIT (Bash, GUI)
- Sublime-Text 3 (ST3)
- Virtual Box
- Vagrant
- PuTTY / PuTTYGen
- WinSCP
- 7-zip
- KeePass
- (optional) Fences
- (optional) Dropbox
ToDo ...
- now you can use git-bash as cmd ;-)
How to use GIT:
$ cd ~
$ mkdir .ssh
$ chmod 0700 .ssh/
$ cd .ssh/
$ vi config
# Edit "config"-File
Host github.com
IdentityFile ~/.ssh/github.com/github
Host vagrant
HostName 127.0.0.1
User vagrant
Port 2222
IdentityFile ~/.ssh/vagrant/vagrant
[ESC] :wq
### Try it
$ clone thinks from github via SSH ;-)
# or login to a vagrant-box
$ ssh vagrant
.ssh/
|-- github.com/
| |-- github
| └-- github.pub
|-- vagrant/
| |-- vagrant
| └-- vagrant.pub
|-- demo/
| |-- demo
| └-- demo.pub
└-- config
Download Sublime Text 3
ctrl + ! on Windows (Swiss-Layout) or
View | Show Console
Copy Python install code from here.
SideBar Enhancment
Emmet
SublimeLinter
Close ST3 Create folder in your Dropbox {Dropbox Path}/Software/Sublime Text 3 $ cd Dropbox $ mkdir Software/Sublime Text 3
### C:\Users\userName\AppData\Roaming\Sublime Text 3\
$ cd ~
$ cd AppData\Roaming\Sublime Text 3\
### Copy Packages, Installed Packages to {Dropbox Path}/Software/Sublime Text 3
$ mv Packages -d {Dropbox Path}/Software/Sublime Text 3
$ ln -s {Dropbox Path}/Software/Sublime Text 3/Packages
$ mv Installed Packages -d {Dropbox Path}/Software/Sublime Text 3
$ ln -s {Dropbox Path}/Software/Sublime Text 3/Installed Packages
$ cd ~
$ vi .bashrc
### add this line
alias subl="/c/Program\ Files/Sublime\ Text\ 3/sublime_text.exe"
[ESC] :wq
### now you can use the "subl" alias on the cmd
subl .
subl file-Name
subl folder-Name
### Sample with & => with the "&" you can work on the cmd ;-)
subl test.txt &
MIT