dObbOb11
@dObbOb11
I like coding in JavaScript and some Python. I make frontend apps and stuff with Node.JS
0
Jibey NetworkA suite of tools for work. As of V1.0, includes a Site Searcher and Word Processor
Jibey has had it's full release!
Jibey Blog is out! Find out more abot it there.
A few other small things have happened to make Jibbey ready for it's release but nothing else to important27
2
0
0
Jibey NetworkA suite of tools for work. As of V1.0, includes a Site Searcher and Word Processor
27
2
0
dObbOb11 Jibey Blog is out! Find out more abot it there.
A few other small things have happened to make Jibbey ready for it's release but nothing else to important6 months ago
dObbOb11 The [progress of Jibey](https://jibba-network.dobbob11.repl.co/Public/Projects/Jibey%20Progress.html) will always be wirtten down here so you can look if you want to see updates as they happen6 months ago
0
ConsoledThis is a template / library that makes it simple to build command-line apps on the web!
9
1
0
0
Python Turtle Collison DetectionPython collision detection for Turtle. Includes example. Make sure the console window is selected to move.
42
2
0
I am trying to create a shell.
But I get an error that I tried to debug by making pathgAb a global variable, but I still get the error.
Here is the
0
Single-Sprite 2D Rendering EngineA console-based 2D rendering engine. Can only render a single sprite as of 02/06/2021
5
0
0
Python Custom Packages
If you have created your own custom python package and wish to use it in Replit there are two options to add it :
PyPI Method
T
Katety This is a great blog, full of fun. Thank you everyone for sharing this useful information!lol beans11 months ago
Inspired by Post.it created by @poggypotato. I am clearly worse at coding than @poggypotato so I made mine run in the console (I will try and get it t
Python
3
Talkly
21
1
3
Calculator Broken
I tried to make a JavaScript calculator where you can do this sort of thing:
3*4
and get the result printed to the console
but some
Coder100 Here is your error:
!input.indexOf("+") == -1
It gets evaluated like this:
(!input.indexOf("+")) == -1
What you want is:
!(input.indexOf("+") == -1)
or even better:
input.indexOf("+") != -1
line 42 years ago
1
JibbaA terrible search engine, cause why not? This is the legacy version of jibba. For the modernized version, see jibba-network.dobbob11.repl.co
11
0
1
5
Algebra GenThis is a simple algebra generator to keep you busy over lockdown (I know it is not presented right: A + A + A = 30 when it should be 3A = 30, but whatever!)
go to /.html page to see spotlight.
39
2
5
I wrote a program to open google and get the search results and it used the same concept as https://replit.com/@dObbOb11/Googleable#main.py (googleabl
LegendaryWolf maybe this code will work for tkinter
import tkinter as tk
import tkinter.font as font
import webbrowser
root = tk.Tk()
root.title("google alt")
def search():
query = "https://www.google.com/search?q="+entry.get().replace(" ","+")
webbrowser.open(query)
Fonts
logoFont = font.Font(family="Arial", size="30")
Header
title = tk.Label(text="Google", font=logoFont).pack()
btn1 = tk.Label(text="\nGoogle Search...").pack()
Searchbox
entry = tk.Entry(root)
entry.pack()
btn = tk.Button(root, te2 years ago
// Addition
if (mode.Equals("+")) {
a = Convert.ToInt32(Console.ReadLine());
b = Convert.ToInt32(Console.ReadLine());
Console.W
C#
I was writing code to handle files and I kept getting an error that didn't make any sense
here is the code (i included it all because I didn't know wh
I wanted to print a picture of an apple so I used /n to get a newline but it didn't work can you help?
this was the code:
https://storage.googleapis.c