Spelling add downloads.

master
René Jochum 9 years ago
parent 1858a3789d
commit 7d0c5d8ca6

3
.gitignore vendored

@ -1,3 +1,6 @@
# Hugo
.tags
public/
# Downloads
static/downloads/

@ -0,0 +1,62 @@
---
date: 2015-07-14T21:09:00+01:00
title: Atom.io my editor of choice
author: pcdummy
tags:
- atom
- markdown
- sublime
---
I use [atom.io](https://atom.io/) with a bunch of plugins. Atom.io is made by github, it uses the webkit engine underneath so its a browser engine running a extensible editor. :-)
So far theres no debugger for Go and Atom.io.
[atomtips.com](www.atomtips.com/atom-editor-vs-sublime-text/) explains my reasons to switch to Atom from Sublime quiet good.<!--more-->
#### Installation
sudo add-apt-repository -y ppa:webupd8team/atom
sudo apt-get update
sudo apt-get -y install atom
apm install project-manager
apm install linter # https:// atom.io/packages/linter
apm install monokai
apm install autocomplete-plus
apm install git-control
apm install merge-conflicts
apm install clipboard-history
apm install minimap
apm install minimap-git-diff
apm install go-to-line
#### Go (golang) [autocomplete](https:// atom.io/packages/go-plus)
go get -u -v github.com/nsf/gocode
go get -u -v github.com/golang/lint/golint
go get golang.org/x/tools/cmd/goimports
apm install go-plus
go get -u -v code.google.com/p/rog-go/exp/cmd/godef
apm install godef
go get code.google.com/p/go.tools/cmd/oracle
apm install go-oracle
#### Python Flake8 linter for atom, i'm using the python3 variant as i develop for python 3.x
sudo pip3 install flake8
apm install linter-flake8
#### Python autocomplete for atom
sudo apt-get -y purge python3-jedi python-jedi
apm install autocomplete-jedi
#### Python import sorter
[isort](https://github.com/timothycrosley/isort) and [python-isort](https://atom.io/packages/python-isort)
sudo pip install isort
apm install python-isort
#### Navigator :)
apm install autocomplete-plus
apm install atom-ctags

@ -0,0 +1,15 @@
---
date: 2015-07-14T22:54:00+01:00
title: Install the latest salt-minion
author: pcdummy
tags:
- HOWTO
- Ubuntu
- Salt
---
#### This is what i use to install the latest salt-minion on Ubuntu 14.04
sudo apt-get -y install software-properties-common
sudo add-apt-repository -y ppa:saltstack/salt
sudo apt-get update
sudo apt-get -qy install salt-minion

@ -384,7 +384,7 @@ Connect the newly created "Account":
#### Misc
sudo apt-get -y install sshfs unrar screen pwgen whois
sudo apt-get -y install sshfs unrar screen pwgen whois uuid
#### LXC (Linux Container)

Loading…
Cancel
Save