Skip to content
Open navbar menu
Sign UpLog In
Profile icon

Matt Iselin

Admin
Pro badge icon
Pro
@mattiselin
Site Reliability Engineer at Replit. github.com/miselin
  • Survive the Dungeon

    Cover page
    Made with Pygame

    A procedurally generated Roguelike. Navigate infinite labyrinth dungeons. Clear out all the dungeon's inhabitants to win.

    There are also some online features:

    • the daily dungeon uses a seed from an API server so everyone is playing exactly the same dungeon
    • there's high score tables so you can compete to get the best run on a dungeon
    • you can see the locations of up to 10 other players that died in the dungeon while you're doing your run
    Recent comments (48)
    OlivrRogers
    OlivrRogers
    5 months ago

    good

    AlexandroArteag
    AlexandroArteag
    5 months ago

    what

    LoganLee15
    LoganLee15
    6 months ago

    how do you swith your items?

    iuliiapyntia
    iuliiapyntia
    6 months ago

    .

    destroyer13
    destroyer13
    6 months ago

    It's like dnd! #Real Player

    EvanGraf1
    EvanGraf1
    6 months ago

    j

    MARZ123
    MARZ123
    6 months ago

    ima fork this good job mate very impressive

    GREG96H
    GREG96H
    6 months ago

    so cool

    BenjaminBlum3
    BenjaminBlum3
    6 months ago

    its image looks interesting, i am going to try it out

    ColoredHue
    ColoredHue
    6 months ago

    The code hurts me internally.

  • BBS Client

    Cover page
    Made with Go

    This Repl runs a client for a Bulletin Board System (BBS) hosted at https://replit.com/@mattiselin/bbs-server.

    It's a full terminal client - no webpages here. Behind the scenes it uses a websocket to talk to the server (because you can't telnet to a repl).

    If you're logged in to Replit, it should pick up your username automatically. Otherwise you'll be logged in as a guest and have read-only access.

    Have fun!

    Recent comments (34)
    Classfied3D
    Classfied3D
    1 year ago

    wow

    DrDuck2711
    DrDuck2711
    1 year ago

    This is really cool

    Saanvi9
    Saanvi9
    1 year ago

    cool

    DhairyaPatel22
    DhairyaPatel22
    1 year ago

    I want to host my own personnel server and client but how can i do that? I'm new to coding all in all but if someone can help than thx.

    Camofrog
    Camofrog
    1 year ago

    epic app!

    RahulChoubey1
    RahulChoubey1
    1 year ago

    What are the security features of this? Is it vulnerable to SQL injections? Other bad-boy input poisoning?

    RahulChoubey1
    RahulChoubey1
    1 year ago

    what is telnet?

    Spllit
    Spllit
    1 year ago

    This is COOL.

    SaifullahOMAR
    SaifullahOMAR
    1 year ago

    pro

  • bazel

    Cover page
    Made with Blank Repl

    This repl is a quick start for building a project with Bazel, with a C++ example.

    Recent comments (0)
  • C64

    Cover page
    Made with Nix

    This is a functional Commodore 64 development environment with demonstration C and ASM programs. A Makefile is provided and the VICE emulator is used to run the system for testing.

    How to Run Programs

    Once VICE loads, at the BASIC prompt:

    LOAD "ASMPROG",8

    Once the program loads, you can type:

    RUN

    to run the program.

    To load the C program, replace the first LOAD with this:

    LOAD "CPROG",8

    Writing BASIC

    You can also type your BASIC programs directly into the emulator, for example:

    10 PRINT "HELLO WORLD"
    20 GOTO 10
    RUN

    Hit the Escape key to stop the program running.

    Save & Load (requires fork!)

    Once you have written a BASIC program in the emulator, you may want to save it.

    The myprogs.d64 disk is loaded as drive 9 in the emulator for this purpose.

    Let's take this BASIC program:

    10 PRINT "HELLO WORLD"

    To save,

    SAVE "HELLO",9

    Once saved, you can load the program again after a restart:

    LOAD "HELLO",9
    LIST
    Recent comments (5)
    Spllit
    Spllit
    1 year ago

    I love it!!

    mattiselin
    mattiselin
    1 year ago

    I've added updates today to this version that enable usage of a terminal to access external BBS sites (and other Telnet servers).

    This can be tried out by running:

    LOAD "*",10,1
    RUN

    This will load StrikeTerm, a terminal program that you can use to connect to Telnet sites across the internet. The repl also runs a telnetd server so you can log in to your repl's shell from within the emulated Commodore 64.

    Quickstart:

    1. Once StrikeTerm is running, hit M and set the modem to "User Port"
    2. Hit F3 to open the terminal
    3. Type at and hit Enter/Return - if you see ok on the screen, the software is talking to the emulated modem!
    4. Type atdt <server.com>:<port> to connect to server.com:port via Telnet. Many BBS's run on Telnet allowing you to access them via the emulator!

    https://www.reddit.com/r/retrobattlestations/ runs a BBS at bbs.fozztexx.com (atdt bbs.fozztexx.com) that you can try out.

    mattiselin
    mattiselin
    2 years ago

    Update! This is now available in template form here: https://replit.com/@mattiselin/Commodore-64?v=1 - including code intelligence for C code and some other cleanups.

    gbraad
    gbraad
    2 years ago

    Also have a look at the README.md as this offers a build toolchain to deal with asm and and cfiles that get compiled and inserted in a virtual disk.

    You can load the programs with

    LOAD "ASMPROG",8 or LOAD "CPROG",8 followed by RUN to start them...

    ... and all of this without

    READY.
    LOAD
     
    PRESS PLAY ON TAPE
    LOADING...
    READY.
    RUN

    Thanks!

    amasad
    amasad
    2 years ago

    My favorite program to run is the maze: 10 PRINT CHR$(205.5+RND(1)); : GOTO 10

    Screen Shot 2021-11-23 at 10.50.40 AM

    p.s. don't forget to type RUN after you're done.

  • x64_osdev

    Cover page
    Made with Nix

    This is everything you need to get started writing an operating system for x86-64 CPUs - up to putting a "Hello World!" string on the screen.

    Recent comments (2)
    CSharpIsGud
    CSharpIsGud
    2 years ago

    About time replit put something worthy of being in the similar repls on my operating system.

All Repls