3279 (one more tuesday)

above

above


—-
Wake up

Wake up young man, it’s time to wake up
Your love affair has got to go, for ten long years
For ten long years, the leaves to rake up
Slow suicide’s no way to go, oh
Blue clouded gray, you’re not a crack up
Dizzy and weakened by the haze
Movin’ onward
So an infection not a phase, yeah-oh
The cracks and lines, from where you gave up
They make an easy man to read, oh-oh oh-oh
For all the times you let them bleed you
For a little peace from God you plead, and beg
For a little peace from God you plead
Oh-oh-oh-oh, yeah-oh
Oh-oh-oh-oh, yeah-oh
Oh-oh-oh-oh, yeah-oh
Wake up young man
Wake up, wake up, wake up
Wake up, wake up, wake up
Oh-yeah
Wake up young man, it’s time to wake up
Your love affair has got to go-yeah, for ten long years
For ten long years, the leaves the rake up
Slow suicide’s no way to go-oh, oh-oh
Slow suicide’s no way to go
Wake up, wake up, wake up
Wake up, wake up, wake up
—-
from mad season above 1995 columbia

3275 (another tuesday)

some of the stuff I dealt with is hard to handle. and it’ s not the weed I’ m talking about. emotions come and go. anger is one of the deepest. no, I’ m not on a revenge-path, but everything could as well have led to one. yes, years of loneliness and isolation. human contacts nearly everyday, but not talking real things. bernie is my figure, and as a rat I need to say, go for whatever you want and give your best. the jesus-days seem long ago.
—-
flash
—-
as open-source-disciple I just mention xml-experiments. the life as known seems to 1. lead to destruction 2. grow *very* slowly. motorpsycho-like we’ ll touch the spot. scientology-bullshit, as it may occur, isn’ t it ? on this evening before a tuesday I mention hamburg and volmarstein.
—-
flash
—-
no I got no car and I ain’ t a fool, but beware of the dog. it’ s nature. some suck thumbs.

3262 (line, diamond)

play with lines/diamond in java (external input class)

print diamond on shell

print diamond on shell



class j1exam01
{
    public static void printLine (int highest, int length)
    {
    int digit = 0;
    int help = 0;
    int spaces = (length - (2 * highest + 1)) / 2;
    //print leading spaces
    if (spaces > 0)
        {
        for (int i = 0; i < spaces; i++)
            {
            System.out.print (" ");
            }  
        }
    //print digits
    switch (highest)
        {
    //case highest 0
        case 0:
            {
            System.out.print ("0");
            break;
            }
    //case highest 1
        case 1:
            {
            System.out.print ("010");
            break;
            }  
    //case other
        default:
            {
            for (int i = 0; i  0)
    {
    for (int i = 0; i < spaces; i++)
        {
        System.out.print (" ");
        }
    }
    //print newline
    System.out.println();
    }
    public static void printDiamond (int center)
    {
    int digit = 0;
    int help = 0;
    int length = (2 * center) + 1;
    //print empty line
    System.out.println();
    //diamond
    switch (center)
        {
        case 0:
            {
            printLine (0, 1);
            break;
            }
        case 1:
            {
            printLine (0, 3);
            printLine (1, 3);
            printLine (0, 3);
            break;
            }
        default:
            {
            for (int i = 0; i < ((2 * center) + 1); i++)
                {
                if (i  center) { digit = center - help; help++; }
                printLine (digit, length);         
                }
            break;
            }
        }
    //print newline {([done in printLine()])}
    //print empty line
    System.out.println();
    }
    public static void main (String[] args)
    {
    int q = 0;
    int h, l, c;
    h = 0;
    l = 0;
    c = 0;
    //main menu
    do
        {
        q = eingabe.readInt("(1)line, (2)diamond or (3)end?");
        if (q == 1)
            {
            h = eingabe.readInt("highest:");
            l = eingabe.readInt("length:");
            printLine (h, l);
            }
        else if (q == 2)
            {
            c = eingabe.readInt("center:");
            printDiamond (c);
            }
        } while (!(q == 3));
    System.out.println ("this is the end");
    }
}

3259 (tuesday)

on this early tuesday I’ ll write a short quick-asso. the user-experience was optimized to match the desired workflow. manual work in a garden in poedinghausen was successful. the experiments are enduring. there’ s doubtlessly a long road to go until we can switch to production, but the biz-site and this blog are a base we can rely on. the userinterface on wordpress.com was updated to the actual version. this is meant to be a personal knowledge base which *not* accidentally is public.

enjoy!

3240 (ETH-units)

Bezeichnung Abkürzung Wert
TerraEther Tether 1.000.000.000.000 Ether
GigaEther Gether 1.000.000.000 Ether
MegaEther Meth 1.000.000 Ether
KiloEther Kether 1.000 Ether
Ether ETH 1 Ether
Finney Finney 0.001 Ether
Szabo Szabo 0.000001 Ether
GigaWei Gwei 0.000000001 Ether
MegaWei Mwei 0.000000000001 Ether
KiloWei Kwei 0.000000000000001 Ether
Wei Wei 0.000000000000000001 Ether