start new:
tmux
start new with session name:
tmux new -s myname
// 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!"); |
// Generated by Haxe 3.4.4 | |
(function () { "use strict"; | |
var Test = function() { }; | |
Test.main = function() { | |
console.log("Hello world!"); | |
}; | |
Test.main(); | |
})(); |
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); |
I hereby claim:
To claim this, I am signing this object:
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.
/** | |
* Service types | |
* | |
* jsFiddle: http://jsfiddle.net/yeco/5d40poos/ | |
*/ | |
var myApp = angular.module('myApp', []); | |
//service style, probably the simplest one |
#!/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/' |
.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; | |
} |