Skip to content
Open navbar menu
Sign UpLog In
Profile icon

Amjad Masad

HackerAdminVerified
@amasad
CEO of Replit
Twitter
GitHub
Website
  • 10PRINT

    Cover page
    Made with HTML, CSS, JS

    The commodore64 basic 10 print line recreated in JS

    Recent comments (21)
    013189
    013189
    1 month ago

    dont work little piece of

    aangisagoodbo
    aangisagoodbo
    3 months ago

    is it reminds me of a c64

    SLMJ
    SLMJ
    8 months ago

    Lol replit errored "Tryna commit while offline"

    Whippingdot
    Whippingdot
    11 months ago

    Saw this - the maze walker is really cool. I don't really understand the rest (tho I get what you are trying to do) but the maze walker is amazing. It probably just starts from every starting point and goes till all around it there are pixels of the color white right? If not how does it work (I don't think it is AI)

    uxAExn
    uxAExn
    11 months ago

    hi

    soren
    soren
    1 year ago

    dope

    Ultrox
    Ultrox
    2 years ago

    @amasad ama that's plagiarism!!!

    Ultrox
    Ultrox
    2 years ago

    @amasad a help!!!! this guy's project: https://replit.com/@mohammadabu123/mining, is an exact copy of this guy's original: https://replit.com/@aguy11/Miner

  • AI Image Generate (Stable Diffusion)

    Cover page
    Made with ReactJS

    Ask the AI to make something for you.

    Recent comments (368)
    calebchuahs
    calebchuahs
    1 day ago

    huh it does not work

    MARLEYLOPEZ2
    MARLEYLOPEZ2
    8 days ago

    doesn't work, cool idea though

    EvanJohnson26
    EvanJohnson26
    24 days ago

    is broken

    Dogepose
    Dogepose
    1 month ago

    Sorry the ideas cool but I cant get it to work.

    OSoft
    OSoft
    1 month ago

    RANDOM?

    KALEBCALLANTINE
    KALEBCALLANTINE
    1 month ago

    it dosnt work

    Neonneo
    Neonneo
    1 month ago

    Wow

    doxr
    doxr
    2 months ago

    looks like Dalle-Mini (it's a private repl, don't bother) isn't working which is what he uses for image generation. It's probably because of API key issues.

    ShirishP2
    ShirishP2
    2 months ago

    hi

  • america

    Cover page
    Made with Node.js

    Draw 🇺🇸using node and chalk

    Recent comments (3)
    soren
    soren
    1 year ago

    o7

    R0bl0x10501050
    R0bl0x10501050
    2 years ago

    The 'new' in the first line breaks it.

    Fork this if you want the working repl:

    https://replit.com/@R0bl0x10501050/america#index.js

Repls
Community
amasad
amasad
published a Repl
2 months ago
25
HealingFunctionCaller
HealingFunctionCallerCalls a function, if it has an error, it heals it using GPT4
MarcusWeinberger
MarcusWeinberger
Hey, I just finished rewriting this in python! Hope you like: https://replit.com/@MarcusWeinberger/PythonHealingFuncCaller?v=12 months ago
EnZon3
EnZon3
this is cool!2 months ago
amasad
amasad
published a Repl
7 months ago
7
the circle app
the circle appthe circle app
SLMJ
SLMJ
@amasad I love the new which repls are running feature!6 months ago
GiggaPoggers
GiggaPoggers
You have exactly 2k followers good job4 months ago
amasad
amasad
published a Repl
8 months ago
7
encrypted-repl
encrypted-replthis repl allows you to encrypt its contents
jorlo
jorlo
whats the password8 months ago
cool-sidd
cool-sidd
kewl7 months ago
amasad
amasad
published a Repl
8 months ago
4
haroon
haroon
celsius8 months ago
amasad
amasad
published a Repl
9 months ago
10
neovim
neovimneovim running on replit
andypiper
andypiper
Clever idea - now how could I manage my Neovim config... I guess within the Repl itself...8 months ago
RayhanADev
RayhanADev
as yes, textedit in a repl B)7 months ago
amasad
amasad
published a Repl
9 months ago
4
gptpy
gptpyQuick implementation of this tweet https://twitter.com/goodside/status/1568448128495534081
hugo
hugo
Gives an error!9 months ago
arhanansari2009
arhanansari2009
Nice 9 months ago
amasad
amasad
published a Repl
9 months ago
94
GhostWriter Early Access (hit run)
GhostWriter Early Access (hit run)Signup to get early access to GhostWriter. If you're on Safari open this link in a new window: https://ghostwriter-early-access-hit-run.amasad.repl.co/
KirillUtusikov
KirillUtusikov
![image](https://storage.googleapis.com/replit/images/1676792329573_af6cdc087e6a97a3117044e5cc19aa76.png)3 months ago
KirillUtusikov
KirillUtusikov
all easter eggs (most) ![image](https://storage.googleapis.com/replit/images/1676792505017_ed83071718324838bb3e4178597143b5.png)3 months ago
amasad
amasad
published an Update
9 months ago
432
AI Image Generate (Stable Diffusion)
AI Image Generate (Stable Diffusion)Ask the AI to make something for you.
Now uses Stable Diffusion
The model is much faster and more robust. Try it again! For example, you can use much more complex prompts. Try this: house of crystals, magical world, by greg rutkowski, sung choi, photo realistic, 8 k, cinematic lighting, hd, atmospheric, hyperdetailed, trending on artstation, devainart, digital painting, glow effect Read more about Stable Diffusion here: https://stability.ai/blog/stable-diffusion-public-release
AstroGuy12
AstroGuy12
@amasad how did you make the backend for this.9 months ago
#ai
#Dalle
#apps
+1
amasad
amasad
published a Repl
10 months ago
36
New Tabs System Rolling Out
New Tabs System Rolling OutYou should start seeing it this week. Let us know if you like it!
OnlyAHuman
OnlyAHuman
The new system is great! 10 months ago
amasad
amasad
published an Update
10 months ago
7
Lisp in Python
Lisp in PythonThis is a lisp implementation in Python. It's about 250 LoC, including tests and comments. It's very simple right now but will be adding more to it soon!
Added lambdas!
Now you can write functions with lambda e.g.: > ((lambda (x) (+ x 1)) 1) > 2 > (let add (lambda (a b) (+ a b))) > (add 2 3) > 5 `
amasad
amasad
published a Repl
10 months ago
7