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
<?php | |
// we suppose that sellsyconnect, sellsytools and boot files are created.. | |
/*******Code to create client*******/ | |
//We configure parameters for new client | |
$create_client_request = array ( | |
'method' => 'Client.create', |
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-option -g status-utf8 on | |
# Change key binding | |
set prefix C-a | |
unbind-key C-b | |
bind-key C-a send-prefix | |
#Powerline integration | |
#run-shell "powerline-daemon -q" |
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
#!/bin/sh | |
cd /temp | |
//Download libtiff4 - http://packages.ubuntu.com/saucy/libtiff4 | |
wget http://mirrors.kernel.org/ubuntu/pool/universe/t/tiff3/libtiff4_3.9.7-2ubuntu1_amd64.deb | |
sudo dpkg -i libtiff4_3.9.7-2ubuntu1_amd64.deb | |
//Download canon's sotfwares - http://www.canon.fr/Support/Consumer_Products/products/Fax__Multifunctionals/InkJet/PIXMA_MP_series/PIXMA_MP230.aspx?type=download&language=EN&os=Linux |
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
find ./www -name "*.php" ! -path "./www/cache/*" | tar -cf wwwBackup.tar.gz -T - |
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
package fr.intechinfo.s5.jee.servletJsp; | |
import java.io.IOException; | |
import java.util.Date; | |
import javax.annotation.Resource; | |
import javax.persistence.EntityManager; | |
import javax.persistence.EntityTransaction; | |
import javax.persistence.PersistenceContext; | |
import javax.servlet.ServletException; |
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://awhan.wordpress.com/2012/04/18/tmux-copy-paste-with-mouse/#comment-465 | |
# Mouse mode | |
set -g mode-mouse on | |
set -g mouse-resize-pane on | |
set -g mouse-select-pane on | |
set -g mouse-select-window on | |
# Toggle mouse on | |
bind m \ |
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
FROM ubuntu:precise | |
MAINTAINER Aurel <[email protected]> | |
ENV DEBIAN_FRONTEND noninteractive | |
RUN apt-get update -qq && \ | |
apt-get -y install git-core chromium-browser\ | |
build-essential python-setuptools \ | |
python-dev python-pip \ |
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
# Android development environment for ubuntu precise (12.04 LTS). | |
# version 0.0.1 | |
# Start with ubuntu precise (LTS). | |
FROM ubuntu:12.04 | |
MAINTAINER Aurel <[email protected]> | |
# Never ask for confirmations | |
ENV DEBIAN_FRONTEND noninteractive |
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
docker export 7423d238b | docker import - sample:flat |
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
# Cordova tools for ubuntu precise (12.04 LTS). | |
# version 0.0.1 | |
FROM ahazem/android:v0.7.6 | |
MAINTAINER peernohell <[email protected]> | |
# Install jdk7 and uninstall oracle-jdk6 | |
RUN add-apt-repository ppa:webupd8team/java && apt-get update | |
RUN apt-get -y install oracle-java7-installer && rm -rf /usr/lib/jvm/java-6-oracle |
NewerOlder