I hereby claim:
- I am pierrez on github.
- I am pierrez (https://keybase.io/pierrez) on keybase.
- I have a public key ASAGPzraVRbRvZD1C5BGdToidIUqEfs0WvoK3PKODpqCtQo
To claim this, I am signing this object:
| #configuration of router | |
| conf t | |
| hostname "" | |
| enable secret "" | |
| line console 0 | |
| logging synchronous | |
| password "" | |
| login | |
| exit | |
| line vty 0 4 |
| /* | |
| Made by Pierre Zemb | |
| Part-time internship at System Team | |
| Credit Mutuel Arkea | |
| 2014 | |
| */ | |
| REGISTER elasticsearch-hadoop-1.3.0.M2-yarn.jar; | |
| DEFINE EsStorage org.elasticsearch.hadoop.pig.EsStorage(); |
| ST7/ | |
| ;************************************************************************ | |
| ; TITLE: | |
| ; AUTHOR: | |
| ; DESCRIPTION: | |
| ;************************************************************************ | |
| TITLE "SQUELET.ASM" | |
| #!/bin/bash | |
| # Delete all containers | |
| docker rm $(docker ps -a -q) | |
| # Delete all images | |
| docker rmi $(docker images -q) |
| -- Fichier top | |
| library ieee; | |
| use ieee.std_logic_1164.all; | |
| entity circuit1 is | |
| port ( | |
| clock,rst: in std_logic; | |
| start,load : in std_logic; -- start is sw0 and sw1 is load |
| # Based on: https://gist.github.com/furier/09f1bbe309e2c19236a1 | |
| FROM node:latest | |
| # set user root | |
| USER root | |
| # install shout | |
| RUN npm install -g shout | |
| 1) SELECT nom,salaire from employe WHERE salaire > 1000 AND salaire <1500 ORDER BY salaire,nom; | |
| 2) SELECT nom,salaire,comm from employe WHERE comm != 'NULL'; | |
| 3) SELECT nom,date_embauche from employe WHERE (date_embauche BETWEEN '2001-01-01' AND '2001-12-31') ORDER BY date_embauche; | |
| 4) SELECT * from employe where fonction!= 'secretaire'; | |
| 5) SELECT nom from employe WHERE (num_service=20 OR num_service=30) AND fonction='directeur'; |
I hereby claim:
To claim this, I am signing this object:
| public class ColorWindow extends JFrame{ | |
| . | |
| . | |
| . | |
| public ColorWindow() { | |
| super("ColorWindow"); | |
| setContentPane(RootJPanel); | |
| setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); | |
| pack(); |
| FROM phusion/baseimage:latest | |
| MAINTAINER Pierre Zemb [email protected] | |
| # Use baseimage-docker's init system. | |
| CMD ["/sbin/my_init"] | |
| # ...put your own build instructions here... | |
| #RUN apt-get install -y wget | |
| # Installing latest version of influxdb |