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
/********************************************************************* | |
### Edit by azappa/emanbrivio ### | |
+ Now it outputs a javascript array of objects so you can stylize how you want output code | |
+ Less parameters in config: | |
* widget id (required) | |
* callback function for visualizing tweets (required) | |
* maxTweets (optional) | |
* lang (optional) | |
+ You can format date by using some library like Moment.js (http://momentjs.com/) or native JS Date functions |
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
/* | |
-- original -- | |
HumanizeDuration.js | |
http://git.io/j0HgmQ | |
-- edit -- | |
* remove unused languages | |
* added Italian | |
* return type |
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
Show hidden characters
{ | |
"path": "$HOME/bin:/usr/local/bin:$PATH", | |
"cmd": ["jade", "$file"], | |
"file_regex": "^(...*?):([0-9]*):?([0-9]*)", | |
"selector": "source.jade" | |
} |
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
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"Babel", | |
"Colorsublime", | |
"Jade", |
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
/* | |
Licensed to the Apache Software Foundation (ASF) under one | |
or more contributor license agreements. See the NOTICE file | |
distributed with this work for additional information | |
regarding copyright ownership. The ASF licenses this file | |
to you under the Apache License, Version 2.0 (the | |
"License"); you may not use this file except in compliance | |
with the License. You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 |
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
@import 'config' | |
/* | |
* Alias "nowrap" as "no-wrap". | |
*/ | |
no-wrap = unquote('nowrap') | |
/* | |
* Helper to find out if a given value is a width |
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
# encoding: UTF-8 | |
require 'stringio' | |
module Earthquake | |
module Output | |
def output_filters | |
@output_filters ||= [] | |
end | |
def output_filter(&block) |
NewerOlder