Back to...

dissabte 31 de desembre de 2011

Crisis, solución


"Existen dos clases de oportunidades: una que nos ofrece la suerte, otra que nos creamos nosotros mismos. En los tiempos de grandes dificultades, no debemos dejar de crear nuestra propia oportunidad ."
Takamori Saigo(1828-1877)

dimecres 21 de setembre de 2011

Suddenly


"He walked out into the gray light and stood and he saw for a brief moment the absolute truth of the world. The cold relentless circling of an intestate earth. Darkness implacable. The blind dogs of the sun in their running. The crushing black vacuum of the universe. And somewhere two hunted animals trembling like ground-foxes in their cover. Borrowed time and borrowed world and borrowed eyes with which to sorrow it."
The Road , Cormac McCarthy

Things often happen all of a sudden. 

He was walking down the street. Whispers. Followed by some kind of sound.

A strange vibration. People screaming. Lightning.

Silence.

There's no turning back. He realizes.

Wu Ying Ren 死

dilluns 25 de juliol de 2011

Tomen nota


"Si se quiere conservar una ciudad que está acostumbrada a vivir libre, más vale gobernarla con el apoyo de sus propios habitantes, y no de otra manera."
 Il Principe, Niccolò Machiavelli (1469-1527)

dijous 2 de juny de 2011

Life is


"Life's but a walking shadow, a poor player, that struts and frets his hour upon the stage. And then is heard no more. It is a tale told by an idiot, full of sound and fury signifying nothing."
 Macbeth

dimarts 26 d’abril de 2011

El contacto

Aquélla noche, mi padre me llevó a una montaña que hay en las afueras de la ciudad. Bueno, a la montaña que HABÍA en las afueras. Recuerdo un cielo precioso y la presencia de todos los vecinos, y de mucha más gente.  Nos acompañaban cientos de aparatos. Estábamos escuchando la radio en directo.
Recuerdo mirar hacia arriba y ver la cara de mi padre en un gesto extraño. A medio camino entre el miedo y la ilusión. Mi padre siempre acertaba.
El locutor anunció un mensaje:
-"Existen. Están aquí. Salgan a recibirlos. Éste es un momento histórico. Y van a comunicarse con nosotros..."
Miré al cielo. Estrellas, nebulosas, galaxias. De repente, un miedo irracional se apoderó de mi sólo con sopesar la imagen del Universo sobre mí. ¿Qué demonios iba a ocurrir? ¿Por qué estamos aquí? Quería correr, huir. Ir a casa. Dormir.
La radio llamó mi atención nuevamente.
-"...estamos en condiciones de oirlos. Bienvenidos, amigos, a la Tierra."
Un silencio gélido respondió al locutor, mi estómago participó de mi miedo. Finalmente una voz, extraña, muy extraña, con gran parsimonia y ausencia de ritmo habló.
-"Saludos..."
Gutural, sin más. Se oía una especie de...jadeo. Helaba la sangre. Transmitía una enorme tristeza.
-"No...no...no podemos evitar..."
No pudimos evitar echarnos a llorar. Jamás olvidaré la imagen de mi padre llorando desconsoladamente. Ni el sonido del llanto, común. La voz del locutor se rompió, también lloraba. Nadie sabía por qué.
-"Es...el fin..." - unas imágenes aparecieron en nuestras mentes - "Enfermos...Os mostramos...el...futuro..."

Wu Ying Ren 死

dimecres 13 d’abril de 2011

Worker v0.1-alpha

package test.nextgen.midclass;

import java.util.Date;

public class Worker extends MidClassPerson {
  
    private static Date today = new Date();
    private boolean isWeekend = false;
    private static boolean sleeping = false;
    private static int sleepingTime = 0;
    private int happiness = 0;
    private String workplace = System.assignWorkPlace();
    private String studies = System.assingStudies();
    private Money income = System.assignAverageIncome();
    private Money outcome = System.hellMode();
    private Brain brain = System.brainWash();

    public static void main(String[] args) {
      
        int day = today.getDay();
      
        while (!isWeekend) {
            isWeekend = false;
            if(day>5 && day<8) {
                wakeUp();
                work();
                stopThinking();
                work();
            }
            else {
                isWeekend = true;
                riseHappiness(new String("notmuch"), new String("rememberwhoyouare"));
                if(day==7){
                    decreaseHappiness(new String ("mondayiscoming"));
                    study(new String ("fornothing"), new String("dontthink"));
                    stopThinking();
                }
                brainFuck().drugs();
                riseHappiness(new String("falsehappiness"), new String("dreamabout"));
            }
            sleep(5);
            day = today.getDay();
        }
      
    }

    @Override
    private static void sleep(int time) {
        if(!sleeping) {
            sleeping = true;
            sleepingTime = time;
            disconnect();
            int hour = today.getHours();
            while(sleepingTime>0){
                if(hour==day.getHours()+1) {
                    sleepingTime--;
                }
            }
        }
    }

    @Override
    private static void wakeUp() {
        if(sleeping) {
            sleeping=false;
        }
    }
  
    public Money startCrisis(Date anytime) {
        happiness = 0;
        youSpentTooMuch(this);
        setWorkPlace(null);
        System.collectMoney(this);
        if(income==0) {
            System.collectHome(this);
            System.forbidLiving(this);
        }
        while (!System.isCrisisEnding()) {
            System.continueCollecting(this);
            try {
                findJob(this.isCorrupt());
            } catch (NoExperienceException e) {
                System.out.println("No experince, no job. No job, no experience.");
            } catch (ElderException e) {
                System.out.println("You are too old.");
            } catch (YoungerException e) {
                System.out.println("You are too young.");
            } catch (StartingLittleBusinessException e){
                System.out.println("You don't have money.");
            } catch (ArmyException e) {
                System.out.println("Welcome!");
            }
        }
    }

}


Wu Ying Ren 死

dilluns 11 d’abril de 2011

El otro éxito


"A veces te oyen menos, vendes menos, te ven menos, te visitan menos... Y tantas y tantas veces el fracaso es, a veces, el traje que te ponen para poder seguir teniendo el auténtico éxito. El otro éxito, el de la satisfacción. Porque fracasar, en ocasiones, es una virtud que significa haber elegido un camino propio, diferente y único."
 Bruno Cardeñosa, La rosa de los vientos
(arranque del programa del 10/04/2011)