Skip to content

Instantly share code, notes, and snippets.

View luiscielak's full-sized avatar
🤖

Luis Cielak luiscielak

🤖
View GitHub Profile
# Design Systems Resources
by: Sujan Khadgi
Atomic Design by Brad Frost:
http://atomicdesign.bradfrost.com/
Design Systems by Alla Kholmatova:
http://designsystemsbook.com/
Design Systems Handbook:
@luiscielak
luiscielak / wget images
Created December 30, 2015 21:21
Download all images from file (images.txt) into a directory (out)
wget -P out/ -i images.txt
<!DOCTYPE html>
<script src="http://mbostock.github.com/d3/d3.v2.js?2.8.1"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<style>
body {
font: 10px sans-serif;
}
rect {
gnome-cups-manager
------------------
Once upon a time there was a printer who lived in the woods. He was a
lonely printer, because nobody knew how to configure him. He hoped
and hoped for someone to play with.
One day, the wind passed by the printer's cottage. "Whoosh," said the
wind. The printer became excited. Maybe the wind would be his
friend!
@luiscielak
luiscielak / alfred-script.sh
Created May 11, 2012 02:22 — forked from gka/alfred-script.sh
Local full-text search on tweets and favorites
cd /your/local/path/to/tweet-search/
rm last-results.html
search.py {query}
open last-results.html
@luiscielak
luiscielak / gist:450f157c9f12eb56e371
Created October 3, 2015 19:31
Install gems in OSX 10.11
sudo gem install -n /usr/local/bin sass
@luiscielak
luiscielak / dabblet.css
Created April 11, 2012 23:22
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
content-main{ background:white};
@luiscielak
luiscielak / dabblet.css
Created March 9, 2012 01:21
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
.icon-milestone{
float:left;
width:10px;
height:10px;
background:#292b2f;
border:4px solid #33363b;
@luiscielak
luiscielak / dabblet.css
Created February 13, 2012 20:18
Tutorial 3 - Floating a series of 'clear:right' images
/**
* Tutorial 3 - Floating a series of 'clear:right' images
*
* http://css.maxdesign.com.au/floatutorial/tutorial0301.htm
*/
.floatright
{
float: right;
margin: 0 0 10px 10px;
@luiscielak
luiscielak / dabblet.css
Created February 13, 2012 20:05
Tutorial 1 - floating an image to the right
/**
* Tutorial 1 - floating an image to the right
*
* http://css.maxdesign.com.au/floatutorial/tutorial0101.htm
*/
.floatright
{
float: right;
margin: 0 0 10px 10px;