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
# usage curl -s https://gist.github.com/ptomasroos/8914609/raw/ | sudo sh | |
# !! make sure you have the vmware tools mounted all ready through the UI | |
sudo apt-get update | |
sudo apt-get -y upgrade | |
sudo apt-get -y install linux-headers-generic build-essential | |
cd /media/VMware\ Tools/ | |
sudo cp VM*.tar.gz /tmp | |
cd /tmp |
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
# usage | |
# curl -s https://gist.github.com/ptomasroos/8861534/raw/ | sudo sh | |
sudo apt-get update | |
sudo apt-get -y upgrade | |
sudo apt-get -y install linux-headers-generic build-essential | |
# install chrome | |
cd /tmp | |
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb |
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
#!/usr/bin/env bash | |
# Usage: {script} [ OPTIONS ] TARGET VERSION | |
# | |
# TARGET Default target is "/usr/local". | |
# VERSION If not defined tries to get the build into the Sublime Text 2 website. | |
# | |
# OPTIONS | |
# | |
# -h, --help Displays this help message. | |
# |
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
using System.Linq; | |
namespace ClassLibrary2 | |
{ | |
using System; | |
using System.Reflection; | |
using NUnit.Core; | |
using NUnit.Core.Extensibility; | |
using NUnit.Framework; |
NewerOlder