Well, it has taken until 4th of February, for us to get what I call a warm Melbourne summer's day... A very nice 38C... at last... It is rare that we get hot days, 45C+, but it does happen... How warm does it get for other Forum members?
(Well, the forum IS listed as "Everything Else"... I suppose the weather would be included in that category... Moo Ha Ha Ha)
It's pretty rare for our temperature to drop 'that' low in winter, but it has happened... The last time it snowed in Melbourne was July of 1986 but it almost melted as soon as it hit the ground.... But zero is a little too cold for me... lol
Our world is unique, one earth but it has opposite weather between the northern and southern hemisphere
Sometimes, I just entertain myself with "the falling snow" code below ...
Code:
' Sources :
' The falling snow is inspired from the moving stars in Blastemroids (Naalaa 6) by Marcus
'----------------
' INITIALIZATION
'----------------=
w = 640
h = 300
'create a snow image from ellipses
create image snow.img, w,h
set image snow.img
set color 100,100, 100 'gray background
cls
for i = 0 to 500
snow.radius = rnd(4)
set color 255, 255, 255, rnd(256)
draw ellipse rnd(w),rnd(h),snow.radius,snow.radius,1
next
set image primary