Septiembre 07

Misty groves with
moisty ground
as the rain keeps on falling

On the wedding rang
a woody ring
for the newwed couple

Dimlit trench of
damelet trouch
under watery surface

A wasted day
in western delay
still we put some effort

In controlling bursts
of counter bullets
a message sent for decades

But in flowing range
moves forth the flawless reign
mutating through the eons

Like the blades of grass
that bleed and grasp
with the skytears dropping

Septiembre 03

Echoes of struggle clash through,
shattering the Witness.

Particles of Tradition unbound
slip through the fingers
unable to clasp them,
and the sore shoulders,
damaged from inactivity,
can’t bear the feather-weight burdens.

It’s much which has been lost
in futile contemplation,
but perhaps it’s more
when there’s a reward
for deeds in expectation.

In patient recursive motion
we step forth day by day
to the traps set by them
on days past before yesterday.

But if we Remember
and look to the Past,
we may redeem and push,
through persistent Will-Force
and guiding Intuition.

Febrero 12

Un camino triste ha sido recorrido miles de veces
vivenciadas otra vez todas las huestes agrestes.
En las sombras del silencio han recorrido el palacio
los entes -que se ignoran para no reaccionar cual reacio-.

Marchando y vivenciando todas las estrofas, tonos agrestes,
se van destrozando todas las riquezas del palacio.
Entre el gesto aquel y el otro ése, el hostil reacio
se manifiesta sin lógica aparente, esta y otras veces.

En el verso, ha subido al podio el palacio,
encima de lo que ocurrirá en otras veces:
lo mismo que ocurrió, agrio y reacio,
por las mismas causas, tristes y agrestes.

Y duelen sueño y bolsillo, impulso reacio,
la impulsividad causa estragos nuevas veces,
y refuerza las causas viejas, actos agrestes,
que no trascienden la prisión que es palacio…

Enero 02

 

 

 


float a, b, c = random(0.001,0.09), d = random(0.001,0.09), ss= random(1);
int bb = int(random(200, 1024)), aa = int(random(85, 255)), cc = int(random(100, 255));
float i1 = random(0.001,0.01),i2 = random(0.001,0.01);
int t, t2 = int(random(3,7)), t3;
int coli = int(random(0,360));
void setup() {
size(1024, 1024);
background(random(75), 20);
colorMode(HSB);
t3 = millis()/1000 + t2;
}
void draw() {
//t = millis();
for(int i = 0; i<random(250); i++){
t = t3-millis()/1000;
//stroke(a%360, aa, cc);
stroke(noise(c)*coli%360, aa, cc, random(35));
strokeWeight(1.5+noise(d));
//if (t%500==0) {
if(t<0){
b=random(250, 800);
ss=random(1);
i1 = random(0.001,0.01);
i2= random(0.001,0.01);
coli = int(random(0,360));
println("Ding " + ss);
bb = int(random(200, 1024));
t3=millis()/1000 + t2;
}
if (ss<0.25) {
a = bb*radians(tan(noise(c)))*100;
b = bb*sin(noise(d));
}
else if(ss>0.25 && ss<0.5) {
a = radians(bb*atan(noise(c)))*100;
b = bb*cos(noise(d));
}
else if(ss>0.5 && ss<0.75) {
a = radians(bb*cos(noise(c)))*100;
b = bb*asin(noise(d));
}
else if(ss>0.75 && ss<1) {
a = radians(bb*sin(noise(c)))*100;
b = bb*acos(noise(d));
}
println("a, b " +a+" " + b);
point(a, b);
c+=i1;
d += i2;
}
}
void keyReleased(){
if(key == 's'){
saveFrame("Enero-02b-2020_####.png");
}
}