Lil-StarcastLvl 6
- macOS
birthdayboy224 Lol. Well you should have seen some of my first digital art... It was horrible. 😅
birthdayboy224 Lol. Well you should have seen some of my first digital art... It was horrible. 😅
ackvonhuelio um, lying about what?
SquirrelGuy-5 Classes don't work in code.org but a lot of their functionality can be reconstructed by making a function which returns an object:
class Rect {
constructor(w,h) {
this.w = w;
this.h = h;
}
area() {
return this.w * this.h;
}
}
is basically the same as
function Rect(w,h) {
var obj = {};
obj.w = w;
obj.h = h;
obj.area = function() {
return this.w * this.h;
}
}
Lil-Starcast without using money
Look there are plenty of free hosting sites, I challenged him to make a simple webapp to prove himself using github and render. I'll wait until he responds to that before criticizing him more. Also, anybody can make an AI image generator using an API.
DragonFireGames i guess so
DragonFireGames yes, but u need to have access to that API.
A common AI system is DALL•E•3
Where would u find an API for that tho?
DragonFireGames
could it just be
function rect(w,h){
this.w = w;
this.h = h;
}
rect.prototype.area = function(){
return this.w * this.height;
}
and
var something = new rect(50,50);
?
what i'm saying is i don't really understand why you needed var obj = {};
SquirrelGuy-5
literally just search one up
ackvonhuelio I don't think he's allowed to search stuff up. At least his sister isn't.
SquirrelGuy-5 Huggingface provides free API access
DragonFireGames Thats such a fun name! "Huggingface" 😂
ackvonhuelio That works as well, I just prefer using obj. Also, it makes it easier to use getters and setters.
Object.defineProperty(obj,"prop",{
get: function(){return "value";},
set: function(e){console.log(e);},
});
SquirrelGuy-5 Look, I can literally link a dynamically generated AI image:
Also when it comes to AI, I made a tool which generates websites like this:
DragonFireGames That is cool 😮
What if you could AI generate a living thing? XD
Lil-Starcast proceeds to write a tool to generate DNA
DragonFireGames The thing would end up with five arms and four eyes, and maybe an extra nose 😂
Lil-Starcast lol fr
though, a virus doesn't have too much DNA, so perhaps one could AI engineer a virus, especially an RNA virus since those are smaller