Skip to content
Sign UpLog In
Profile icon

James Gordon II

@Atomic-Gamming
  • My website

    Cover page
    Made with HTML, CSS, JS
    Recent comments (0)
  • Kahoot Bot

    Cover page
    Made with Pygame
    Recent comments (0)
  • Text encoder and decoder V3.2

    Cover page
    Made with Python

    A program made to automate my custom cipher. (V3.2: Cleaned up the back end and the user interface)

    Recent comments (0)
Repls
Community
Atomic-Gamming
Atomic-Gamming
shared a Post
2 years ago
Can anyone help me implement a way to see what type of question the current problem is in kahoot
#pygame
#bot
I have been re-coding my OG kahoot bot and I have found that if the question is not always a four answer question it breaks so i need a way to find ei
Kahoot Bot revamp testing
Pygame
Atomic-Gamming
Atomic-Gamming
shared a Post
2 years ago
This program was made to automate the encoding process of my custom cipher and I want to share it with all of you guys so that you can use it. Any fe
Text encoder and decoder V3.2
Python
Atomic-Gamming
Atomic-Gamming
published a Repl
2 years ago
1
Text encoder and decoder V3.2
Text encoder and decoder V3.2A program made to automate my custom cipher. (V3.2: Cleaned up the back end and the user interface)
Atomic-Gamming
Atomic-Gamming
shared a Post
2 years ago
I am trying to make it so that my bot does different solutions dependant on the type of question and the only way to tell the type of question is a bi
Kahoot Bot revamp testing
Pygame
Coder100
Coder100
try this: https://webbot.readthedocs.io/en/latest/webbot.html#selenium.webdriver.Chrome.execute_script2 years ago
Atomic-Gamming
Atomic-Gamming
shared a Post
2 years ago
I am trying to recode my original Kahoot.it spammer I made for fun and it was working just fine until recently (I didn't change anything) I have been
Kahoot Bot revamp testing
Pygame
Coder100
Coder100
You never placed a limit on how big tab can be, so you could technically have all the tabs be closed. image2 years ago
JacobMcPherson1
JacobMcPherson1
I don't know what's causing the error because I'm not good at webbot, but I do know that you can make a way more efficient kahoot flooder using kahootPY https://pypi.org/project/KahootPY/2 years ago
Atomic-Gamming
Atomic-Gamming
shared a Post
2 years ago
A few months ago I made a Kahoot bot and it got kinda popular but recently repl updated and now it no longer works. If this post gets enough support I
Kahoot Bot
Pygame
vincedevries
vincedevries
YESS 1 year ago
lsikora
lsikora
Yeah! Definitely! I remember when your original Kahoot bot was released and it was so cool! Looking forward to seeing the revised bot!2 years ago
InvisibleOne
InvisibleOne
What isn't working in it?2 years ago
Atomic-Gamming
Atomic-Gamming
shared a Post
2 years ago
I have a website repl and I wanted to edit it but now when I try to view it I just get these two errors swapping Screenshot 2021-05-11 9.41.00 AM out
InvisibleOne
InvisibleOne
That happened to me, I think their already working on fixing it.2 years ago
SonicTheHedHog
SonicTheHedHog
Yep2 years ago
Atomic-Gamming
Atomic-Gamming
shared a Post
2 years ago
I have made a proxy for myself for when I am at school but it is pretty slow and I am wondering if there is a different library that I can use that wo
Coder100
Coder100
Webbot is already fast To get faster get a faster internet and get hacker to use faster virtual machines2 years ago
Atomic-Gamming
Atomic-Gamming
shared a Post
2 years ago
I want to make the decoding "live" as well so that it works just like the encoding part but I have no idea how to even start to do this, I want it to
Text encoder and decoder V3.2
Python
RYANTADIPARTHI
RYANTADIPARTHI
you can do it the same as encoding process.2 years ago
Brendan23
Brendan23
@JamesGordon1 tell me if this is what you want. first, you will have to move your print statement that prints the decoded message bellow line 118 and add it again bellow line 121. then, bellow those newly added print statements, addprint('\033[H', end=""), and bellow that add sleep(any integer can be put here) if you don't understand or it doesn't work, please tell me.2 years ago
Atomic-Gamming
Atomic-Gamming
shared a Post
2 years ago
In this update, I added the ability to use the backspace button when encoding text. I plan to add a cursor when encoding so you can see where you are
Text encoder and decoder V3.1
Python
Atomic-Gamming
Atomic-Gamming
shared a Post
2 years ago
I am trying to add the ability to use the backspace button as normal so that they can use it like a normal text editor. I have been trying but I can't
Text encoder and decoder V3.1
Python
Coder100
Coder100
A normal input() function should have that feature already of deleting text. Why do you need to hack and make your own?2 years ago
yzhacker
yzhacker
type the me>>s<<age that you want to decode below?? type the message that you want to decode below2 years ago
Atomic-Gamming
Atomic-Gamming
shared a Post
2 years ago
It has come to my attention that MANY people have been copying my program and have been posting it as their own, if you know of any please link the po
Kahoot Bot
Pygame
NigelIsCoding
NigelIsCoding
I swear to god mine is not your code2 years ago
Gr8est
Gr8est
How much time does it take to download stuff lol ;-)2 years ago
Atomic-Gamming
Atomic-Gamming
shared a Post
2 years ago
I have an except statement in a while loop that is supported to catch any errors and then exit the while True loop I have but it seems that getch is g
Text encoder and decoder (live encoding)
Python
Coder100
Coder100
just make the checks yourself: ch = getch() if ch in ('b', 'a', 'd'): print("invalid") else: print("valid good job maybe idk") `2 years ago
DynamicSquid
DynamicSquid
try-except catches errors. What error do you expect to see from this: try: test = getch() basetext = basetext + test Encodelist.append(test) output = "".join(str(encode[c]) for c in Encodelist) print ("\033[A \033[A") print ("\033[A \033[A") print("Base text:",base_text) print("Encoded:",output) except: break `2 years ago
RYANTADIPARTHI
RYANTADIPARTHI
ok, so first of all, are you using the getch for something, or something unnecessary. Because i would suggest you use getch only for one letter, or number responses. Use input for everything else.2 years ago
Atomic-Gamming
Atomic-Gamming
shared a Post
2 years ago
I am trying to make it so when a user presses ctrl+c (keyboardinterupt) it makes it break the while loop, but I only get an error, can I fix this? Th
Text encoder and decoder (live encoding)
Python
Atomic-Gamming
Atomic-Gamming
Nvm, i needed to add a try: statement to make it work2 years ago
Coder100
Coder100
maybe: print("Encoded:","".join([str(encode[c]) for c in Encodelist)]) for line 30? I think you need those brackets also rip surviv3 ;(2 years ago
Atomic-Gamming
Atomic-Gamming
shared a Post
3 years ago
what I need is someone to either covert my code to js ( i know basically nothing about it) or can someone link me a website that will do the same thin
Text encoder and decoder
Python
conspicous
conspicous
Here is one AD='\x1bc' AC='(+)' AB='(-)' AA='(x)' A9='(÷)' A8='(3)' A7='(2)' A6='(1)' A5='(6)' A4='(5)' A3='(4)' A2='(9)' A1='(8)' A0='(7)' z='3' y='2' x='1' w='6' v='5' u='4' t='9' s='8' r='7' q='z' p='y' o='w' n='v' m='u' l='t' k='s' j='r' i='q' h='p' g='o' f='n' e='m' d='l' c='k' b='j' a='i' Z='h' Y='g' X='f' W='e' V='d' U='c' T='b' S='a' R=' ' Q=',' P='.' O='?' N='@' M='!' J='' I='x' H=input B=print import sys E={M:M,N:N,O:O,P:P,Q:Q,R:R,S:r,T:s,U:t,V:u,W:v,X:w,Y:x,Z:y,a:z,b:'÷',c:I,d:'-',e:3 years ago
PattanAhmed
PattanAhmed
@JamesGordon1 Hi James, Read this Quora article from here You can find some Python to JavaScript code converters mentioned therein that website. Take your time and read it and try yourself... *With my best wishes Hope this helps Please mark my answer if this helps*3 years ago
InvisibleOne
InvisibleOne
Try using jiphy3 years ago
Atomic-Gamming
Atomic-Gamming
shared a Post
3 years ago
I know no anything about python servers and I need help with making one. btw you will see what I am doing when you load the repl 6(8)(5) 7 927-5(7)15
(not so) Simplechat alpha
Python
CodingCactus
CodingCactus
just letting you know, that when i added a new user (me) it appended me to Jackman rather than a new line (users.txt)3 years ago
Codemonkey51
Codemonkey51
I REMEMBER THIS! also I can help3 years ago
Jakman
Jakman
yes I i will.3 years ago
Atomic-Gamming
Atomic-Gamming
shared a Post
3 years ago
What I mean by the title is can u change the buttons to that they are easier to use on a phone, please. I have tried to do it my self but I don't know
My website
HTML, CSS, JS
lynnlo
lynnlo
The line ` already sets the size of the website to the size of the screen. It's already mobile friendly if you are asking about how to change certain aspects of the website than you can use JS's windows.navigator.userAgent` to see the device's info including the device type.3 years ago
Atomic-Gamming
Atomic-Gamming
shared a Post
3 years ago
This is a quick python text art for a start to a python reel that I made in 5 minutes
{{ template }} Python Text starter
Python
GulliverM
GulliverM
image2 years ago
Atomic-Gamming
Atomic-Gamming
shared a Post
3 years ago
I was recently the victim of a hacker. He did a simple hack but it crashed my repl from running and he typed this code: https://storage.googleapis.com
(not so) Simplechat alpha
Python
reeeeeeeeee67
reeeeeeeeee67
So it looks like they might have got in with the website if u show the website they can hack in2 years ago
tlale
tlale
happened to me ,i was really frastrated3 years ago
Atomic-Gamming
Atomic-Gamming
shared a Post
3 years ago
I have tried to run a pygame repl but it gives me this error every time: fork/exec /usr/local/bin/python3: no such file or directory
LovelyObviousWatchdog
Pygame
DJWang
DJWang
Hi James! Yes, pygame is down for now and it was for some time.3 years ago