Log In  
Follow
pararaum

The Wave

A simple and relaxing experiment how to draw a wave. Now just some clouds, a ship, and some music is needed...

Cart #the_wave_wip_v00-1 | 2024-02-13 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

2
0 comments



Cart #deserialization_v1-0 | 2024-02-10 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

This cart is a simple routine to deserialize a string into a table value. I know that there are other routines out there but this routine is simple and small. No serialization routine is give as it is assumed that the text is entered manually. If a list of items is added then remember that a final ',' is needed to actually add the item to the table.

1
4 comments



Cart #unterganginderfeuerdaemmerung-0 | 2022-02-21 | Code ▽ | Embed ▽ | No License
4

Untergang in der Feuerdämmerung

An entry in the Lovebyte 2022 https://lovebyte.party/ and the program achieved the fifth place in the Tiny Executable Graaphics Competition.

The task in this competition was to achieve a graphic with a program of a length of at most 256 Bytes. We used a Fractal to generate the scenery mathematically. In the .p8 file, it was also necessary to cut some text in the header to meet the size requirements.

Here is the whole code in its full glory:

g=127for x=0,g do
for y=0,g do
v=x*3/g-2k=v w=y*4/g-3l=w i=0while v*v+w*w<4and i<g do
t=v*v-w*w+k
w=l+abs(2*v*w)i+=1v=t
end
c=(g-i)/g*13if(c*y>c*89)c=1

[ [size=16][color=#ffaabb] [ Continue Reading.. ] [/color][/size] ](/bbs/?pid=107418#p)
4
5 comments



Cart #msgcicular20220130-0 | 2022-01-30 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

Mystical Symbol Generator: Circular

While browsing I found a cart https://www.lexaloffle.com/bbs/?tid=4076 having a text entry and I though that it should be used to generate some mystical art. Use this cart to enter a text (finish with Jelpi) and get your own mystical symbol. The keys for up, down, left, right can be used to rotate the symbol.

Can you figure out how the symbol is generated and how to read it?

1
3 comments



In this cart butterfly images are collected. This was done while experimenting with converting images to the PICO-8 and storing them in the cartridge. Compression is still missing.

Cart #butterfly20220114-0 | 2022-01-14 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

2
2 comments



Cart #checkerboarddemo20220105-0 | 2022-01-05 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1


An example cartridge showing a simple checkerboard effect and some moving text. This cartridge uses coroutines and classes.

Link to the GitLab repository

1
0 comments



Cart #moving_moire_yahetahoze-2 | 2021-03-22 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2


A simple example with a Moiré Pattern.

2
2 comments