The band is just fantastic that is really what I think. Oh by the way, which ones pink?
LOL, Syd Barrettâs favorite Carolina bluesmen Pink Anderson and Floyd Council
Wow Iâm very intrigued @CADMAN by the cross and Iâm just checking to see if you need any help testing Iâm just finishing up my new tent Happy Growing The Doc
Just a short announcement, folks
Iâm offering up cuttings of Pure Frankenstein on my hall of genetics thread, for those interested.
@hollyho
My (Ewok x CDLC) x Lipsmacker seeds arrived intact.
Thank you again!
Youâre welcome! Glad they made it. Remember they may need a good score and soak. Itâs going to be interesting to see those grow!
I will let you know when that happens.
Did I read these are fems?
Yes they are. Should be anyway lol. I used sts to reverse that Lipsmacker. Used that pollen on females.
They just made my list for the next seed drop. @hollyho
There are a few other OGers that have already started some if you wanted to check them out while youâre waitingâŚ
@bassman5420
@Kasper0909
@Greenfingers
@Limeflavouredheadbut
I think theyâre only a couple weeks in. But if you just wanted to see whatâs up w them, Iâm sure you could find some pics. Theyâve also shared a few pics in my journal âmephisto crossesâŚâ
Good to hear! I canât wait to see what comes of them. The Lipsmacker was so different than the mom.
The little one all the way to the right is the lipsmacker. It was planted way later tho Kinda fuzzy.
I probably should a posted these in the mephisto crosses thread
I would. Nice looking plants btw.
I think I have to take you up on this now @BigMike55 , turns out I donât have any of them after all. After the way you described them I have to say dibs
Ok bro. I will get some in the mail for you. I think i still have your address if not i will let you know.
Many thanks bud.
Heres a different kind of challenge for a pack of Goji OG f2âs
I removed 1 character and âBrokeâ this code. Fix it and the pack is yours
#include <cs50.h>
#include <stdio.h>
int main(void)
{
int height, a, b, space; // a = row && b = column
do
{
height = get_int("Height: ");
}
while (height < 1 || height > 8);
for (a = 0; a < height; a++)
for (space = 0; space < height - a - 1; space++)
{
printf(" ");
}
for (b = 0; b <= a; b++)
{
printf("#"); // left half of pyramid
}
printf(" ");
for (b = 0; b <= a; b++)
{
printf("#"); // right half
}
printf("\n");
}
}