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
<script type="application/javascript"> | |
window.consentManagerConfig = function (exports) { | |
exports.preferences.onPreferencesSaved(function (prefs) { | |
// could be used to store consent server side, or send it into an API | |
}) | |
return { | |
container: '#consent-manager', | |
writeKey: 'VHWyTMQuPx5KYcdVotFH8PK6PEr8jHen', | |
/* initialPreferences allows for customizing which categories already pre-loaded */ |
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
function correo () { | |
curl -s -D "/dev/stderr" https://api.correoargentino.com.ar/backendappcorreo/api/api/shipping-tracking-int-nac\?id_shipping\=$1 | jq | |
} | |
# Use: correo RV118... |
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
[ | |
{ | |
"id": "A4759", | |
"image": "https://votaciones.hcdn.gob.ar/public/diputados/images/A4759.jpg", | |
"name": "ABDALA DE MATARAZZO, Norma Amanda", | |
"block": "Frente Cívico por Santiago", | |
"province": "Santiago del Estero", | |
"vote": "NEGATIVO" | |
}, |
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
$random: random(10000000) | |
@font-face | |
font-family: 'murally' | |
src: url("murally-webfont.eot?v=#{$random}") |
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
Page | |
<% content_for :assets do %> | |
<%= stylesheet_link_tag 'index', 'custom' %> | |
<% end %> | |
Layout | |
<head> | |
<title>Example</title> |
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
/*! | |
Author: <%= data.config.source.author.name %> | |
Author URI: <%= data.config.source.author.uri %> | |
*/ |
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
1) Install RVM | |
\curl -sSL https://get.rvm.io | bash -s stable | |
2) Get some rubies :) | |
rvm install 1.9.3 --with-gcc=clang | |
3) Set ruby version as default |
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
.DS_Store | |
*.swp | |
*.swo | |
Gemfile.lock |
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
# Filename-based cache busting | |
# taken from https://github.com/h5bp/html5-boilerplate/ | |
# This rewrites file names of the form `name.123456.js` to `name.js` | |
# so that the browser doesn't use the cached version when you have | |
# updated (but not manually renamed) the file. | |
<IfModule mod_rewrite.c> | |
Options +FollowSymlinks | |
RewriteEngine On |
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
# Quick jquery plugin to display recent tweets | |
# (C) 2011 Martin Wawrusch (@martin_sunset , http://martinatsunset.com, https://github.com/mwawrusch) | |
# | |
# The juicy parts are from: | |
# | |
# http://www.simonwhatley.co.uk/ (Simon Whatley) | |
# https://github.com/jimeh (Jim Myhrberg) | |
# | |
# I just assembled them in coffeescript. | |
# |