Skip to content

Instantly share code, notes, and snippets.

View yeco's full-sized avatar

Jasson Cascante yeco

View GitHub Profile
@yeco
yeco / HelloDartTest.dart
Created October 1, 2020 22:50 — forked from ghchinoy/HelloDartTest.dart
Dart compiled to JavaScript & Optimized JavaScript (--optimize)
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// Simple test program invoked with an option to eagerly
// compile all code that is loaded in the isolate.
// VMOptions=--compile_all
class HelloDartTest {
static testMain() {
print("Hello, Darter!");
@yeco
yeco / hello.js
Created July 2, 2019 19:32
haxe compiled
// Generated by Haxe 3.4.4
(function () { "use strict";
var Test = function() { };
Test.main = function() {
console.log("Hello world!");
};
Test.main();
})();

tmux cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
var combine = function(a, min) {
var fn = function(n, src, got, all) {
if (n == 0) {
if (got.length > 0) {
all[all.length] = got;
}
return;
}
for (var j = 0; j < src.length; j++) {
fn(n - 1, src.slice(j + 1), got.concat([src[j]]), all);

Keybase proof

I hereby claim:

  • I am yeco on github.
  • I am yeco (https://keybase.io/yeco) on keybase.
  • I have a public key ASDEsHmt1RpANKvCCLTCJMiqAjMlNFs3Rv7cPU868qwpHwo

To claim this, I am signing this object:

@yeco
yeco / instrucciones.md
Last active August 29, 2015 14:08
Instrucciones para darle una pastilla a un gato

1º. Coger al gato y acunarle con el brazo izquierdo como si estuviese sosteniendo a un bebé. Colocar el dedo índice y el pulgar de la mano izquierda para aplicar una suave presión sobre las mejillas del minino, mientras sostiene la pastilla con la derecha, Cuando el gato abra la boca, arrojar la pastilla dentro. Procurar cerrarle la boca a los efectos de que el gato la trague.

2º. Recoger la píldora del suelo y sacar el gato de detrás del sofá. Acunar al gato y repetir el proceso,

3º. Ir a buscar al gato al baño y, de paso, tirar la pastilla baboseada a la basura,

4º. Coger una nueva pastilla de la caja, acunar al gato con el brazo izquierdo, manteniendo las patas traseras firmemente sujetas con la mano izquierda. Forzar la apertura de mandíbulas y empujar la píldora dentro de la boca con el dedo medio. Mantener la boca del gato cerrada y contar hasta diez.

5º. Sacar la pastilla de la pecera y al gato de arriba del armario. Llamar a un amigo para que le ayude.

@yeco
yeco / services.js
Created October 16, 2014 18:49
Angular service types reference
/**
* Service types
*
* jsFiddle: http://jsfiddle.net/yeco/5d40poos/
*/
var myApp = angular.module('myApp', []);
//service style, probably the simplest one
@yeco
yeco / deploy.sh
Last active August 29, 2015 14:05
Build scripts for cordova app
#!/bin/bash
TARGET=$1
ANDROID_BUILD_PATH='platforms/android/ant-build/'
IOS_BUILD_PATH='platforms/ios/build/emulator/'
ANDROID_RELEASE_PATH='bin/android/'
IOS_RELEASE_PATH='bin/ios/'
@yeco
yeco / empirejs-links.md
Last active August 29, 2015 14:01
EmpireJS Talks Links
@yeco
yeco / caret-down.css
Last active August 29, 2015 13:57
Caret down for Bootstrap 3
.caret-down {
display: inline-block;
width: 0;
height: 0;
margin-left: 2px;
vertical-align: middle;
border-bottom: 4px solid;
border-right: 4px solid transparent;
border-left: 4px solid transparent;
}