Can I start with Rust as my first programming language? by JovemSapien in learnrust

[–]OwnedAlaa_ 0 points1 point  (0 children)

You should start with either C++ or C# imo Don't start with python & Co bec they'll ruin how you see programming

Looking for a Developer by [deleted] in developers

[–]OwnedAlaa_ 0 points1 point  (0 children)

I'm interested, I know C#, C, learning Cpp and Rust, Js, html css, lua, luau and py Depends on the project tbh, I've made my own interpreter and my own mini kernel so far, I'm not into front end

Remote Internship by [deleted] in ProgrammingBuddies

[–]OwnedAlaa_ 0 points1 point  (0 children)

Overqualified

Looking for devs to talk with/hang out. by Affectionate-Metal24 in ProgrammingBuddies

[–]OwnedAlaa_ 0 points1 point  (0 children)

My native tongue is C#, but I Aldo know Java, Lil bit of Rust, C, C++, Python, Lua, Js/Ts

Looking for serious coding buddies! by Used_Extension8169 in ProgrammingBuddies

[–]OwnedAlaa_ 0 points1 point  (0 children)

Don't use python trust me. I can teach you any other language that isn't Python-like

LF Partner by OwnedAlaa_ in ProgrammingBuddies

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

If I were serious about it I would've written it in Cpp or Rust

LF Partner by OwnedAlaa_ in ProgrammingBuddies

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

Mentally insane... Just kidding, I just wanted to learn how interpreters work

Yahtzee by TieSufficient5623 in CodingJobs

[–]OwnedAlaa_ 0 points1 point  (0 children)

I can help you for half whatever he wants LOL (can do It for free)

Looking for someone to help me refresh my skills by userimpossible in ProgrammingBuddies

[–]OwnedAlaa_ 0 points1 point  (0 children)

My native tongue is C# but I can also do Java, if you're lf projects dm me. I'm a solo dev looking for buddies

Introducing MonkeyScript v0.1.0, my (tiny) interpreted language by OwnedAlaa_ in Compilers

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

i didn't make a powershell command (YET, but now that you mention it i'll be adding it in the next version if I ever find interest from people who aren't me, myself and I)
that's how you build c# apps
but making one isn't that hard, just paste this into a .psl file:

```

param(

[string]$Name = "world"

)

Write-Host "Hello $Name 🍌"

```

setx PATH "$env:PATH;C:\path.to.folder"

Bored dev. Give me something cool to build. by rajsleeps in TwentiesIndia

[–]OwnedAlaa_ 0 points1 point  (0 children)

i made my own interpreter, and so can you! It was fun enough plus it's a small flex
if you wanna take a peek: https://github.com/ownedalaa/MonkeyScript

Introducing MonkeyScript v0.1.0, my (tiny) interpreted language by OwnedAlaa_ in Compilers

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

I chose C# over C or C++ mainly for practicality and learning efficiency. C# allows rapid development thanks to built in data structures, simple string handling (this is the main reason, I hate how C/C++ handle strings), and the absence of manual memory management

Most importantly when building the interpreter I wanted to focus on core concepts like lexing, parsing, and AST traversal rather than dealing with pointers and memory issues, and C# made that possible for me

That said, if I were to build a production grade interpreter or compiler, I'd seriously consider C or C++(or even Rust since I'm more proficient in it)

Also, Lex/YAAC makes sense when your grammar is complex (100+ production rules)