Halaman

Rabu, 17 Februari 2016

.Net on Ubuntu


Sementara ini dulu step-step nya..
  1. http://docs.asp.net/en/latest/getting-started/installing-on-linux.html#installing-on-ubuntu-14-04
  2. sudo npm install -g yo generator-aspnet
  3. yo aspnet
  4. dnvm use default -r coreclr
  5. dnu build --framework dnxcore50
  6. dnx -p project.json web

Jumat, 05 Februari 2016

Ubuntu 14.04 Postgre

As simple as this:
sudo apt-get install postgresql postgresql-contrib
createuser new_postgre_user
createdb new_postgre_user the_new_db

and then to login to psql
$ psql --host=127.0.0.1 --username=new_postgre_user --dbname=the_new_db

Voila!