Search found 132 matches

by Guard13007
Tue Feb 16, 2021 3:43 am
Forum: General
Topic: Looking for opinions from people who use MoonScript!
Replies: 2
Views: 3487

Re: Looking for opinions from people who use MoonScript!

MoonScript favors brevity of syntax above all else. This can be handy and often is, but also allows you to write code that is a pain in the ass to read. (I am most aware of this from following the creator of MoonScript, who commonly writes code that I struggle to understand in his projects.) I perso...
by Guard13007
Thu Jan 28, 2021 10:13 pm
Forum: Games and Creations
Topic: Don't learn to code - WesternPunk
Replies: 14
Views: 23854

Re: Don't learn to code - WesternPunk

This is amazing, please keep working on it!
by Guard13007
Tue Oct 20, 2020 7:55 am
Forum: Libraries and Tools
Topic: Luaseq - Asynchronous helper library
Replies: 9
Views: 17197

Re: Luaseq - Asynchronous helper library

monolifed wrote: Sun Mar 01, 2020 8:06 pm This might be confused with luasec
I literally only opened this because I thought it was for this. Author, please consider renaming it
by Guard13007
Tue Oct 20, 2020 6:08 am
Forum: Games and Creations
Topic: egg - minimal node organized note taking program
Replies: 1
Views: 10041

Re: egg - minimal node organized note taking program

I would suggest adding more screens hots and information. Right now there isn't enough detail to really know what this is. :(
by Guard13007
Fri May 15, 2020 9:04 am
Forum: Games and Creations
Topic: Steam release: Push Blox 2 (PC) - free keys
Replies: 19
Views: 20910

Re: Steam release: Push Blox 2 (PC) - free keys

Thank you! (just claimed the second to last key there)
by Guard13007
Fri May 15, 2020 8:42 am
Forum: Libraries and Tools
Topic: Android Shell Code
Replies: 5
Views: 14615

Re: Android Shell Code

Can you please explain why writing to /sdcard is considered bad practise and what we should use instead? Just stating not to do it without an alternative isn't very helpful. :(
by Guard13007
Sat May 26, 2018 7:25 pm
Forum: Libraries and Tools
Topic: itchy - A simple version checker for games published on itch.io
Replies: 2
Views: 4601

Re: itchy - A simple version checker for games published on itch.io

Just released version 3.0.0:

- Rewritten to be used like a normal module instead of requiring you to start a thread and listen to a channel yourself.
- Added HTTPS support using libcurl and luajit-request.
- Uses Itch.io's new API endpoint, super up-to-date!
by Guard13007
Fri May 25, 2018 9:24 pm
Forum: Support and Development
Topic: Detecting if a file is running in the main thread, or a different thread
Replies: 2
Views: 3226

Detecting if a file is running in the main thread, or a different thread

I'm working on an update to my version checking library which will make using it more like a standard module by requiring it and calling functions on the returned table (instead of its current behavior, which is to be loaded into a thread and called, then check a channel for its result). I would lik...
by Guard13007
Fri May 18, 2018 11:40 pm
Forum: Support and Development
Topic: Making a love EXE download a DLL and then use it without restarting?
Replies: 3
Views: 3492

Re: Making a love EXE download a DLL and then use it without restarting?

That's a good point I didn't consider, I will make sure I use the save directory if attempting to download next to the exe does not work. My main concern with it not working is if I attempt to require it first, then download it, I hope there isn't some cache that would interfere saying nah I already...