Skip to content

Instantly share code, notes, and snippets.

View al0xd's full-sized avatar
🎯
Focusing

Alex al0xd

🎯
Focusing
View GitHub Profile
@al0xd
al0xd / index.html
Created June 27, 2017 07:41
Slack Chat CSS | #codevember
<body>
<div class="animated slideInLeft" id="square">
<div class="animated bounceInUp" id="leftSquare">
<div id="row">
<div class="col-lg-8">
<h1 class="title">Codepen</h1>
</div>
<i class="down fa fa-chevron-down" aria-hidden="true"></i>
@al0xd
al0xd / discourse.conf
Last active August 26, 2015 05:06 — forked from trident523/discourse.conf
Simple NGINX forwarding
upstream discourse {
#fail_timeout is optional; I throw it in to see errors quickly
server 127.0.0.1:4578 fail_timeout=5;
}
# configure the virtual host
server {
# replace with your domain name
server_name discourse.example.com;