Log In  
Follow
Hessery
PicoChat
by
[ :: Read More :: ]

Cart #can-0 | 2024-04-12 | Embed ▽ | License: CC4-BY-NC-SA
3

Can, Uncan

Can and Uncan are tools for archiving folders and files.

Use

For easy transfer of a single file, rather than multiple files for the same effect.

Install

Move can.lua and uncan.lua from /ram/cart to /appdata/system/utils.

P#146426 2024-04-12 02:36 ( Edited 2024-04-12 02:36)

[ :: Read More :: ]

Cart #picomail-1 | 2024-04-04 | Embed ▽ | License: CC4-BY-NC-SA
3

WIP

PicoMail.

P#145455 2024-04-02 10:51 ( Edited 2024-04-04 05:00)

[ :: Read More :: ]

Cart #picochat-8 | 2024-03-30 | Embed ▽ | License: CC4-BY-NC-SA
21


PicoChat requires not to be run in the browser to function
Huge thanks to PixelDud for rebuilding the server in Go to support linux

Introducting PicoChat!

PicoChat is Picotron's first chat room. Its fully capable of sending and receiving messages, changing server and username.

Use /nick <name> to change your Username.
Use /server <server address> to change your server.

Want to setup your own chatroom?

Here's how to setup your own chatroom server:

  1. Download the server from here.
  2. Port forward port 80.
  3. Run the server.

If you want to add your server to the public server list, please send me a message on discord hessery

Looking for a server?

Here's a list of the current public servers:

  • Official PicoChat Server
    nenjine.com
P#144788 2024-03-28 05:48 ( Edited 2024-04-04 19:25)

[ :: Read More :: ]

Cart #string-0 | 2024-03-24 | Embed ▽ | License: CC4-BY-NC-SA

String

Picotron is currently missing many basic string handling functions. I've created this library to fill in some of the functions that I've come across. If you want to contribute please comment below your code and I'll add it.

Installing

Use load #string and then press ctrl+R to install.

Functions

string.upper(str)

Converts a-z characters to their A-Z counter parts.

string.lower(str)

Converts A-Z characters to their a-z counter parts.

string.explode(str, delimiter)

Converts a string into an array, splitting it at the delimiter.

P#144276 2024-03-24 06:06 ( Edited 2024-03-25 04:38)

[ :: Read More :: ]

Cart #lib_winstay-1 | 2024-03-18 | Embed ▽ | License: CC4-BY-NC-SA
1

winStay is a library that is used to easily keep window location and size persistent after closing the program. winStay has one function winStay, which has three arguments:

  • name is the name of the folder in which you want to keep the save data in within /appdata/.
  • width is the default window width.
  • height is the default window height.

How to use winStay with yotta

After first installing Yotta, run the following commands:

  1. > cd /ram/cart
  2. > yotta init
  3. > yotta add #lib_winstay-0
  4. > yotta apply

Finally add the following code to the top of main.lua.

include "./lib/_bbs_lib_winstay_0/winStay.lua"
winStay("game", 150, 100)

How to use winStay without yotta

Run the following commands in the console:

  1. load #lib_winstay-0
  2. cp /ram/cart/exports/winStay.lua desktop

Now load the program you wish to add winStay to, and move it from the desktop to the cart next to your main.lua file.

Add the following code to the top of main.lua:

include "winStay.lua"
winStay("game", 150, 100)
P#143669 2024-03-18 09:34

[ :: Read More :: ]

Cart #hessery_motherload-0 | 2022-02-22 | Code ▽ | Embed ▽ | No License
1

Just a small demake of Motherload that I threw together in two afternoons.

P#107455 2022-02-22 04:04