Skip to content

Instantly share code, notes, and snippets.

View Telematica's full-sized avatar

Héctor Cerón Figueroa Telematica

View GitHub Profile
@Telematica
Telematica / responsive.txt
Created June 22, 2012 04:11 — forked from yesidays/responsive.txt
Links responsive design
- Otra libreria para problemas con IE con CSS3 http://css3pie.com/
- http://html5demos.com/
- mediaqueri.es
- www.simplegrid.info
- http://960.gs/
- http://cssr.ru/simpliste/
- http://blog.koalite.com/2012/01/diseno-web-sensible-y-grids-css/
- http://simpliste.ru/en/
testear resoluciones - http://screenqueri.es/
www.responsinator.com
@Telematica
Telematica / keybase.md
Created November 18, 2014 05:32
keybase.md

Keybase proof

I hereby claim:

  • I am Telematica on github.
  • I am telematica (https://keybase.io/telematica) on keybase.
  • I have a public key whose fingerprint is 293E BECA B8A2 39D0 9F3C 9FB3 3736 105B 180E 7D6C

To claim this, I am signing this object:

@Telematica
Telematica / export.js
Last active February 20, 2024 03:05
Simple Raw Text Export for Google Chrome Bookmarks
/**
* @function
* @description Gets all Bookmarks from Chrome Bookmark repository
* @param object window
* @return string
*/
;(function (window) {
var fetcher = {
@Telematica
Telematica / bankSnippet.js
Last active January 4, 2016 05:41
Bank Payment Resume Snippet Packed with accounting.js v0.4.1 (http://openexchangerates.github.io/accounting.js)
/*!
* accounting.js v0.4.1, copyright 2014 Open Exchange Rates, MIT license, http://openexchangerates.github.io/accounting.js
*/
(function(p,z){function q(a){return!!(""===a||a&&a.charCodeAt&&a.substr)}function m(a){return u?u(a):"[object Array]"===v.call(a)}function r(a){return"[object Object]"===v.call(a)}function s(a,b){var d,a=a||{},b=b||{};for(d in b)b.hasOwnProperty(d)&&null==a[d]&&(a[d]=b[d]);return a}function j(a,b,d){var c=[],e,h;if(!a)return c;if(w&&a.map===w)return a.map(b,d);for(e=0,h=a.length;e<h;e++)c[e]=b.call(d,a[e],e,a);return c}function n(a,b){a=Math.round(Math.abs(a));return isNaN(a)?b:a}function x(a){var b=c.settings.currency.format;"function"===typeof a&&(a=a());return q(a)&&a.match("%v")?{pos:a,neg:a.replace("-","").replace("%v","-%v"),zero:a}:!a||!a.pos||!a.pos.match("%v")?!q(b)?b:c.settings.currency.format={pos:b,neg:b.replace("%v","-%v"),zero:b}:a}var c={version:"0.4.1",settings:{currency:{symbol:"$",format:"%s%v",decimal:".",thousand:",",precision:2,grouping:3},number:{precision:0,
@Telematica
Telematica / .editorconfig
Last active August 29, 2015 14:17
.editorconfig
# http://editorconfig.org
root = true
[*]
indent_style = space
indent_size = 3
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
@Telematica
Telematica / handyCLIstuff.sh
Last active October 17, 2017 22:39
Handy Commands and Utilities for Linux
# ===========================================
#tested on Ubuntu 14.04
sudo dmidecode | grep Maximum
#Output:
# Maximum Size: 32 kB
# Maximum Size: 1024 kB
# Maximum Size: 8192 kB
# Maximum Capacity: 16 GB
@Telematica
Telematica / misc.js
Last active January 29, 2016 18:59
JS Misc Stuff
var defaults = {
'MDBykpSXsSE' : { min : 423, max : 430, current : 425 }
,'MDBykpSXsSE' : { min : 423, max : 430, current : 425 }
}
,video = document
.querySelector('video')
.addEventListener(
'timeupdate'
,function(e)
{
@Telematica
Telematica / netstat.bat
Last active March 19, 2020 19:12
Handy Windows OS Commands and Routines
::C:\Users\username>netstat -o -n -a | findstr 0.0:3000
:: TCP 0.0.0.0:3000 0.0.0.0:0 LISTENING 3116
netstat -o -n -a | findstr 0.0:3000
@Telematica
Telematica / SVNhandyCommands.sh
Last active June 8, 2016 16:32
SVNhandyCommands.sh
#SVN DIFF
#svn diff --diff-cmd='meld' -r4550 yourfile
#MS Windows example
svn diff --diff-cmd='C:\Program Files (x86)\Meld\Meld.exe' -r4550
#Patch
svn diff -r123:124 path/to/my_project_folder > ~/my_project_changes_123_124.patch
#Summarize Commit files
//Vimeo
(function(){
document.querySelectorAll('video')[0].src = '';
setTimeout(
function() {
document.querySelectorAll('.telecine')[0].appendChild(document.createElement('a'));
document.querySelectorAll('.telecine a')[0].setAttribute('href', document.querySelectorAll('video')[0].src);
document.querySelectorAll('.telecine a')[0].setAttribute('download', 'a.mp4');
document.querySelectorAll('.telecine a')[0].click();