25
HealingFunctionCallerCalls a function, if it has an error, it heals it using GPT4
1.2K
29
25
MarcusWeinberger Hey, I just finished rewriting this in python! Hope you like: https://replit.com/@MarcusWeinberger/PythonHealingFuncCaller?v=12 months ago
7
the circle appthe circle app
545
13
7
7
encrypted-replthis repl allows you to encrypt its contents
678
10
7
4
Fahrenheit to celsius celsius
301
3
4
10
4
gptpyQuick implementation of this tweet https://twitter.com/goodside/status/1568448128495534081
229
6
4
94
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/
5.3K
130
94
KirillUtusikov 3 months ago
KirillUtusikov all easter eggs (most)
3 months ago
432
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-release36
New Tabs System Rolling OutYou should start seeing it this week. Let us know if you like it!
1.6K
67
36
7
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
`7