veganism.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
Veganism Social is a welcoming space on the internet for vegans to connect and engage with the broader decentralized social media community.

Administered by:

Server stats:

262
active users

#classy

0 posts0 participants0 posts today

Yesterday, on 🇬🇪Mutant Radio 's party, we reenacted a flight attendant's travel announcement, tailored to the needs of a murky club basement in Neukölln. Thanks to Henriku for the backing track, and to Ola and Weronika for performing the routine with me. I also managed to play some music, including two forthcoming Brutaż releases

Behold! Seeds that I have thrown into seed dirt and labeled with popsicle sticks ( #classy ). I didn't worry about spacing much and I am going to let everything run together because most of them are companion plants anyways. The setup is dirt in the bottom of an old rat cage (so the cats can't crap in my seeds) and a grow light on top. Watered it good and now I'm calling it a day :thinkerguns:

EDIT: SOLVED! THANK YOU @tartley !!!

#godot example:

#classy.gd
extends Node2D
class_name c

var x:="a"
var r:=false

func _init():
x="b"
print("c init: " + x)

func _ready():
x="c"
print("c ready: " + x)
r = true

#container.gd
extends Node2D
var i = c.new()
var f = true

func _ready():
print ("Container ready: " + i.x)

func _process(delta):
if f:
print("Main loop")
f = false
if i.r:
print ("Inst ready: " + i.x)

#OUTPUT
c init: b
Container ready: b
Main loop