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
| <script async="" src="https://www.google-analytics.com/analytics.js"></script> | |
| <script> | |
| if (typeof gaSent === 'undefined') { | |
| (function (i, s, o, g, r, a, m) { | |
| i['GoogleAnalyticsObject'] = r; | |
| i[r] = i[r] || function () { | |
| (i[r].q = i[r].q || []).push(arguments) | |
| }, i[r].l = 1 * new Date(); | |
| a = s.createElement(o), | |
| m = s.getElementsByTagName(o)[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
| #!/bin/sh | |
| open focus://unfocus | |
| pomodoros=0 | |
| while true | |
| do | |
| pomodoros=$((pomodoros + 1)) | |
| pomodoroMsg="Pomodoro #" | |
| pomodoroSubtitle=$pomodoroMsg$pomodoros |
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/bash | |
| function die() { | |
| echo "${1}" | |
| exit 1 | |
| } | |
| which printf > /dev/null 2>&1 || die "Shell integration requires the printf binary to be in your path." | |
| which sed > /dev/null 2>&1 || die "Shell integration requires the sed binary to be in your path." |
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant.configure(2) do |config| | |
| config.vm.box = "hashicorp/precise64" | |
| config.vm.network "forwarded_port", guest: 8000, host: 8000 | |
| config.vm.network "forwarded_port", guest: 80, host: 8080 | |
| config.vm.synced_folder ".", "/vagrant_data" | |
| config.vm.provider "virtualbox" do |v| | |
| v.memory = 1024 |
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant.configure(2) do |config| | |
| config.vm.box = "hashicorp/precise64" | |
| config.vm.network "forwarded_port", guest: 8000, host: 8000 | |
| config.vm.synced_folder ".", "/vagrant_data" | |
| config.vm.provider "virtualbox" do |v| | |
| v.memory = 1024 | |
| end |
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
| """ | |
| Ejemplo diccionario | |
| """ | |
| product = { | |
| "type": "videogame", | |
| "title": "The Witness", | |
| "price": 36.99, | |
| "description": "Best game ever", | |
| "platforms": ["PC", "PS4"], |