st=>start: Start:>http://www.google.com[blank]
e=>end:>http://www.google.com
op1=>operation: My Operation
sub1=>subroutine: My Subroutine
cond=>condition: Yes
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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=/Users/francho-frogtek/.oh-my-zsh | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
ZSH_THEME="spaceship" |
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
/* | |
highlight v5 | |
Highlights arbitrary terms. | |
<http://johannburkard.de/blog/programming/javascript/highlight-javascript-text-higlighting-jquery-plugin.html> | |
MIT license. |
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
<!DOCTYPE html> | |
<html> | |
<head lang="en"> | |
<meta charset="UTF-8"> | |
<title></title> | |
<style> | |
canvas { | |
border: 1px solid darkgray; | |
} | |
.box { |
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
<!DOCTYPE html> | |
<html> | |
<head lang="en"> | |
<meta charset="UTF-8"> | |
<title></title> | |
</head> | |
<body> | |
<article id="mytext" contenteditable="true"> | |
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla ac placerat purus, eu lacinia nisl. Morbi ac |
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
'use strict'; | |
angular.module('cdrApp') | |
.directive('cdrCountdown', function () { | |
return { | |
// template: '<div class="cajaUltimaHora"><div class="ultimaHoraIzda"><div class="ultimaHoraTira"></div><p class="claimUltimaHora">¡Tu reserva al límite!</p><p id="digitosUltimaHora" class="digitosUltimaHora"></p></div><div class="ultimaHoraDcha"></div></div>', | |
restrict: 'E', | |
replace: true, | |
scope: { | |
'time': '=time' |
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
#bin/sh | |
sudo tar vjcf /var/backups/jenkins.tgz /var/lib/jenkins/ \ | |
--exclude '/var/lib/jenkins/jobs/*/workspace/*' \ | |
--exclude '/var/lib/jenkins/jobs/*/builds/*' \ | |
--exclude '/var/lib/jenkins/jobs/*/javadoc/*' \ | |
--exclude '/var/lib/jenkins/jobs/*/bundle/*' \ | |
--exclude '/var/lib/jenkins/tools/android-sdk/*' \ | |
--exclude '/var/lib/jenkins/jobs/webapp-trunk/builds/*' \ | |
--exclude '/var/lib/jenkins/.android/avd/*' \ |