Skip to content

Instantly share code, notes, and snippets.

View un1crom's full-sized avatar
💭
CODING A LOT

Russell A Foltz-Smith un1crom

💭
CODING A LOT
View GitHub Profile
@un1crom
un1crom / gpt3ashyperobject.md
Last active July 21, 2020 06:43
Ideas and Notes towards considering OpenAI-GPT3 as a network of HyperObjects (Expressive Maps)
/*(<seed> //write a nodejs javascript function to count to a number between 34 and 98 and say Hello World.
</seed>)
<stop>});</stop>
<codeType>javascriptBrowser</codeType>*/
var count = 34;
while (count <= 98) {
console.log(count);
count++;
}
/*(<seed> ////write a javascript function to say Hello World!..
</seed>)
<stop>});</stop>
<codeType>javascriptServer</codeType>*/
function sayHello() {
alert("Hello World!");
}
/*<output>{
"console": {}
/*(<seed> //write a nodejs javascript function to count to a number between 34 and 98 and say Hello World.
</seed>)
<stop>});</stop>
<codeType>javascriptServer</codeType>*/
function helloWorld(){
var i = 34;
while (i <= 98){
console.log("Hello World");
i++;
/*(<seed> //write a nodejs javascript function to count to a number between 34 and 98 and say Hello World.
//but try to avoid this error: Unexpected end of input
//but try to avoid this error: Unexpected end of input
</seed>)
<stop>});</stop>
<codeType>javascriptServer</codeType>*/
//but try to avoid this error: Unexpected end of input
/*(<seed> //write a nodejs javascript function to count to a number between 34 and 98 and say Hello World.
</seed>)
<stop>});</stop>
<codeType>javascriptServer</codeType>*/
//function helloWorld() {
// var i = 34;
// while (i <= 98) {
// console.log(i + " Hello World");
// i++;
/*(<seed> ////write a javascript function to say Hello World!..
</seed>)
<stop>});</stop>
<codeType>javascriptBrowser</codeType>*/
//alert("Hello World!");
////write a javascript function to display the current date and time..
//var today = new Date();
//document.write(today);
/*(<seed> //write a nodejs javascript function to count to a number between 34 and 98 and say Hello World.
</seed>)
<stop>});</stop>
<codeType>javascriptBrowser</codeType>*/
var count = 34;
while (count < 98) {
console.log("Hello World")
count++
}
/*(<seed> //write a nodejs javascript function to count to a number between 34 and 98 and say Hello World.
</seed>)
<stop>});</stop>
<codeType>javascriptServer</codeType>*/
var count = 34;
while(count <= 98){
console.log(count + " Hello World");
/*(<seed> ////write a javascript function to say Hello World!..
//but try to avoid this error: document is not defined
</seed>)
<stop>});</stop>
<codeType>javascriptBrowser</codeType>*/
//write a function that takes one parameter and returns the value of this parameter
/*<output>{
"console": {}