$ brew install node
$ node -v
v7.4.0
$ npm install npm@latest -g
$ npm -v
4.1.1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
percent_complete, | |
dateadd(second,estimated_completion_time/ 1000, getdate()) as est_completion_time | |
FROM | |
sys.dm_exec_requests | |
WHERE | |
command = 'DbccFilesCompact' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.vm.box = "centos/7" | |
config.vm.provider "virtualbox" do |v| | |
v.name = "openstack-server" | |
v.memory = 6144 | |
v.cpus = 2 |
$ brew install postgresql
Install Postgres.app from https://postgresapp.com/
Install pgAdmin 4
$ brew cask install pgadmin4
Follow instructions from:
Install Homebrew Cask
$ brew update
$ brew tap caskroom/cask
Install Java JDK
Install the Go tools
$ brew update
$ brew install go
Create gocode folder
$ mkdir $HOME/gocode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<network> | |
<name>default</name> | |
<bridge name="virbr0"/> | |
<forward mode="nat"/> | |
<ip address="192.168.122.1" netmask="255.255.255.0"> | |
<dhcp> | |
<range start="192.168.122.2" end="192.168.122.254"/> | |
</dhcp> | |
</ip> | |
</network> |
NewerOlder