Skip to content
Open navbar menu
Sign UpLog In
Profile icon

Chris P. Bacon

@samfierycreeper
  • Default Repl Name Generator

    Cover page
    Made with Lua

    I made a program that tries to replicate those weird default program names.

    I probably wasn't the first person to do this.

    UPDATE (7/19/21): added more words and I made the program read .txt files for the words.

    Recent comments (0)
  • Lua 5.4.3

    Cover page
    Made with Nix
    Recent comments (3)
    ch1ck3n
    ch1ck3n
    2 years ago

    good job you're by far the fastest learner I've seen on repl talk

  • Moonscript

    Cover page
    Made with Nix
    Recent comments (0)
  • Landlord Prime Mix Calculator

    Cover page
    Made with Nix

    (I still hate Bell Peppers)

    Recent comments (2)
    MiddleAncient
    MiddleAncient
    1 year ago

    Nice, not sure who would come onto replit and use this but it's still pretty cool

samfierycreeper
samfierycreeper
published a Repl
1 year ago
1
Landlord Prime Mix Calculator
Landlord Prime Mix Calculator(I still hate Bell Peppers)
MiddleAncient
MiddleAncient
Nice, not sure who would come onto replit and use this but it's still pretty cool1 year ago
samfierycreeper
samfierycreeper
shared a Post
2 years ago
Brave Rewards for Replit?
samfierycreeper
samfierycreeper
shared a Post
2 years ago
This post is incoherent garbage so I apologize in advance. I just started learning Kaboom earlier today and I am trying to create a simple game simil
MrVoo
MrVoo
Kaboom colors are pretty confusing, but you can change them like this: // This is equal to (255,0,0) sprite.color.r = 1; sprite.color.g = 0; sprite.color.b = 0; // This is equal to (0,127,255) sprite.color.r = 0; sprite.color.g = 0.5; sprite.color.b = 1; `2 years ago
samfierycreeper
samfierycreeper
shared a Post
2 years ago
How do you Require a Lua file with NixOS? In my Repl I am trying to require a file, otherfile.lua. The way that I am requiring it would work in Lua n
Example of my Issue
Blank Repl
SixBeeps
SixBeeps
So apparently in Lua, require() only searches for files in the paths you give it. By default, the current path is not included in this list of paths. Change the LUA_PATH environment variable to look for scripts in that directory.2 years ago
samfierycreeper
samfierycreeper
published a Repl
2 years ago
0
Lua 5.4.3
Lua 5.4.3https://www.lua.org/
ch1ck3n
ch1ck3n
good job you're by far the fastest learner I've seen on repl talk2 years ago
samfierycreeper
samfierycreeper
shared a Post
2 years ago
According to lua.org (Lua's official website). Lua 5.1.5 (the version of Lua that Replit has) was released on 17 Feb 2012. That makes Lua over 9 year
samfierycreeper
samfierycreeper
I created a Repl (using Nix as ch1ck3n had said) with Lua 5.4.3. The most up-to-date version as of writing this post. You can fork it here: https://replit.com/@samfierycreeper/Lua-5432 years ago
ch1ck3n
ch1ck3n
i think the replit team is just too lazy to fix it you can always just use nix to get the current version though https://docs.replit.com/programming-ide/getting-started-nix#learn-more-about-nix2 years ago
samfierycreeper
samfierycreeper
Also I forgot to add, did I post this the correct spot? 2 years ago
samfierycreeper
samfierycreeper
published a Repl
2 years ago
5
Default Repl Name Generator
Default Repl Name GeneratorI made a program that tries to replicate those weird default program names. I probably wasn't the first person to do this. UPDATE (7/19/21): added more words and I made the program read .txt files for the words.
samfierycreeper
samfierycreeper
shared a Post
3 years ago
####Sorry about the weird title, couldn't think of a better way to word it Replit tends to put 3 languages you have used before into a small box on t
Bookie0
Bookie0
Go on the CLI. Account: Screen Shot 2021-03-16 at 7.21.31 PM Languages: Screen Shot 2021-03-16 at 7.21.46 PM And check the languages you want. You need 3, iirc. Screen Shot 2021-03-16 at 7.22.01 PM Reload the home page, and you should have those languages. Good luck! :D3 years ago
Coder100
Coder100
simple! Click this link: https://replit.com/~/cli/account/languages?run=1 might want to bookmark it if you are really indecisive lol3 years ago
SixBeeps
SixBeeps
Not sure if this will do it, but try changing them in the Replit CLI by running the account languages command.3 years ago
samfierycreeper
samfierycreeper
shared a Post
4 years ago
Hey! I've been trying to format an if/then/else statement in LUA? I can't figure it out. How would I do so?
SixBeeps
SixBeeps
if condition then doThing() else doOtherThing() end `4 years ago