View ubuntu-idea-launcher
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
#In IDEA, go to Tools > Create Desktop Entry to create a launcher in /usr/share/applications. | |
cp /usr/share/applications/jetbrains-idea.desktop ~/.local/share/applications/ | |
#http://nufailm.blogspot.be/2012/05/custom-launcher-for-intellij-idea-in.html | |
#http://stackoverflow.com/questions/14424254/intellij-launcher-doesnt-work-on-unity |
View ubuntu-hipchat
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
sudo su | |
echo "deb http://downloads.hipchat.com/linux/apt stable main" > \ /etc/apt/sources.list.d/atlassian-hipchat.list | |
wget -O - https://www.hipchat.com/keys/hipchat-linux.key | apt-key add - | |
apt-get update | |
apt-get install hipchat |
View intall-wordpress-debian.sh
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
#http://www.linuxserve.com/2015/05/install-latest-wordpress-version-on.html | |
su - | |
apt-get install apache2 mysql-client mysql-server php5 php5-mysql php5-curl php5-gd | |
mysql -u root -p | |
CREATE DATABASE wpdatabase; | |
CREATE USER wpuser@localhost IDENTIFIED BY 'wppass'; | |
GRANT ALL PRIVILEGES ON wpdatabase.* TO wpuser@localhost; | |
FLUSH PRIVILEGES; | |
exit |
View dto
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
#set( $name = ${NAME.substring(0,1).toLowerCase()}+${NAME.substring(1)} ) | |
#set( $Names = ${NAME}+"s" ) | |
#set( $names = ${name}+"s" ) | |
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | |
import com.fasterxml.jackson.annotation.JsonInclude; | |
import lombok.Data; | |
#parse("File Header.java") | |
@Data |
View ubuntu-node-js
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
#https://www.digitalocean.com/community/articles/how-to-install-node-js-on-an-ubuntu-14-04-server | |
sudo add-apt-repository ppa:chris-lea/node.js | |
sudo apt-get update | |
sudo apt-get install nodejs | |
sudo apt-get install npm | |
npm config set prefix ~/npm | |
#append to .bashrc | |
export PATH="$PATH:$HOME/npm/bin" | |
sudo chown -R `whoami` ~/.npm |
View gist:0b1ee3efa0f5889c9678
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
#Source: http://www.mendrugox.net/2013/08/tp-link-tl-wn725n-v2-working-on-raspberry-raspbian/ | |
wget http://www.mendrugox.net/downloads/14 | |
unzip 14 | |
rm 14 | |
mv 8188eu.ko /lib/modules/3.10.25+/kernel/drivers/net/wireless | |
mv rtl8188eufw.bin /lib/firmware/rtlwifi/ | |
depmod -a | |
modprobe 8188eu | |
ifconfig |
View ubuntu-compass-ruby
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
#https://gorails.com/setup/ubuntu/14.04 | |
sudo apt-get update | |
sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties | |
sudo apt-get install libgdbm-dev libncurses5-dev automake libtool bison libffi-dev | |
curl -L https://get.rvm.io | bash -s stable | |
source ~/.rvm/scripts/rvm | |
echo "source ~/.rvm/scripts/rvm" >> ~/.bashrc | |
rvm install 2.1.2 | |
rvm use 2.1.2 --default |
View MessageDaoJpa.java
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
@Repository("messageDao") | |
public class MessageDaoJpa implements MessageDao { | |
@PersistenceContext | |
private EntityManager entityManager; | |
... | |
public Message get(final String key, final String target) { | |
Criteria criteria; |
View ubuntu-thunderbird
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
echo -e "\ndeb http://downloads.sourceforge.net/project/ubuntuzilla/mozilla/apt all main" | sudo tee -a /etc/apt/sources.list > /dev/null | |
sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com C1289A29 | |
sudo apt-get update | |
sudo apt-get install thunderbird-mozilla-build |
View ubuntu-google-chrome
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
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | |
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' | |
sudo apt-get update | |
sudo apt-get install google-chrome-stable |