Skip to content
Sign UpLog In
Profile icon

Aniruth Ananth

@Viper2211
About me? Why do you need to know? Sounds suspicious...
  • Python Lesson for Yegor

    Cover page
    Made with Python
    Recent comments (0)
  • Ghost Boy's Halloween

    Cover page
    Made with HTML, CSS, JS
    Recent comments (0)
  • Magic the Gathering Database Project

    Cover page
    Made with HTML, CSS, JS
    Recent comments (0)
Repls
Community
Viper2211
Viper2211
shared a Post
2 years ago
Workshop - A New Esoteric Programming Language
Workshop A esoteric programming language based off of the Factory programming language. A workshop program provides instructions for a virtual claw t
Workshop
C
DynamicSquid
DynamicSquid
Wow, nice!2 years ago
Viper2211
Viper2211
shared a Post
3 years ago
This was inspired by @SpicedSpices's new BrainF tutorial. I decided to venture out and create an interpreter for it. This is my first big project in C
BrainF Interpreter
C++
Viper2211
Viper2211
shared a Post
3 years ago
I was messing around with the Raku grammar syntax thing, and after writing a simple little grammar for it to parse, it stopped working. Could anyone e
BadLang
Raku
theangryepicbanana
theangryepicbanana
Hmm so I see a few issues: token identifier { \w* } This rule will match 123 because \w can match any letter, digit, or underscore, and it will also match nothing because ` means "0 or more". I would recommend doing \w, because it fixes the 123` issue and the empty match issue (which can send it into an infinite loop). token number { \d* ['.' \d+]? } You might want to change this because * once again puts this into an infinite loop: token number { | \d+ ['.' \d+]? # 123 or 123. or 123.4563 years ago
Coder100
Coder100
Hey um try forking the repl?3 years ago
PattanAhmed
PattanAhmed
@Viper2211 Oh! A Lot of we don't know this programming language called Raku. But there are some people who knows this programming language too... I think this guy @theangryepicbanana can help because he has Perl 6 on his profile page:- 01 Thanks!3 years ago
Viper2211
Viper2211
shared a Post
3 years ago
BronzeLang BronzeLang is a simple compiled programming language that emphasizes quick typing. Most keywords are symbols, except for the booleans (true
elipie
elipie
Great language, I want to code in this!2 years ago
Leroy01010
Leroy01010
Awsome!!3 years ago
Viper2211
Viper2211
shared a Post
3 years ago
I'm a bit confused about this and I would like to get some clarification on how to add Order of Operations into my parsing.
InconsequentialVacantCron
Python
Viper2211
Viper2211
Thanks @Coder100! It makes sense now!3 years ago
Coder100
Coder100
does that hopefully make sense?3 years ago
Coder100
Coder100
For you, something like this: addition = multiplication ( ( "+" | "-" ) multiplication )* multiplication = primary ( ( "" | "/" ) primary ) primary = NUMBER | "(" addition ")" so now, multiplication has higher precedence.3 years ago
Viper2211
Viper2211
shared a Post
3 years ago
I've been working on this for a few days (about thirty minutes a day) and I finally finished it. It's a logistic regressor, which is a type of classif
Logistic Regression
Python
k9chelsea2
k9chelsea2
lemme just act like I know what any of the coding means yeh the denary and iteration and everything makes so much sense yes mmhmm3 years ago
Viper2211
Viper2211
shared a Post
3 years ago
Search Algorithms What are search algorithms? A search algorithm is an algorithm that searches or does it? . You have more than likely used a search a
Search Algorithms
Python
DynamicSquid
DynamicSquid
Me when trying to find my homework in my locker when it's due in 7 minutes: QUICK, ACTIVATE BINARY SEARCH!3 years ago
Viper2211
Viper2211
shared a Post
3 years ago
I just started learning C++ (partially because of @HahaYes 's tutorial) and this is what I have learned so far. And remember to upvote if you liked it
Spill
C++
andliu766
andliu766
When I entered 321472318798579843579823475957 it said the number squared is -21474836483 years ago
HahaYes
HahaYes
Oh cool! People watch my tutorials! Keep up the great work and upvote my tutorials!3 years ago
DynamicSquid
DynamicSquid
Oh cool! This is great!3 years ago
Viper2211
Viper2211
shared a Post
3 years ago
LOLCODE? LOLCODE is an esolang (short for esoteric language) made by Adam Lindsay. According to Google, esoteric means "intended for or likely to be u
LOLCODE Tutorial
LOLCODE
SmathHenry
SmathHenry
LOLCODE is a coding language designed to serve as an executable LOLcat image. It is, however, more than just a heardle funny way to express oneself. It has actually been used to solve complex problems, in fields from cryptography to distributed computing.7 months ago
SewnShara
SewnShara
I already know how to create Minecraft in Python as a result of your lesson. It is clear and really detailed. quordle7 months ago
hamzamaqsood3
hamzamaqsood3
Yeah, it does. I was https://chinesebuffetnearmenow.net/ surprised too. Even more surprised when I found out it can do links too. Like a markdown link with custom text. IT DOES THAT. 9 months ago
Viper2211
Viper2211
shared a Post
3 years ago
What is the Normal Equation? The normal equation is an equation for analytically calculating theta. It is an alternative to gradient to descent which
Simple Linear Regression with Normal Equation
Python
Viper2211
Viper2211
shared a Post
3 years ago
Ok, this was also inspired by @DJWang 's Dark Forest, but I tried to take a different twist on it. I have all the code down, but I just can't get any
BramJamGameJam Game
HTML, CSS, JS
CodingCactus
CodingCactus
wow, i have so many relatives dying lol3 years ago
DJWang
DJWang
Wow!I've never seen this in HTML! This is great!3 years ago
Viper2211
Viper2211
shared a Post
3 years ago
After a lot of pixel art, I've finally come up with another game. This is in the beta form, and I plan on adding other bosses(which means a lot more p
Ghost Boy's Halloween
HTML, CSS, JS
ChezCoder
ChezCoder
wow! This is really cool!3 years ago
Viper2211
Viper2211
shared a Post
3 years ago
Hah! I finally got this done. After my last experiment with the canvas, I was able to make this. Use space to shoot, and a/d or left arrow/right arrow
Shooter Game
HTML, CSS, JS
Viper2211
Viper2211
shared a Post
3 years ago
I've been learning a bit about making games in HTML and JS, and this is my first project. Any suggestions on what I could do to make it better?
Pong
HTML, CSS, JS
HahaYes
HahaYes
I upvoted for you3 years ago
HahaYes
HahaYes
I'm more of a Python and C++ guy, so I don't know what to say, but it is pretty good for a starter html project.3 years ago
HahaYes
HahaYes
Put some wasd controls3 years ago
Viper2211
Viper2211
shared a Post
3 years ago
What is it? Well, it's my post for template jam. How does it work? The calculator works with a display, which has a value of a string. To call that v
Template Jam- Template for a Calculator
HTML, CSS, JS
xxpertHacker
xxpertHacker
Using eval() is considered to be among the worst coding practices in all of JavaScript, browser, Node, anywhere. I recommend making you're own expression parser and sanitizer. Also, might I recommend a simple exponent operator, instead of ^2 and ^3. Actually looking at the HTML further, you used inline script events, such as onclick, which is usually advised against, also, I'm pretty sure that prevent's Google's V8 from taking effect.3 years ago
SixBeeps
SixBeeps
Nicely done :)3 years ago
Wilke000
Wilke000
Wow!3 years ago
Viper2211
Viper2211
shared a Post
3 years ago
I just used the exec function and the eval function to create what seems like a real python terminal!
Snake Text Editor
Python
UniqueOstrich18
UniqueOstrich18
or you could just run os.system("python3")3 years ago
Highwayman
Highwayman
What’s the difference between exec and eval? I’ve never seen exec before I think.3 years ago
AphixDev
AphixDev
I did this too at one point in time! It's fun making these. Maybe make your own OS?3 years ago
Viper2211
Viper2211
shared a Post
3 years ago
With the replit module gone, half of my programs are useless. After a bit of research, I've found an alternative! Use in any of your repls, on any ope
ClearingFunction
Python
AgastyaSandhuja
AgastyaSandhuja
this is what I have been needing my whole life3 years ago
Viper2211
Viper2211
shared a Post
3 years ago
I honestly don't know why anybody would use this, but I had some extra time in math class! Enjoy having strings of separate characters. :|
New Type
Python