This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="block"> | |
<div class="centered">Hello world</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// RotarySwitch.pde -- test out a rotary switch (not a rotary encoder) | |
// Tod E. Kurt, http://todbot.com/blog/ | |
////4-position rotary switch | |
const int firstRotaryPin = 3; | |
const int lastRotaryPin = 7; | |
int button = 9; ////button input | |
int input1 = LOW; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The Media Object | |
*/ | |
.media {margin:10px;} | |
.media, .bd {overflow:hidden; _overflow:visible; zoom:1;} | |
.media .img {float:left; margin-right: 10px;} | |
.media .img img{display:block;} | |
/* for element positioned on the right */ | |
.media .imgExt{float:right; margin-left: 10px;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//mimic if statement for angular | |
//Schema: if(expression, 'foo', 'bar') | |
$scope['if'] = function(condition, a, b) { | |
return condition ? a : b; | |
}; | |
//mimic switch case for angular | |
//Schema: switch(colorid, [[1,'red'], [2,'green'], [3, 'blue']], 'black') | |
$scope['switch'] = function (expression, cases, thedefault) { | |
for(var i = 0; i < cases.length; i++) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() | |
{ | |
/* Check to see if we have saved a style already, a bit verbose but you get the drift! */ | |
var theme = localStorage.getItem('style'); | |
if (!theme) { | |
localStorage.setItem('style', 'light'); | |
}; | |
updateTheme(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// We all know how to use mixins, right? | |
@mixin kung { | |
background: green; | |
color: yellow; | |
} | |
@mixin foo { | |
background: orange; | |
color: red; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# This script backups an OS X system to an external volume, effectively | |
# cloning it. It is based on [0], [1] and [2] for OS X and [3] and [4] for | |
# Linux. One could also use commercial tools like SuperDuper! or Carbon Copy | |
# Cloner. The latter website has an interesting list[5] on what files to | |
# exclude when cloning. | |
# | |
# Exclusions (from CCC[5]), see rsync_excludes_osx.txt | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The Media Object | |
*/ | |
.media {margin:10px;} | |
.media, .bd {overflow:hidden; _overflow:visible; zoom:1;} | |
.media .img {float:left; margin-right: 10px;} | |
.media .img img{display:block;} | |
/* for element positioned on the right */ | |
.media .imgExt{float:right; margin-left: 10px;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.with-border { | |
border:1px solid #333; | |
} | |
.media-small { | |
width:145px; | |
height:97px; | |
background-position:50% 50%; | |
background-repeat:no-repeat; | |
display:block; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.with-border { | |
border:1px solid #333; | |
} | |
.media-small { | |
width:145px; | |
height:97px; | |
background-position:50% 50%; | |
background-repeat:no-repeat; | |
display:block; |