This file contains 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
Copyright (c) 2011 ZURB, http://www.zurb.com/ |
This file contains 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
.carousel-fade { | |
.carousel-inner { | |
.item { | |
opacity: 0; | |
.transition(opacity 1s ease-out); | |
} | |
.active { | |
opacity: 1; | |
} |
This file contains 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
// FLUSH GRIDS | |
// ------------------------- | |
.row-fluid [class*="span"].flush, // increase specifity | |
[class*="span"].flush, { | |
margin-left: 0; | |
} | |
.spanXflush (@index) when (@index > 0) { | |
(~".span@{index}.flush") { |
This file contains 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
//- ---------------------------------- | |
//- Usage: | |
//- include lorem | |
//- p | |
//- mixin lorem(25) | |
//- ---------------------------------- | |
//- new sentece after N words | |
- var colonEvery = 10 |
This file contains 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
// snippet to chain sync methods to an initial async | |
_then: function(f) { | |
this._q = this._q || []; | |
this._q.push(f); | |
return this; | |
}, | |
// continue execution | |
_done: function() { | |
var m; | |
while( (m = this._q.shift()) ) |
This file contains 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
C 1.0000d = 8h ; 8-hour work days | |
D £1,000.00 ; default currency and formatting | |
; First approach: automatically set value for work delivered by person at their | |
; current rate | |
; Issue: since time is seconds-based the day rate needs to be divided by 1 day | |
; to arrive at the 'second rate'. This somehow is rounded to two decimals which | |
; means that the below is incorrect when being used. It will result in a | |
; multiplier that's either `0.01` or `0.02`. | |
= /^Work:Client:Project:Alice/ |
This file contains 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
#!/usr/bin/bash | |
# | |
# Script to notify user for new mails. | |
# Crontab ex: | |
# */3 * * * * $HOME/.local/scripts/mbsync-notify.sh [acc_name] | |
# | |
# do not duplicate | |
killall mbsync &>/dev/null |