Warning: session_start(): open(/var/lib/php/sessions/sess_gndaqjg0i1pf5o48tes74mkmd2, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
w = 256
h = 256
p = {}
bright = {0.33, 0.9, 0.12}
dark = {0.33, 0.5, 0.12}
current_color = bright
rev_color = 0
for y = 0, h-1 do
if y % 32 == 0 then
rev_color = 1
end
if y % 64 == 0 then
rev_color = 0
end
for x = 0, w-1 do
if x % 32 == 0 then
if rev_color == 0 then
current_color = dark
end
if rev_color == 1 then
current_color = bright
end
end
if x % 64 == 0 then
if rev_color == 0 then
current_color = bright
end
if rev_color == 1 then
current_color = dark
end
end
p[y*w+x+1] = current_color
end
end