Skip to content

Instantly share code, notes, and snippets.

View lejenome's full-sized avatar

Moez Bouhlel lejenome

View GitHub Profile
@lejenome
lejenome / index.html
Last active December 29, 2017 13:44 — forked from anonymous/index.html
Exported from Popcode.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
</body>
</html>
@lejenome
lejenome / snowjob.py
Created February 23, 2013 21:17 — forked from sontek/snowjob.py
#!/usr/bin/env python
import os
import random
import time
import platform
snowflakes = {}
try:
# Windows Support
#!/usr/bin/env bash
while :; do
find "$PWD" -name '*.less' | while read line; do
REPLACE=`echo $line | sed "s|\.less|\.css|"`
mt1=$(stat -c %Y $line)
mt2=$(stat -c %Y $REPLACE)
if [ "$mt1" -gt "$mt2" ]; then