Bradley Fusselman
@btfuss
little dark age eh
I have been coding for a while and have motivation, just no "unique" ideas. I'm proficient in:
Python
Java
and have a small but general knowledge of:
PyPyPI
PyPyPI is currently not on PyPi, because it's quite small and has very little purpose for non-replit users.
Installing
Fork the repl
Usage
Bash
Simple Scraping API
The API gets a website and its contents then parses them with BS4.
Example usage is listed inside the python file.
Python
CoderGautamYT Very cool! I suggest ending the comment at the end with """ and maybe moving the example usage to the top so people dont have to scroll all the way down1 year ago
I've been working on a module and does anyone have any other useful commands to add to it?
Python
Coder100 get width and height of terminal
maybe you want to also abstract the curses library
https://docs.python.org/3/howto/curses.html2 years ago
I need to encrypt/decrypt a string without using a non-builtin module. I'm working on a library below, and in the database section, I need to encode s
Python
Baconman321 without using a non-builtin module
Why? You may as well use a built in module, as you would have to re-make an existing algorithm or make your own - both of which are incredibly dangerous (the former is dangerous if you make a mistake in the algorithm or don't know what you are doing, and the latter is almost always going to be inferior to existing algorithms out there).
Encryption algorithms are complex for a reason - they aren't meant to be broken easily!2 years ago
How to Make a Efficient COVID Data Visualizer
> This tutorial assumes you have basic Python knowledge and limited-to-some bash knowledge
Step 1: Crea
Bash
I'm working on a python module which has a lot of helpful python functions. Just list some below!
TurtleAndrew Oh, also under the Files class, maybe make a way to write to a file from a list or string or something like that2 years ago
TurtleAndrew Maybe a class for binary/non base 10 numbers which allows for adding and subtracting and other math operations.2 years ago
TurtleAndrew Vector types. A function to create an array full of something that can be n dimensions. Functions to add (or other such operations) two lists together. A function to create an image file (from an array of color/gray scale) or extract the colors from an image file (into an array).2 years ago
How to Make an CLI with Machine Code
> This tutorial assumes you have basic knowledge of bash commands and of coding
Step 0: Cheat Replit
Since repli
CSS Created thingy with that old terminal vibe. You know what I'm talking about
tetris
Yeah yeah yeah I know this question is everywhere on the internet but can you use a replit program and embed it into a site?
I recently realized that nobody will host my beautiful node.js server which makes me sad, so is there anyway I can use the HTML repl with an online da
InvisibleOne MongoDB (cloud version) is free for the basic cluster and works quite well with node js.2 years ago
0
Color EngineAn ascii color engine with cursor movement
13
0
0
I recently discovered you can just leave the repl on because it's infinitely listening, but then I also discovered...
server resets
Is there any way t
Hey! I'm writing a command line interface and I was wondering if there are any quite useful commands which aren't exactly in bash (or in bash but more
AR199 Check out this tutorial I made about CLI to see some of the most useful commands. Learn CLI2 years ago
23
COVID VisualizerThis shows data from last year to january 2021
2.9K
135
23
How can you get non blocking user input with the curses module in python?
Coder100 Example: https://replit.com/@Coder100/DimpledMediumblueDemands-nihniunuinuinui#main.py2 years ago
Coder100 It's called halfdelay, what a weird name XD
https://docs.python.org/3/library/curses.html?highlight=halfdelay#curses.halfdelay
So, it is blocking, but blocking like time.sleep, so technically not blocking. Useful for things like snake!2 years ago
Im just trying to tell my program to create a file in a directory. Currently it is telling me that it needs to create the directory? Can any bash scri
It has multiple tokens but how to i keep all the tokens inside of quotations inside of 1 index in the tokens list
CHECK ASSEMBLY.PY FOR LEX() FUNCTIOn
Bash
Coder100 godzilla had a stroke reading this and literally died
how to i keep all the tokens inside of quotations inside of 1 index in the tokens list
`2 years ago
AloeBest Use a array! If you had say 3 types of phones, A array would look like this!
phones = ["iPhone", "Android", "Nokia 3000"]
Now if I want to fetch a item I will do phones[1] for iPhone, etc!2 years ago
I need to write a lexer for my coding language (in python), I have tried multiple ways but no success. Does anyone have a guide
pls
Coder100 https://craftinginterpreters.com
although it is in java, its very easy to be ported.
The basic process is to just create tokens char by char2 years ago