Skip to content

Instantly share code, notes, and snippets.

View maiis's full-sized avatar
🎯
Focusing

Emmanuel Vuigner maiis

🎯
Focusing
View GitHub Profile
#!/usr/bin/env bash
# names of latest versions of each package
export VERSION_PCRE=pcre-8.36
export VERSION_OPENSSL=openssl-1.0.2a
export VERSION_NGINX=nginx-1.9.0
# URLs to the source directories
export SOURCE_OPENSSL=https://www.openssl.org/source/
export SOURCE_PCRE=ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/
@maiis
maiis / gandi15ans
Last active August 29, 2015 14:18 — forked from mourtazag/gandi15ans
Coupons gagnés pour les 15 ans de gandi à échanger/donner. Contact via twitter @maiis ou en commentaire dessous
# Un .XZY gratuit
# Un .INFO gratuit
# Un .SPACE gratuit
# Un .FR à 50%
# Un .ME à 1€
@maiis
maiis / slideshow.js
Created May 14, 2012 14:12 — forked from ryandoherty/slideshow.js
Slideshow in 12 lines of JavaScript
<script>
/*
A div with an id of 'slideshow' contains five images, the first of which is shown and the others are hidden using
a display style of none. Using JavaScript, create a simple slideshow that cycles through the images, displaying
each image for three seconds at a time, looping back to the first image when the end is reached. You cannot use
jQuery or any other library.
*/
(function() {
var images = document.getElementById("slideshow").getElementsByTagName("img");
var currentIndex = 0;
@maiis
maiis / dabblet.css
Created February 8, 2012 22:12 — forked from LeaVerou/dabblet.css
Move in a circle without wrapper elements
/**
* Move in a circle without wrapper elements
* Idea by Aryeh Gregor, simplified by Lea Verou
*/
@keyframes rot {
from {
transform: rotate(0deg)
translate(-150px)
rotate(0deg);