Skip to content
Sign UpLog In
Profile icon

@svensk007
python gang
  • replOS

    Cover page
    Made with Python
    Recent comments (4)
    MrVoo
    MrVoo
    2 years ago

    Instead of that input thing at the start, do this:

    import os try: import REPLAPI except: print(‘Installing REPLAPI...’) os.system(‘pip install REPLAPI -q’) os.system(‘clear’)

    I don’t know if you can use the as api part with this though...

  • svensk007

    Cover page
    Made with HTML, CSS, JS

    A website I made for myself Also made in one day because I don't have a life.

    Recent comments (5)
    sweetmango88
    sweetmango88
    2 years ago

    wow; Humans are like a piñata. If it was only guts and blood inside

  • AI Image Generator (Stable Diffusion) - CSS Update

    Cover page
    Made with ReactJS

    CSS Update to amasad's original repl I know some other people did something like this too but in my humble opinion, I did it better. ;) Haven't been active on replit for awhile so I figured id come back with some of my newfound knowledge but couldn't think of anything to make but when I saw amasad's og project I figured why not upgrade the graphics.

    Recent comments (1)
    shadyjd
    shadyjd
    3 months ago

    Cool! I like the redesign a lot!

  • repyOS IDE

    Cover page
    Made with Python
    Recent comments (0)
Repls
Community
svensk007
svensk007
published a Repl
7 months ago
1
AI Image Generator (Stable Diffusion) - CSS Update
AI Image Generator (Stable Diffusion) - CSS UpdateCSS Update to amasad's original repl I know some other people did something like this too but in my humble opinion, I did it better. ;) Haven't been active on replit for awhile so I figured id come back with some of my newfound knowledge but couldn't think of anything to make but when I saw amasad's og project I figured why not upgrade the graphics.
shadyjd
shadyjd
Cool! I like the redesign a lot!3 months ago
svensk007
svensk007
shared a Post
2 years ago
During my quest to write a programming language in python I discovered that this starting point was just an over-complicated calculator. If you don't
complicated calculator
Python
candies
candies
@svensk007 https://node-chat.candies.repl.co/ Looking for a moderator, You in? 2 years ago
svensk007
svensk007
shared a Post
2 years ago
A little sneak peek of my upcoming repyOS! Description: A fake OS shell made in python Tkinter that I've been developing for a while. For the new pe
repyOS SNEAK PEEK [0.12]
Python
svensk007
svensk007
shared a Post
2 years ago
So I've been slowly putting together a fake os shell I've named repyOS with Tkinter but there is a problem when I try to click the buttons that I made
repyOS
Python
lsikora
lsikora
Hey! I think repl may have a bug so I suggest just copying and pasting the code into a new program or forking your regular one. If that does not work, I can look in debt on the problem. CodeMaster0072 years ago
svensk007
svensk007
shared a Post
2 years ago
For my replOS project I'm working on I'm trying to put it into a Tkinter script with multiple apps and obviously I already have the terminal "complete
robowolf
robowolf
Theoretically you could open a new 'window'. Then have a text input with code, compile it through a function defined in your repl, and output it. This video teaches some ideas although the code used might not be the best for your case.2 years ago
svensk007
svensk007
shared a Post
2 years ago
This is my second version of my reply terminal that I've renamed to replOS. I'm using @JBloves27 and his teams' REPLAPI. I don't know if I want to le
replOS
Python
CSharpIsGud
CSharpIsGud
ReplOS already exists but this is okay I guess.2 years ago
SamiOsman
SamiOsman
Does this actually change your repl username?2 years ago
MesyetiIsTaken
MesyetiIsTaken
really cool :)2 years ago
svensk007
svensk007
shared a Post
2 years ago
Using python and @JBloves27 's and @darkdarcool 's replapi python package I created this fake OS Shell terminal
Repl Terminal
Python
EpicCodeWizard
EpicCodeWizard
@svensk007 If you are looking for a fast way to fetch user info, just make a GET request to https://replit-user-info-api.epiccodewizard.repl.co/@USERNAME. It will return a lotta info in a short time. Add ?count=true for the number of posts, comments, and repls.2 years ago
codeninja135
codeninja135
never knew I had 30 cycles2 years ago
maxina
maxina
i just keep getting "Traceback (most recent call last): File "main.py", line 52, in elif cmd == cmds[6]: IndexError: list index out of range" no matter what i type2 years ago
svensk007
svensk007
shared a Post
2 years ago
So im working on this project right now and there is part of it where I have an elif [command typed] != [dict]: but I can't figure out how to use the
svensk007
svensk007
shared a Post
2 years ago
Inside of repl.it it looks just fine but when I open it in a new tab the Title text isn't centered anymore. I'm using @CoolCoderSJ's CSS Minimalist th
svensk007
HTML, CSS, JS
FloCal35
FloCal35
try adding float: center .center { text-align: center; float: center; } `2 years ago
ch1ck3n
ch1ck3n
it is actually centered. it just uses margin-left: 20%;margin-right: 20%; so to make more "center", you just need to apply your own css. so add style="margin-left: 50%;margin-right: 50%;" to all of your elements you want centered. the more the percent is the more "centered" it is. or you could just use `` tags.2 years ago