I hereby claim:
- I am rolandboon on github.
- I am rolandboon (https://keybase.io/rolandboon) on keybase.
- I have a public key whose fingerprint is AE8F 5CFB 6BE7 366A A808 B2F9 C7DF F2EB 0918 D34D
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
a[x-apple-data-detectors] | |
color: inherit !important | |
text-decoration: none !important | |
font-size: inherit !important | |
font-family: inherit !important | |
font-weight: inherit !important | |
line-height: inherit !important |
== ESXi on Gigabyte GA-Z97N-WIFI == | |
Default driverset of ESXi5.5 doesn't support the Gigabyte GA-Z97N-WIFI onboard Network Controller and SATA Controller. During install you will be stopped on the error "No support network interfaces available". | |
== Intel NIC drivers == | |
To be able to install ESXi you need to add "unofficial" drivers to the install ISO. Gigabyte doesn't really mention which specific Intel Network Controller it is used, but it is the Intel I217-V. To add the drivers. To add the drivers to the install ISO use ESXi-customizer to merge the VIB file (drivers) with the official ESXi ISO. | |
- ESXi-customizer: http://www.v-front.de/p/esxi-customizer.html | |
- VIB file: http://shell.peach.ne.jp/~aoyama/wordpress/download/net-e1000e-2.3.2.x86_64.vib | |
- More info: http://www.ivobeerens.nl/2013/09/20/enable-the-intel-i217-v-network-card-in-vmware-esxi/ |
Install Android SDK on Ubuntu
Download latest version:
wget http://dl.google.com/android/android-sdk_r23.0.2-linux.tgz
Unpack:
tar -zxvf android-sdk_r23.0.2-linux.tgz -C ~/
Add SDK to path:
echo 'export PATH="$HOME/android-sdk-linux/tools:$HOME/android-sdk-linux/platform-tools:${PATH}"' >> ~/.bashrc
server { | |
server_name pgadmin.example.com; # Make sure to create a DNS record that refers to your droplet | |
root /home/deploy/phppgadmin; | |
allow 123.123.123.123; # Limit access based on IP | |
deny all; | |
location / { | |
index index.php; | |
try_files $uri $uri/ /index.php; # http://wiki.nginx.org/Pitfalls#Check_IF_File_Exists | |
} |
server { | |
server_name collector.example.com; | |
location / { | |
proxy_pass http://127.0.0.1:1080; | |
proxy_set_header Host $http_host; | |
proxy_http_version 1.1; | |
proxy_set_header Upgrade $http_upgrade; | |
proxy_set_header Connection $connection_upgrade; | |
} | |
} |
server { | |
server_name www.domain.com; | |
root /home/vhosts/www.domain.com/public; | |
location / { | |
index index.php index.html index.htm index.phtml; | |
try_files $uri $uri/ /index.php; # http://wiki.nginx.org/Pitfalls#Check_IF_File_Exists | |
} | |
location ~ \.php$ { |
http = require('http') | |
post_body = 'track=%3A)' | |
headers = | |
'Accept': '*/*', | |
'Connection': 'close', | |
'Host': 'rolandboon.com', | |
'Content-length': Buffer.byteLength(post_body) | |
'Content-Type': 'application/x-www-form-urlencoded'; |