I've been programming for about a year and a half. Right now I'm working on the next version of my JS templating engine, Squirrelly, and developing a new typed language for JavaScript
Open-source project partnerships, quick paid side jobs, and other cool projects--or paid projects :)
Say I have a string like this, where {{ is an opening tag and }} is a closing tag (disregard comments). I want to separate the string into topmost-level groups, in this case into "first group" and "second group". I'll be using JS and I'd prefer to us...
My dream is to one day write an operating system from scratch, but I know I'll need to learn a lot about how existing operating systems work. What are some of the best resources for learning the basics of Operating Systems? Resources that start from ...
I want to learn Rust because: I don't know any low-level languages, and I want to be able to write speedier/more base-level code. I want to program an OS from scratch (a simple one) :) I've heard that Rust is more safe than C/C++ (you can make less ...
It's been really frustrating sometimes when following along in tutorials that make use of the terminal, that Command Prompt doesn't support a lot of default Linux/UNIX/MacOS supported commands like grep, etc. Just yesterday, I realized that I have an...
This has started to really bug me: every single follower I have is following exactly 39 people. Has someone written a bot? Their profiles all have names and pictures.... Are those the number of people who have posted questions? I'm just really perpl...
I created an NPM ExpressJS template engine called squirrelly (https://www.npmjs.com/package/squirrelly). I created it because I wanted it to be simple, it's really fast because it just uses RegExp to parse, and you can pass in options to inline Java...