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
| { | |
| "folders": | |
| [ | |
| { | |
| "follow_symlinks": true, | |
| "path": "/", | |
| "folder_exclude_patterns": [ | |
| ".sass-cache", | |
| ".bundles", | |
| "node_modules", |
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
| # Declare the file which contains the index of its traslations | |
| DirectoryIndex index.html.var | |
| AddHandler type-map .var | |
| # Redirect to specific language by explicit URL request | |
| # /en -> index.html | |
| # /it -> index_it.html | |
| # /es -> index_es.html | |
| <IfModule mod_rewrite.c> |
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
| RetroArch [INFO] :: === Build =======================================RetroArch [INFO] :: [CPUID]: Features: | |
| RetroArch [INFO] :: Version: 1.3.0 | |
| RetroArch [INFO] :: Git: 97e0c86 | |
| RetroArch [INFO] :: ================================================= | |
| RetroArch [INFO] :: [CPUID]: Features: | |
| RetroArch [INFO] :: Looking for config in: "/storage/.config/retroarch/retroarch.cfg". | |
| RetroArch [INFO] :: Config: loading config from: /storage/.config/retroarch/retroarch.cfg. | |
| RetroArch [INFO] :: Threaded rarch_task started | |
| RetroArch [INFO] :: Loading dynamic libretro core from: "/tmp/cores/genesis_plus_gx_libretro.so" | |
| RetroArch [INFO] :: Environ SET_VARIABLES. |
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/sh | |
| # If superuser warn and prompt to continue | |
| prompt_exec_as_root () { | |
| if [[ `whoami` = 'root' -o $(id -u) == 0 -a -z "$SUDO_COMMAND" ]]; then | |
| /bin/echo "Warning: you're running the script as superuser."; | |
| /bin/echo "This may cause directory permission issues and you'll probably be unable to access your files anymore. \nIn malmost all the cases you're adviced to run as regular user." | |
| /bin/echo "Do you still want to continue? [Yes/No/Abort] (default: No) " | |
| read REPLY; | |
| else if [[ ! $REPLY -o $REPLY =~ ^[Nn][Oo]?$ -o $REPLY =~ ^[Aa]([Bb][Oo][Rr][Tt])?$ ]]; then |
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
| <style type="text/css"> | |
| .bentonsansbook { | |
| font-family: "Benton Sans Book", Verdana, "Helvetica Neue", Helvetica, "Trebuchet MS", Arial; | |
| font-style: normal; | |
| font-weight: normal; | |
| color: #0e0e0e; | |
| } | |
| .bentonsanslight { | |
| font-family: "Benton Sans Light", Verdana, "Helvetica Neue", Helvetica, "Trebuchet MS", Arial; |
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
| <section class="shop-checkout--cart section-without-vertical-margin layout-grid is-active"> | |
| <div class="row"> | |
| <div class="col small-12 medium-8 medium-shift-2 large-6 large-shift-3"> | |
| <header class="shop-checkout--cart--header"> | |
| <h2>Riepilogo ordini</h2> | |
| </header> | |
| <article id="cart-item-riso" class="shop-checkout--cart-item"> | |
| <div class="shop-checkout--cart-item--info riepilogo"> | |
| <p class="shop-checkout--cart-item--name bentonsanslight__big uppercase"> | |
| <span class="bentonsansbold">5 x</span> <a href="/shop-categoria.html" title="Riso" target="_self" class="shop-checkout--cart-item--link">Riso</a> |
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
| alias nom='npm cache clean && rm -rf node_modules && mkdir node_modules && tmutil addexclusion $(pwd)/node_modules && touch node_modules/.metadata_never_index && npm install' | |
| alias bom='bower cache clean && rm -rf bower_components && mkdir bower_components && tmutil addexclusion $(pwd)/bower_components && touch bower_components/.metadata_never_index && bower install' |
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
| $smallphone: 480px; | |
| $phone: 640px; | |
| $tablet: 768px; | |
| $desktop: 1024px; | |
| $wide: 1440px; | |
| // Grid breakpoints map | |
| $breakpoints: (small: null, medium: "screen and (min-width: 768px)", large: "screen and (min-width: 1440px)"); | |
| // Non-grid breakpoints map |
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
| (function(factory) { | |
| if (typeof define === 'function' && define.amd) { | |
| // AMD. Register as an anonymous module. | |
| define(['jquery', 'moment', 'moment-timezone'], factory); | |
| } else if (typeof module === 'object' && module.exports) { | |
| // Node/CommonJS | |
| module.exports = function(root, jQuery, moment) { | |
| if (jQuery === undefined) { | |
| // require('jQuery') returns a factory that requires window to | |
| // build a jQuery instance, we normalize how we use modules |
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
| /** | |
| * jQuery.getTransitionDuration | |
| * A jQuery plugin to get transition-duration in milliseconds | |
| * Works with multiple values and supports all browser vendor prefixes | |
| * | |
| * Usage with single transition-duration values $(div).getTsDuration() | |
| * Usage with multiple transition-duration values $(div).getTsDuration("opacity") (otherwise would return the first) | |
| * | |
| * Based on a gist by Chris Montes https://gist.github.com/mandelbro/4067903 | |
| */ |