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 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 gist:0a2a32f49ae800973886
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
#chrome | |
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.list' | |
#java | |
sudo add-apt-repository ppa:webupd8team/java | |
#maven3 | |
sudo add-apt-repository "deb http://ppa.launchpad.net/natecarlson/maven3/ubuntu precise main" | |
#mongodb | |
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10 | |
echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list |
View ubuntu-docker
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 apt-get update | |
sudo apt-get install docker.io | |
source /etc/bash_completion.d/docker.io | |
sudo docker run -i -t ubuntu /bin/bash |
View ubuntu-mongodb
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 apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10 | |
echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list | |
sudo apt-get update | |
sudo apt-get install -y mongodb-org |
View ubuntu-groovy
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
curl -s get.gvmtool.net | bash | |
source "$HOME/.gvm/bin/gvm-init.sh" | |
gvm install groovy | |
groovy -version |
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 ubuntu-maven-3
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 apt-get remove maven2 | |
sudo add-apt-repository "deb http://ppa.launchpad.net/natecarlson/maven3/ubuntu precise main" | |
sudo apt-get update | |
sudo apt-get install maven3 | |
#If you encounter this: | |
#The program 'mvn' can be found in the following packages: | |
# * maven | |
# * maven2 |
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 |
NewerOlder