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
# System-wide .bashrc file for interactive bash(1) shells. | |
# To enable the settings / commands in this file for login shells as well, | |
# this file has to be sourced in /etc/profile. | |
# If not running interactively, don't do anything | |
[ -z "$PS1" ] && return | |
# check the window size after each command and, if necessary, | |
# update the values of LINES and COLUMNS. |
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
[merge] | |
tool = winmerge | |
[mergetool "winmerge"] | |
cmd = \"C:\\Program Files (x86)\\WinMerge\\WinMergeU.exe\" "$PWD/$LOCAL" "$PWD/$REMOTE" "$PWD/$MERGED" | |
trustExitCode = false | |
keepBackup = false | |
[diff] | |
tool = winmerge | |
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
{ | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
"theme": "Material-Theme.sublime-theme", | |
"font_size": 14, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true |
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
export function Log() { | |
let enviroment = { | |
local: "localhost", | |
dev: "dev1acobranzas\.", | |
pre: "pre1acobranzas\." | |
}; | |
var regExpEnvironment = new RegExp([enviroment.local, "|", enviroment.dev, "|", enviroment.pre].join(""), "gi"); | |
if(regExpEnvironment.test(document.domain)){ | |
if(typeof console.log == "function"){ | |
console.log.apply(console,arguments); |
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
export PATH=~/bin:$PATH | |
export PATH="/usr/local/mysql/bin:$PATH" | |
# git bash auto-completion | |
source `brew --prefix git`/etc/bash_completion.d/git-completion.bash | |
# latest versions of git has the prompt stuff on an extra file | |
__git_prompt_file=`brew --prefix git`/etc/bash_completion.d/git-prompt.sh | |
if [ -f "$__git_prompt_file" ] | |
then | |
source $__git_prompt_file |
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
var fullName = 'Sergio Brito'; | |
console.log(fullName); | |
function setName(name: string): void { | |
this.fullName = name; | |
} | |
setName('Chicharito'); |
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
export PATH=~/bin:$PATH | |
export PATH="/usr/local/mysql/bin:$PATH" | |
# git bash auto-completion | |
source `brew --prefix git`/etc/bash_completion.d/git-completion.bash | |
# latest versions of git has the prompt stuff on an extra file | |
__git_prompt_file=`brew --prefix git`/etc/bash_completion.d/git-prompt.sh | |
if [ -f "$__git_prompt_file" ] | |
then | |
source $__git_prompt_file |
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
var getFrame = document.getElementsByName('leftFrame')[0]; | |
var getImage = getFrame.contentWindow.document.querySelectorAll("[name='imagen']")[0]; | |
var getButton = getFrame.contentWindow.document.querySelectorAll(".form-button")[0]; | |
var getInput = getFrame.contentWindow.document.querySelectorAll("input[name='codigo']")[0]; | |
getImage.parentElement.align = 'right'; | |
getInput.parentElement.width = ''; | |
getInput.style.fontSize = 15 + 'px'; | |
getInput.style.width = 95 + '%'; |
OlderNewer