{
"Subsea":{
"Wetmate":{
"5500":[
{
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
[ | |
{ | |
"id": 1, | |
"date": "2018-01-02", | |
"slug": "first-post", | |
"title": { | |
"rendered": "First post!" | |
}, | |
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
LSDJ Cheatsheet: | |
General: | |
- Cambiar entre pantallas: Select + flechas | |
- Reproducir / Parar: Start | |
- Agregar chain/phrase/instrument: A,A | |
- Cambiar entre chains/phrases/instruments: A + flechas | |
- Borrar: B + A | |
- Copy: Select + B. Abre una selección múltiple. Para terminar: B. Para cortar: Select + A. | |
- Copiar fila o columna: Select + B,B |
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
- Instalar OSX Mountain Lion, desde un DVD o USB. | |
- Manejar particiones: | |
* Redimensionar la partición de OSX a 50GiB. | |
* Crear una partición de 100GiB para Windows formateada en exFAT. | |
* Crear una partición de [lo que quede] formateada en HFS+ para después. | |
- Descargar el Boot Manager *refind 0.9.0* e instalarlo. | |
- Instalar Windows 10 en la partición exFAT (se va a formatear a NTFS). Por alguna razón desconocida se va a instalar en fallback mode (usando MBR). | |
- Instalar los drivers de Bootcamp en modo compatibilidad para Windows 7. Issues: No WIFI / No aceleración 3D. | |
- Instalar Fedora 22: | |
* Borrar la partición gigante en HFS+ para crear el resto. |
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
#include <pthread.h> | |
#include <stdio.h> | |
#include <semaphore.h> | |
int valor = 0; | |
pthread_mutex_t mutex; | |
void* decrementarValor(void* parametro) { | |
int i; | |
for (i = 0; i < 1000; i++) { |
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
class TicTacToeCtrl extends BaseCtrl | |
@route "/tictactoe", | |
templateUrl: "templates/tictactoe" | |
@inject() | |
initialize: => | |
window.ctrl = @ | |
@_ = "-" | |
@x = "x" |
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
public void test_iriartStyle() { | |
inyectador.dijeramosQue { | |
un "bean" esUn Poroto.class | |
} | |
Bean ejb = framework.obtener("bean") | |
assertTrue(ejb instanceof Poroto) | |
} | |
public interface Bean { } | |
public class Poroto implements Bean { } |