Lil-StarcastLvl 6
- macOS
DragonFireGames Thats such a fun name! "Huggingface" 😂
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
That could be dangerous, especially if there was no cure for the virus.
Lil-Starcast Want me to generate a website for you right now?
Sure.
Lil-Starcast Send me a prompt for the website content and another prompt for what style the images should be in
Hmm... A website on how too tame a fox and the style of the images should be... watercolor.
would that work?
I modified the prompt a bit and got this first attempt
DragonFireGames
Coool. Thank you!
Lil-Starcast You're welcome, want another one?
No thank you :) I just wanted to see the one. It's amazing what AI can do these days.
SquirrelGuy-5 classes do work by simply creating a pollyfill you can have most of the es6 class compatibility with little compromise by constructing an anonymous function then invoke it by using new <classname>
var Title = (function() {
function Title(sub) {
this.subtitle = sub;
}
return Title;
})()
var a = new Title("b")
this is how i prefer constructing my pollyfills for classes but a simple object does that just fine as well