It all sounds great Spek! Can't wait to see how you do with all of them!Had to supercrop all four of my oldest White Widows, they were way too tall, even though they should be done stretch soon... essentially, I'm just testing. I don't really care about those ones anyways.
Even though I'm just early in the process, my girl is liking the look of things and sees massive potential. She knows I almost have the cycle ready, so she's down with me upgrading... ordering a 4x4x6.5' tent, a 1000w setup with air-cooled hood, an 8" inline with carbon filter, and whatever necessities I need to automate my hempy setup so there's no hand feeding.
Both tents will stay in 12/12 perpetually. I'll use the new tent to run the tall strain through with the 1Kw, and all of my short strains can be piled into the existing 2x4 tent with my 400w just fine.
12/12 from clone, it looks like the Widow clones will finish stretch to 24-36" somewhere, but I won't find out as I just severely supercropped the four tallest I have now. I should be able to fit nine in the new tent very comfortably, as I've found when I go direct to flower from clone, they grow stretchy and not bushy.
Things don't look much different from the other day, but I might up some pics later anyhow. I took my two last widow clones in my cloner and potted them. Both will be mothers. So now I have four mothers:
- 1 x Jack Herer (and I'm LOVING how this plant grows when put straight into flower... it's already budding after 13 days!)
- 1 x Chem Dawg (this one does well straight to flower too)
- 2 x White Widow (this was my last femmed seed. Now I have two mothers, and currently 8 plants in the flower tent)
-spek
My widow is a really weird strain, but it grows like a weed. The product is exceptionally comfortable. Definitely up some pics of yoursHey I was just browsing and came across you.I have two white widowsthey are six and a half weeks in flower almost time.when I first put the widows in I put a bag seed,from kush,from a friend.that was put in my tent along with the widows.she's been on 12/12 from seed...and.......whoa!it is huge..it vegged itself for amonth then the flowers came.she's huge.no stress.she looks amazing!I will always put some from seed to 12/12.ill post some pics.the camera I have sucks.happy growing.
#!/usr/bin/perl
use warnings;
use strict;
use 5.12.0;
use DateTime;
use Getopt::Long;
# get command line options
my $date;
my $harvests = 3;
GetOptions(
'harvests|h=i' => \$harvests,
'start|s=s' => \$date, # yyyy/mm/dd
);
my $start;
if ( $date ){
my ( $start_year, $start_month, $start_day ) = split( '/', $date );
$start = DateTime->new(
year => $start_year,
month => $start_month,
day => $start_day,
);
}
else {
$start = DateTime->now();
}
# get the grow off the ground
# starting with the initial planting schedule
my $progress = $start->clone();
say "\nspek's 3 week harvest perpetual grow schedule plotter\n";
# 1st batch
say $progress->ymd . ": Cut clones";
$progress->add( weeks => 2, days => 2 );
say $progress->ymd . ": Put clones into flower";
# 2nd & 3rd batch
for ( 0..1 ){
$progress->add( days => 5 );
say $progress->ymd . ": Cut clones";
$progress->add( days => 2, weeks => 2 );
say $progress->ymd . ": Put clones into flower";
}
# main loop including harvest
while ( 1 ) {
# more clones if necessary
$progress->add( days => 5 );
if ( $harvests > 3 ) {
say $progress->ymd . ": Cut clones";
}
$progress->add( days => 2 );
# harvest!
$progress->add( weeks => 2 );
say $progress->ymd . ": HARVEST!!";
# plant clones if necessary
if ( $harvests > 3 ){
say $progress->ymd . ": Put clones into flower";
}
$harvests--;
last if $harvests == 0;
}
say "\n Congratulations, your grow schedule is complete!\n";
# LICENSE: This software is free to use under the same license as Perl itself
# Copyright: © spek, 2013-11-01
# Thanks to: The great folks over at rollitup.org
#!/usr/bin/perl
use warnings;
use strict;
use 5.12.0;
use DateTime;
use Getopt::Long;
# get command line options
my $date;
my $harvests = 3;
my $root = 16;
GetOptions(
'harvests|h=i' => \$harvests,
'start|s=s' => \$date, # yyyy/mm/dd
'root|r=i' => \$root,
);
my $start;
# die of root propagation is out of range
if ( $root < 14 || $root > 21 ) {
die "Clone propagation must be between 14 and 21 days\n";
}
if ( $date ){
my ( $start_year, $start_month, $start_day ) = split( '/', $date );
$start = DateTime->new(
year => $start_year,
month => $start_month,
day => $start_day,
);
}
else {
$start = DateTime->now();
}
# configure the rooting timeframes
my $days_pre_clone = 21 - $root;
my $days_aft_clone = $root - 14;
# get the grow off the ground
# starting with the initial planting schedule
my $progress = $start->clone();
say "\nspek's 3 week harvest perpetual grow schedule plotter\n";
# 1st batch
say $progress->ymd . ": Cut clones";
$progress->add( weeks => 2, days => $days_aft_clone );
say $progress->ymd . ": Put clones into flower";
# 2nd & 3rd batch
for ( 0..1 ){
$progress->add( days => $days_pre_clone );
say $progress->ymd . ": Cut clones";
$progress->add( days => $days_aft_clone, weeks => 2 );
say $progress->ymd . ": Put clones into flower";
}
# main loop including harvest
while ( 1 ) {
# more clones if necessary
$progress->add( days => $days_pre_clone );
if ( $harvests > 3 ) {
say $progress->ymd . ": Cut clones";
}
$progress->add( days => $days_aft_clone );
# harvest!
$progress->add( weeks => 2 );
say $progress->ymd . ": HARVEST!!";
# plant clones if necessary
if ( $harvests > 3 ){
say $progress->ymd . ": Put clones into flower";
}
$harvests--;
last if $harvests == 0;
}
say "\n Congratulations, your grow schedule is complete!\n";
# LICENSE: This software is free to use under the same license as Perl itself
# Copyright: © spek, 2013-11-01
# Thanks to: The great folks over at rollitup.org