Skip to content

Instantly share code, notes, and snippets.

View Erreur32's full-sized avatar
💭

Erreur32 Erreur32

💭
View GitHub Profile

#3D Text in Sass

Inspired by @mdo

<!DOCTYPE html>
<html>
<head>
<title>UI Transparent</title>
</head>
<body>
<div class="container">
<h1>UI Transparent</h1>
@Erreur32
Erreur32 / index.html
Created October 19, 2012 17:00
As part of ongoing fun challenges with my graphics guy, Chris, I bet him, and challenged myself, that anything he creates in photoshop/illustrator can be replicated in code. I created our upcoming new logo in CSS and then went crazy with animations! I di
<div style="background: url('http://v4.unleash-it.co.uk/images/bg.png');">
<div>
<div class="logo">
<div>
<div class="inside"></div>
</div>
<div>
<div class="inside"></div>
</div>
<div>
<!DOCTYPE html>
<html>
<head>
<title>UI Transparent</title>
</head>
<body>
<div class="container">
<h1>UI Transparent</h1>
<div class="container">
<div class="wrap">
<div class="circle horizontal c1">
<div class="wrap-electron">
<div class="circle electron"></div>
</div>
</div>
<div class="circle vertical c1">
<div class="wrap-electron">
<div class="circle electron"></div>
@Erreur32
Erreur32 / #dev_xhr-iframe.md
Created May 2, 2017 08:24 — forked from vrusua/#dev_xhr-iframe.md
Cross domain messaging and dynamic iframe height
@Erreur32
Erreur32 / emoji.md
Last active March 11, 2018 02:47 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@Erreur32
Erreur32 / debian-init.sh
Created February 24, 2018 21:33 — forked from andsens/debian-init.sh
This is a generic init-script, easily modifiable to suit your needs. It uses quite a lot of lsb init-functions and adheres to the lsb standards.
#!/bin/sh
### BEGIN INIT INFO
# Provides: generic-prog
# Required-Start: $local_fs $remote_fs $network
# Required-Stop: $local_fs $remote_fs $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Generic Program
# Description: Generic Program is a generic program to do generic things with
### END INIT INFO
@Erreur32
Erreur32 / check-file-top10.sh
Last active March 11, 2018 02:44
## Debian check des 10 plus gros fichier
## check des 10 plus gros fichier
find /var/log -type f -exec du -hs {} \; | sort -n | tail -n 10