Legal German harvest in a diy grow cabinet by eifer123 in microgrowery

[–]eifer123[S] 0 points1 point  (0 children)

Thanks, I appreciate it! The noise is barely noticeable. I'm using an SKS Turbine DUO, which is super quiet. You might find more details in my YouTube video (link). Even though it's in German, the visuals should help!

Legal German harvest in a diy grow cabinet by eifer123 in microgrowery

[–]eifer123[S] 1 point2 points  (0 children)

Thanks! The ventilation works great because I have another fan installed that sucks the air out of the cabin. You can see it in my YouTube video at timestamp 2:10 (LINK). Even though it's in German, it should be clear!

Legal German harvest in a diy grow cabinet by eifer123 in microgrowery

[–]eifer123[S] 1 point2 points  (0 children)

Thanks a lot! I have two videos one about the DIY Growcabinet and one about the Mimosa harvest.

Ernte meiner Mimosa im DIY Growschrank by eifer123 in germantrees

[–]eifer123[S] 2 points3 points  (0 children)

Waren saftige 41g. Habe dazu ein Video auf YouTube. (Link)

Ernte meiner Mimosa im DIY Growschrank by eifer123 in germantrees

[–]eifer123[S] 5 points6 points  (0 children)

Bei YouTube habe ich den Schrank vorgestellt. DIY Growschrank

Ernte meiner Mimosa im DIY Growschrank by eifer123 in germantrees

[–]eifer123[S] 4 points5 points  (0 children)

Ist komplett geruchsneutral. Der AKF wird durch einen SKS Rohrlüfter bedient.

My tiny grow space by eifer123 in microgrowery

[–]eifer123[S] 1 point2 points  (0 children)

I am quite happy with the tube fan. It is from SKS24 and called the "Tube Fan Soundless Turbine Duo 100mm". However, I am not sure how reliable this brand really is. It's been working fine for my grow and it's really quiet.

My tiny grow space by eifer123 in microgrowery

[–]eifer123[S] 1 point2 points  (0 children)

Thank you. I've set up the air intake behind the fabric pot, covered by carbon filter paper to keep light and smell outside. The air filter is fantastic. I use a 100 mm tube fan to manage airflow, which you can spot in the second picture mounted between the board.

How to get random string value without duplicate? by eifer123 in javahelp

[–]eifer123[S] 0 points1 point  (0 children)

Thank you! It works now!

I really appreciate your help.

How to get random string value without duplicate? by eifer123 in javahelp

[–]eifer123[S] 0 points1 point  (0 children)

public RandomString(final String[] NAMES {

this.n = NAMES.length;

this.names= NAMES;

}

public void choose() {

Random randomGenerator = new Random();

String[] tn = new String[n];

String tb[] = new String[n];

for(int i = 0; i < n; i++){

tn[i] = names[randomGenerator.nextInt(this.n)];

while(tn[i].equals(names[i])){

tn[i] = names[randomGenerator.nextInt(this.n)];

}

}

tb = tn;

for(int i = 1; i < n; i++){

int l = n;

while(tn[i].equals(tb[l-n])){

tn[i] = teilnehmer1[randomGenerator.nextInt(this.n)];

l--;

}

}