Software reference: Difference between revisions
No edit summary  | 
				No edit summary  | 
				||
| Line 205: | Line 205: | ||
|}  | |}  | ||
{| class="mw-collapsible mw-collapsed wikitable"  | {| class="mw-collapsible mw-collapsed wikitable"  | ||
!   | ! Install Node.js  | ||
|-  | |-  | ||
| '''Windows'''  | | '''Windows'''  | ||
| Line 214: | Line 214: | ||
** find the [https://github.com/creationix/nvm/releases latest nvm version]  | ** find the [https://github.com/creationix/nvm/releases latest nvm version]  | ||
** curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.29.0/install.sh | bash  | ** curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.29.0/install.sh | bash  | ||
* source ~/.profile  | * source ~/.profile  | ||
* nvm ls-remote  | * nvm ls-remote  | ||
* nvm install #####   # (latest version, eg 5.8.0)  | * nvm install #####   # (latest version, eg 5.8.0)  | ||
* nvm alias default stable  | * nvm alias default stable  | ||
* (update .bashrc to configure node on even non-interactive shells - see another for example)  | * (update .bashrc to configure node on even non-interactive shells - see another for example)  | ||
** also: nvm use 4.2.1; node -v; nvm ls; nvm alias default 0.11.13; nvm use default  | ** also: nvm use 4.2.1; node -v; nvm ls; nvm alias default 0.11.13; nvm use default  | ||
** also: You can create an .nvmrc file containing version number in the project root directory and it will default to that version  | ** also: You can create an .nvmrc file containing version number in the project root directory and it will default to that version  | ||
** example: npm install -g express # to set the package manager to use a globally shared location  | |||
|}  | |}  | ||
{| class="mw-collapsible mw-collapsed wikitable"  | {| class="mw-collapsible mw-collapsed wikitable"  | ||
Revision as of 17:44, 18 April 2016
Mediawiki - Wordpress - Phabricator
CodeLite - Eclipse - Sublime - Scite - Emacs
LibreOffice - Gimp - i3
Chromium - Firefox - IceWeasel
| OS installation | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
 
 
 
 
 
 
 
  | 
| Cloud and AWS tasks | ||||
|---|---|---|---|---|
 
  | 
| Ubuntu set up networking | 
|---|
Install NetworkManager, as the wpagui UI sucks
  | 
| Ubuntu install Sublime | 
|---|
Sublime editor seems way better than anything else out there on linux:
  | 
| Install Node.js | 
|---|
Windows
 Linux 
  | 
| Ubuntu install Java | 
|---|
Install Oracle JDK 8 (9 is scheduled for release in 2016)
su - add-apt-repository ppa:webupd8team/java apt-get update apt-get install oracle-java8-installer apt-get install oracle-java8-set-default 
 update-alternatives --config java # make note of path update-alternatives --config javac # make note of path sudo subl /etc/environment JAVA_HOME="/usr/lib/jvm/java-8-oracle/jre/bin/java" # actually, use the path from above, of course  |