gobabygocarswithjoysticks / car-code

New code for go baby go cars!
MIT License
4 stars 1 forks source link

protect branches, better way to compile code then move it through pre release and release branches, keep access to old versions? #7

Closed joshua-8 closed 2 years ago

joshua-8 commented 2 years ago

var url = "https://api.github.com/repos/joshua-8/derivs_limiter/releases";

var xhr = new XMLHttpRequest(); xhr.open("GET", url);

xhr.onreadystatechange = function () { if (xhr.readyState === 4) { console.log(xhr.status); console.log(xhr.responseText); }};

xhr.send();