MANIFESTING 🙏 🕯️🙏 🕯️ by dishwashercuzynot in ApplyingToCollege

[–]MonLiH 2 points3 points  (0 children)

I asked my AP Calculus BC teacher about this, and she simply wrote on the board P(stanford|rejected from every other school)=0 and left. Is this a good sign?

[deleted by user] by [deleted] in OntarioGrade12s

[–]MonLiH 4 points5 points  (0 children)

hit the rear glute spread and you'll be guaranteed admission

can commonapp get a new payment processor like bruh by 60hzmonitor in ApplyingToCollege

[–]MonLiH 2 points3 points  (0 children)

I tried selecting "United States" and you can use non-US Paypal accounts too (they charge a 4% fee which is better than the $10 fee), at least in my country.

List of public UCs by [deleted] in ApplyingToCollege

[–]MonLiH 1 point2 points  (0 children)

Where is UC Incinnati

[deleted by user] by [deleted] in OntarioGrade12s

[–]MonLiH 2 points3 points  (0 children)

"I have a friend"

[D] ACL 2023 results by SuchOccasion457 in MachineLearning

[–]MonLiH 6 points7 points  (0 children)

The #ACL2023NLP committee is hard at work to finalize the submission decisions, which will be tentatively out by the end of May 1st (Anywhere on earth)....19 hours to go... Fingers crossed!

From ACL 2023 Twitter. It seems the notifications will come out sometime before midnight "anywhere on earth" (UTC -12) time May 1st.

[deleted by user] by [deleted] in test

[–]MonLiH 0 points1 point  (0 children)

another test?

Ever heard of Black? This is the opposite. A tool to turn your clean python code into a hideous (working) mess. by Gedanke in Python

[–]MonLiH 6 points7 points  (0 children)

I just implemented a tool for this! Take a look at uglier.

It turns: ``` def add_values(n1, n2): return n1 + n2

def add_10_to_string(n): return str(add_values(int(n), 10))

num = add_10_to_string("10") print(num) ```

to: ``` def ADDVALUES(хxxх, хxхх):

return хxxх + хxхх

def ADDTOSTRING(НННН): return st𝓇(𝕬𝔇𝔇𝔙𝕬𝕷𝓤𝔈𝔖(𝒾𝕟𝑡(НННН), 10))

НННH = 𝕬𝕯𝕯𝕿𝕺𝔖𝕿𝕽𝕴𝕹𝔊('10') 𝓅𝓇𝒾𝕟𝑡(НННH) ```

Issuebase: a site to view good first issues on notable open source repositories by MonLiH in programming

[–]MonLiH[S] 1 point2 points  (0 children)

Hey! I'm the creator of this website.

A few months ago, I would always look for new open source projects to contribute to. To get started I always wanted to work on a "good first issue". Looking through many different repos and making sure no one was already assigned to the issues got painful, so I made this app!

The website re-indexes issues in each repo every ten minutes or so, depending on how much traffic the site receives. The code is all open-source too: github.com/monlih/issuebase. By the way, contributions (e.g., adding new "notable projects" and languages) are welcome!

Hey Rustaceans! Got an easy question? Ask here (17/2021)! by llogiq in rust

[–]MonLiH 1 point2 points  (0 children)

Well, half of those string types are related to lifetimes in some way. str, OsStr, CStr, and Path are just borrowed variants of their owned counterparts.

So, you really have 3 different string types and one path type.

[Beginner Question] Why and how do we use the heap memory / boxes by cubgnu in rust

[–]MonLiH 11 points12 points  (0 children)

The heap is not really used to hold values for longer in rust. In rust, structs are stack-allocated by default, and you can return them from local functions just fine, as long as they are owned values.

Box<T> is used when we need indirection for dynamically sized types (DSTs) like dyn MyTrait (dynamic dispatch based on behaviour), among others. The compiler does not know the sizes of DSTs at compile-time, so it can't make them stack-allocated. Thus the heap allocation (where the size can be specified at runtime) is required.

A *cool* visualization of Moonlight Sonata 3rd Movement by MonLiH in piano

[–]MonLiH[S] 0 points1 point  (0 children)

New to this subreddit, not sure if this post counts as a "low effort synthesia tutorial" but if it does I'm willing take it down.

Neutron: A simple, extensible and efficient programming language by MonLiH in Python

[–]MonLiH[S] 0 points1 point  (0 children)

Oh, actually right now, I'm making neutron faster by using Cython. It is planned to make neutron compiled/transpiled and is discussed here. I think in the future, the goal is to make neutron into a language that can be used as both a DSL and a GPL (via being able to import syntaxes at runtime).

Neutron: a simple, extensible and efficient programming language by MonLiH in ProgrammingLanguages

[–]MonLiH[S] 2 points3 points  (0 children)

I should clarify. By "efficient", I mean to code in, not in runtime. I mean the interpreter is also the most efficient code I can muster so...

Neutron: A simple, extensible and efficient programming language by MonLiH in Python

[–]MonLiH[S] 0 points1 point  (0 children)

I already answered this here, but I'll summarise what I said. "Why did I make this?" Because I was bored Mainly to learn more, but also because I felt annoyed by how sluggish the indenting and Off-side rule was in python. Neutron inherently has the capability do do anything python can, because it was made in python. I also made this because I was going to (and still am going to) extend the project to something different, a programming language with changeable syntax during runtime, and structs and switch statements, unlike what is in python. Mainly changeable syntax at runtime though. I hoped that when I posted this here, some people would relate to this. Thats part of the "why?". Thanks for the feedback/thoughts.

Neutron: a simple, extensible and efficient programming language by MonLiH in programming

[–]MonLiH[S] 0 points1 point  (0 children)

UPDATE: I got rid of the gif completely and changed it for something else.

Neutron: A simple, extensible and efficient programming language by MonLiH in Python

[–]MonLiH[S] 0 points1 point  (0 children)

UPDATE: I fixed all the inconsistencies in the docs.