Aniruth Ananth
@Viper2211
About me? Why do you need to know? Sounds suspicious...
Workshop
A esoteric programming language based off of the Factory programming language.
A workshop program provides instructions for a virtual claw t
C
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
C++
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
Raku
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
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
BronzeLang
BronzeLang is a simple compiled programming language that emphasizes quick typing.
Most keywords are symbols, except for the booleans (true
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.
Python
Coder100 For you, something like this:
addition = multiplication ( ( "+" | "-" ) multiplication )*
multiplication = primary ( ( "" | "/" ) primary )
primary = NUMBER | "(" addition ")"
so now, multiplication has higher precedence.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
Python
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
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
Python
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
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
C++
LOLCODE?
LOLCODE is an esolang (short for esoteric language) made by Adam Lindsay. According to Google, esoteric means "intended for or likely to be uLOLCODE
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 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 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
What is the Normal Equation?
The normal equation is an equation for analytically calculating theta. It is an alternative to gradient to descent which
Python
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
HTML, CSS, JS
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
HTML, CSS, JS
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
HTML, CSS, JS
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?
HTML, CSS, JS
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
HTML, CSS, JS
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
I just used the exec function and the eval function to create what seems like a real python terminal!
Python
Highwayman What’s the difference between exec and eval? I’ve never seen exec before I think.3 years ago
AphixDev I did this too at one point in time! It's fun making these. Maybe make your own OS?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
Python
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. :|
Python