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
#include <stdio.h> | |
int main() { | |
char c; | |
printf("\n¿Luchus, a que hora llega el almuerzo?\n"); | |
while ((c = getchar()) != EOF) { | |
if ( c == '\n' ) { | |
printf("¿Luchus, A que hora llega el almuerzo?\n"); | |
} |
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
include <stdio.h> | |
int main() { | |
char c; | |
printf("\n¿Luchus, a que hora llega el almuerzo?\n"); | |
while ((c = getchar()) != EOF) { | |
if ( c == '\n' ) { | |
printf("¿Luchus, A que hora llega el almuerzo?\n"); | |
} |
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
syntax on | |
set nocompatible " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" alternatively, pass a path where Vundle should install plugins | |
"call vundle#begin('~/some/path/here') | |
" let Vundle manage Vundle, required | |
Plugin 'gmarik/Vundle.vim' |
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
syntax on | |
set nocompatible " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" alternatively, pass a path where Vundle should install plugins | |
"call vundle#begin('~/some/path/here') | |
" let Vundle manage Vundle, required | |
Plugin 'gmarik/Vundle.vim' |
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
class String | |
def to_flaite | |
self.split('').map { |s| (rand(10) %3 == 0) ? s.upcase : s }.join | |
end | |
end | |
"Que pasa compare como estamos".to_flaite | |
=> "QuE PASa compARe CoMo EStAmOs" |
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 express = require('express'); | |
var app = express(); | |
one = [ "La cueca pá los chilenos", | |
"Si no le gustan las cuecas", | |
"Hoy es 18 de Septiembre", | |
"Yo también voy a la ramá", | |
"Tu creis que no se ná", | |
"Yo las bailo donde sea", | |
"No bailo tanto pero tengo otra gracia", |
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 cargarPlata() { | |
$div = $('#saldoContablebl'); | |
saldo = parseInt($div.html().replace('.', '')) | |
step = 1; | |
setInterval(function(){ |
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
{ | |
id: 4, | |
name: "Entre pascua y año nuevo con tolerancia" | |
type: "or" // compuesta | |
childs: [ | |
{ | |
id: 1, | |
name: "Tolerancia antes de navidad" | |
fromDate: "navidad" | |
timeUnit: -1 dias |
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
{ | |
id: 4, | |
name: "Entre pascua y año nuevo con tolerancia" | |
type: "or" // compuesta | |
childs: [ | |
{ | |
id: 1, | |
name: "Tolerancia antes de navidad" | |
fromDate: "navidad" | |
timeUnit: -1 dias |
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
class Gustavo { | |
fun isPerales() : Boolean { | |
return true | |
} | |
} |
OlderNewer