Dotch (@dotchmc) 's Twitter Profile
Dotch

@dotchmc

Minecraft Mapmaker and Programmer. Founder of @AphnixCreations.

ID: 1214984407

linkhttp://dotchmc.weebly.com calendar_today24-02-2013 09:20:22

4,4K Tweet

151 Takipçi

628 Takip Edilen

λWilliam. (@williamragstad) 's Twitter Profile Photo

I made a JavaScript dialect using a grammar similar to Yoda's from Star Wars😆 Tell me if you would like to test it out yourself, and I'll probably write an interactive online IDE. #esoteric #programming #StarWars

I made a JavaScript dialect using a grammar similar to Yoda's from Star Wars😆
Tell me if you would like to test it out yourself, and I'll probably write an interactive online IDE. #esoteric #programming #StarWars
λWilliam. (@williamragstad) 's Twitter Profile Photo

Alright, I’ve started prototyping on an interactive Yoda transpiler! Any suggestions for a new name btw? Seems like there’s already a YodaScript and Yoda-Lang😕

λWilliam. (@williamragstad) 's Twitter Profile Photo

Found an easy way of hijacking the console methods, and redirecting them to a custom element as well as printing to the original console!

λWilliam. (@williamragstad) 's Twitter Profile Photo

Font Manager has reached about 70k downloads!!! Thanks so much everyone! If you'd like to support me further, become one of my sponsors here✨github.com/sponsors/Willi…✨

λWilliam. (@williamragstad) 's Twitter Profile Photo

Did you know that null is of type object. But as you recall null is equal to undefined. But undefined is of type undefined, and null is not an instance of Object. #javascript #js

Did you know that null is of type object. But as you recall  null is equal to undefined. But undefined is of type undefined, and null is not an instance of Object. #javascript #js
λWilliam. (@williamragstad) 's Twitter Profile Photo

I was fiddling on CodePen.IO today, and unintentionally built an online JS playground. Test it out here if you want: codepen.io/williamragstad… #JavaScript #JS #online #editor #playground

λWilliam. (@williamragstad) 's Twitter Profile Photo

function range(start,end){return Array.from({length:end-start},(_,i)=>i+start);}Number.prototype["to"]=function(up){return range(this, up);};for(let i=0; i<100;i++) {Number.prototype["_"+i]=function(){return this.to(i);}} Range notation in JS. 5.._7() or 1..to(5)