Skip to content

Instantly share code, notes, and snippets.

View dennisausbremen's full-sized avatar
💭
is typing ...

Dennis Gieseler dennisausbremen

💭
is typing ...
View GitHub Profile
@heroheman
heroheman / cw-grid-mod.scss
Last active December 27, 2015 02:39
SCSS: CSS Wizardry Grid Mod - with AdobeBlank and numerical Namespaces
// Attention - This is a modified version of the csswizardry-grids by Harry Roberts - @csswizardy
// It includes the AdobeBlank Font, which has to be declared under the variable $font-blank
// This way you don't have to rely on whitespace or letter-spacing hacks. Idea by @dennisausbremen
// You can find Adobe Blank here: http://blogs.adobe.com/typblography/2013/03/introducing-adobe-blank.html
// I changed the namespaces. Using Variables like "one-twelves" is very uncommon for
// non-english people, so i changed it to "u-1-12" (the u is for "unit")
// Also i changed the comment syntax to the native Sass Syntax.
@TJkrusinski
TJkrusinski / client.js
Last active November 24, 2016 23:22
Twitter Love/Hate for stack overflow.
$(function(){
var socket = io.connect('http://localhost:8080');
socket.on('tweet', function(tweet) {
$('body').append('<div class="tweet">' + tweet.text + '</div>');
});
});