##Writing your own Programming Language
###Status:Incomplete
Decide your rules,tokens, and expressions.
###Rules: Shorthand/Longhand for every token/expression. Example: "lt = less", so you could do : "5 less 10"
function gotee(i){ | |
console.log("Running"); | |
var start=Date.now();//timer | |
console.log("Start: "+i); | |
function recurseGotee(n){ | |
var end=Date.now(), | |
elapsed=end-start; | |
if(n===1||elapsed===60000){//60000 milliseconds = 1 minute | |
return n; | |
}else{ |
function fb(num,n,res){ | |
var i=n||1, | |
result=res||"", | |
eol="<br/>"; | |
if(i>num){ | |
return result; | |
}else{ | |
if(i%3===0&&i%5===0){ | |
result+=i+": FizzBuzz"+eol; | |
}else if(i%3===0){ |
function conVowelIt(text){ | |
var v="aeiou".split(""), | |
c="".split(""), | |
result=""; | |
text.split("").forEach(function(){ | |
if(val.toLowerCase()==="c"){ | |
//constanant | |
result+=c[Math.floor(Math.random()*c.length)]; | |
}else if(val.toLowerCase()==="v"){ |
##Writing your own Programming Language
###Status:Incomplete
Decide your rules,tokens, and expressions.
###Rules: Shorthand/Longhand for every token/expression. Example: "lt = less", so you could do : "5 less 10"
#Building a blog outline# For future reference
Original outline by PeeHaa
Storage | User Actions | User Data | Post Actions | Post Data | Comment Actions | Comment Data | Formatting | Utilities |
---|---|---|---|---|---|---|---|---|
Database | Edit Profile | User ID | Post | Post ID | Post | Comment ID | Markdown | Gravatars |
JSON for testing | Delete Profile | Date-time | Edit | Date-time | Edit | Date-time | Plain Text | URL Shortener |
Username | Delete | Post Content | Delete | Comment Content |