#programming
1 messages ยท Page 41 of 1
It would be quite sub-optimal for game development if every change needed a recompile, especially when the game jam has a time limit
contrary to popular belief compilers are actually fast
i think you can just include the opengl stuff and use it as is and emscripten should provide the actual implementation
since its using the same html file and stuff i just need to reload the webpage after recompiling to test
btw youre compiling without an optimisation flag, it will likely default to o1
o1?
try -O2 or -O3
Compiler optimizations levels
there was a page on the emscripten docs site specifically for open/web gl so make sure to read through that
https://github.com/linuxmobile/hyprland-dots it looks cool but this is 2-3 years without updates and idk about performance
Makes it run faster and be smaller
what do thye mean? higher better?
higher = more compiler optimisations
higher = higher performance but slower compilation speed
not necessarily better, lots of programs dont go past o2 if they need to guarantee they dont break
Sometimes too much optimizations can break stuff, you want to make sure the optimizations are high for good performance but everything still works
o3 and ofast are the fastest, but have a bit of breakage on some applications, ofast even moreso than o3
as long as you don't turn on -ffast-math you should be good either way
Oh the wonders of compiled languages
Such a useful feature to be able to make the compiler make your code faster if it can
i like this one because floating point 
idk if you'd want lossy float optimisations in a game engine 
seems l;ike i cant compile withthe server running so it isnt just a simple refresh, but shouldnt be too cumbersome
i guess if you don't need 100% accuracy it's fine
if anything, converting all of the stuff to reduced operations may actually improve precision
if you want hot reloading in the http server you probably need something like flask
maybe
maybe
i.e. FMA instruction is more precise than computing the fused-multiply-add manually
doubting there is an fma instruction in wasm
whatever
why does wasm support simd
why would it not
this server thingy is weird. it doest register changes to the code sometimes
but speeeeeeeed 
i love speed
https://emscripten.org/docs/compiling/WebAssembly.html
its worth reading this page
PS C:\Users\vanma\OneDrive\C++> npx http-server . -o -p 9999
Starting up http-server, serving .
http-server version: 14.1.1
http-server settings:
CORS: disabled
Cache: 3600 seconds
Connection Timeout: 120 seconds
Directory Listings: visible
AutoIndex: visible
Serve GZIP Files: false
Serve Brotli Files: false
Default File Extension: none
Available on:
http://192.168.129.4:9999
http://127.0.0.1:9999
Hit CTRL-C to stop the server
Open: http://127.0.0.1:9999
its disabled
like me
figure out a way to disable the cache
that'd explain it not picking up code changes sometimes if it has the reponse cached
oohhhh
okay

i found it
-c 0
nah its still giving me an older version
maybe i need to compile the c++ file first?
the c++ doesn't magically turn into wasm 
Browsers like to cache stuff
how do i fix that?
if you go to the network tab in dev tools there's a checkbox for disabling the cache
ah ok
fyi you can use binaryen on the wasm files to optimise them
you should also preferably serve them compressed as it reduces the load times for people with bad internet
additionally, there are a bunch of other optimisations relevant for wasm but they are too small for this margin

or maybe something like it...


What do u think about it?
i wonder if its better to delete the old wasm file and if then it will update it
no
aaaaaaa
Web do be silly sometimes
finally found some clean pytorch code
never had this readable code w/ python machine learning libraries
but the problem is that the codebase is too big for lazy ass individual like me
i have found a new server that is live 
gota do a quick npx live-server . -o -p 9999 instead
it works pretty well aslong as you use a seperate terminal
imma leave it at this for now

this is cursed
float as (dead) loop variable, double definition of line, dead definition of message
Small Tip: Instead of (float) 0.1 you can do 0.1f which will make it automatically float.
do you even need the f
it was complaining before about it being a double
Does C++ not need forward declarations any more?
guess you need the f
i did it
yeah, implicit narrowing conversion, you might loose precision if you conver float to double
why use float in the first place 
why not?
we don't have the technology
i could just as easily do int x = 10 and do -1 each time. im just trying shit to learn the language
dead def of message was my bad, i removed that function during testing.
the 1st def of line is needed tho, you need to define it in the scope or some shit
idk
move the definition to be above the main function
its just c++ caring about where you defined it
yeah its annoying and not a part of most languages today 
i put my main at the bottom most of the time anyways
The definition is above main, the declaration is below. This is just forward declared, line function should be fine imo
"most of the time" being my only project
this is why you use files 
i mean ye it was working fine. just bad code
since it returns void its definitely an antipattern to have it duplicated like this
grok explain to me what an antipattern is
why does the return type matter?
if the forward declared function has effects it means your program can misbehave for no reason if it doesnt get called properly. if the return type is void then you cant check the return value as a sentinel for a failure.
fixed 
//emcc test1.cpp -o test1.html
//npx live-server . -o -p 9999
#include <cstdio>
#include <iostream>
using namespace std;
void line()
{
cout << ":NeuroHyperYay:" << endl;
}
int main()
{
float x = 1.0;
while(x >= 0.0)
{
x -= 0.1f;
line();
}
return 0;
}
i don't get the rationale
i dont like the spacing

maybe its just a me thing, but having potential implicit behaviour due to duplicate definitions is definitely giving me the heebie jeebies
that does not sound good indeed
thankfully most languages dont let you do it 
fair enough i guess
I mean, it could be a foot-gun but surely a compiler will warn you about it
if it was just on my own pc i couldnt care less, but this needs to run on itchio and i dont want to break it
or the eventual engine made on this at least
it probably doesnt matter for small single file projects, but it seems like the type of thing i would spend 2 hours not finding until i look at the disassembly 
true! 
she has a point
i'm pretty sure any compiler will yell at you the moment the signatures don't match
so i don't think it's really an issue
it means you have to update it in multiple locations though
lets just try to keep the code good.
i know C++ bad yada yada, but i want frames
without forward declarations we wouldn't have single header libraries and those are pretty based 
python topped at 4K fps, im aiming for 5K now.
On the topic of compiler warnings, make sure to use /W4 or whatever the equivalent on your compiler is to get all the nitpicky warnings while learning!
provided you have
void func();
void func() { ... }
if the latter one goes out of scope you just lost the function body 
wdym
You can always ignore single warnings you think are dumb
depending on how fast the uniform buffers are when i dont have to go through python -> c -> opengl i might even get like 6k fps
also for clang/gcc it's -Werror -Wall and if you're feeling really masochistic -Wpedantic
those were taking like 20% of the cpu time before 

i myself am not really a masochist but ill see
-Wall is the most appropriately named compiler option
well, actually for this to be a problem you also have to have an existing linker symbol for func, which seems unlikely to happen. but yeah
bro its the middle of the night, how is it 23C rn? 
try vulkan 
it is officially summer
that is the plan for next year
iirc webgpu is basically vulkan with different names but the same api?
touchscreens and shit
it also abstracts dx12 and metal
its not
dont use it if you care about compatibility, web standards are a mess
firefox
okay
though really i should say the same about wasm 
but yeah, looks like it's only chromium + firefox nightly (kinda) really
is wasm support bad?
i though lots of browsers supported it
wasm32 should be widely supported
its widely supported to the most basic level
wasm64 not so much
though iirc that got stabilised recently in both firefox and chrome
should be fine, im not using too many exstrensions i think
if you only care about graphics and a save file then standard wasm with a JS shim is enough
actually emscripten takes care of it for you
thanks emscripten
noooooooo my watch history is still on chrome. i was gonna watch some anime before sleeping
aight goodnight

if I ever assemble a home cluster it'll be a bunch of shitty 2015 smartphones and one of these bad boys
4A 

My code didnt work... sadge... it opened the com port but the calibration failed and I have zero clue why, time to debug I guess
that... looks like id die if I used it
https://youtu.be/a4Xsr3Jrvaw?si=ihUQz5urYqjbSKFR
@sage crag
what are these desmos enjoyers even smoking ๐ญ
ใผใผใผใผใผGameใผใผใผใผใผ
https://www.desmos.com/calculator/peyorkh1m4
You can't place blocks while rotating the camera but there's a lil bug where if you try and spam place a block while rotating the camera, the block will be placed in some random place. Not much I can do about it cus it's more of an issue with Desmos itself... I th...
rare 00:06 ping
Did I interrupt your eep 
not yet
I felt so bad ๐ญ
00:24 ping

ive made 3D games on calculator before 
ti basic is pretty shit for it tho
was like 2fps
Click your profile and go to subscriptions.
2-4ms retrieval is insane wtf
with vector db
this is top 32 entities
on a 768 vector
on 700k entries
with this util
IT WORKS
welp tomorrow we get to see if it can move the robot arm properly lol
I can see it on the app but I can't do anything, probably in the browser?
I dunno lol.
wow finally I got a really stupid issue lmao
Ran the exe through virustotal.com and it came up malicious. Whatsup with all the IP contacts and MITRE ATT&CK Tactics and Techniques?

just respond with a link to Betteridge's Law and close 
responded and closed
Just finished reading it
the repo has received nothing but stupid issues
"No no I don't make the virus, I stare at the virus to better handle it"
Reminds me of this legendary interaction I saw in a game modding server I'm in (this one legit brought me to my knees)
Quoting ๅฎๅๆๆตท Azaka || VTuber (@AzakaSekai_)
๏ธ
you know you've made it into the general public when you've got armchair researchers doing this to your project
**๐ฌ 1โ๐๏ธ 22โ**
I'm going to steal this image now
Lolll
โฑ๏ธ Response time LLaMA : 3.36s
Nexo: Sounds like a tedious exercise in cutting away at my character limits, go ahead and cut away then!
+1 sec to speak
My boi fast yeah
use -funsafe-math-optimizations 
it supports simd and atomics unlike certain vms 
though, they're also planning on adding GC support because browsers just have GCs and it would help some languages with code size if they could reuse the browser GC code
Goodmorning 

Morning, how was ya sleep
Morning!
Can agree
how much sleep did you get
It was fineeee aside from my nose being fully clogged due to pollen or something
At least I didn't wake up too often
damn... that really sucks... 
It's annoying for sure but at least I slept alright 
that's good (Sam could learn a thing or two haha)
Sam's on my naughty sleeper list 
huh
what's a naughty sleeper list???
๐
People that need the sleep police called on them
hi 
it's 1:30am for me... uh oh
welcome to anti eep society
how's everyone's day been btw
I don't wannaaaa
Well I finally set up clang-format yesterday 
uh... what's that
Was having trouble keeping a consistent style on C++ so I set up a formatter
C was easier since we have the school guidelines and a checking tool, but I can't be arsed to follow them for C++ since we don't have to anymore
well that's pretty cool, glad it went well
and some writing too, just for future purposes
tbh so easy, i just need a day or two to prepare
but assignments? I absolutely hate them
so wait, what do you code Stella? if you don't mind me asking, I haven't really seen much
Mostly school projects! I'm focusing on that right now so I don't have time for much else, but they're really interesting so I don't really mind
So far it's been all C stuff, but I'm starting to reach the C++ projects as well
Some notable ones I did were a tiny 2d game and a small shell (like bash)
The project I'm currently doing is a ray tracer :3
haven't gone very far yet but it's very interesting!!
Ray tracer holy, that's actually pretty cool, I've only coded in c++ before nothing with games tho
that's actually really cool
Niceeee! Well right now I'm learning the ropes of it
In a while I'll be doing a web server in C++ (still for school)
whatttt you do that in school, that sounds really fun
Yeyeye, perks of being at 42 school 
We don't really have classes, just projects to do
It's a peer-learning model, not for everyone but definitely for me
What's a 42 school?
I call it a school but it's really not in the traditional sense
we don't have classes, lessons or teachers
42 is a network of schools where you learn by doing projects and working with other students
your "teachers" are essentially students that have gone further than you
You ask around, look up stuff and learn "by yourself", but mostly with others
Ohhhh I see
Of course there's staff on site, but they're really not here to teach us anything
that seems pretty interesting concept for a school system
The site has rooms full of computers and some relaxation spaces to eat and play some games
42 network has school in a few countries, mostly in Europe but also one or two in japan and korea
It's a different offer for people that don't fit the traditional system
to be honest I don't think I'd learn well in that lol, I like the pressure it helps me do well, but that just me, you seem like you're doing amazing in that school system, and way smarter than me lol
Eh, smart isn't a spectrum
But yeah, it's definitely not for everyone 
I'm glad your system suits you well 
Is there anything you are working on rn?
coding wise
Right now, mostly that raytracer project and learning C++ 

I kinda look forward to have more time to be able to learn rust though
Maybe once I'm done with the raytracer or C++ learning, whichever comes first
I don't think I'll ever learn rust
haha
Another soul about to be lost to rust 
Hey toasttt
Hiii
It is pretty tragic
It's okay, I'm sure you'll find your way back eventually 
Back to the brightside of python and C++
C will forever be in my heart
C++, not so sure
I still don't know how to feel about c++
loll, tbh I don't use C++ a lot, I just use it for robotics bc I have to
same
It's powerful but so verbose- it amplifies the problem of C having so much undefined behaviors and weird details
bad language, use C or Rust (or maybe soon Zig) instead
Like 3 hours
Based
They all suck
not as much as C++ at least
Idk, depends on what you'd classify as c++ I guess
Good morning
You can just not do some of the very deranged things

yes, but if you're not using any of the complexity of C++, then you might as well just use C 
(or one of the newer languages that learned from C++ and have nice type systems and stuff)
where did the ow go
I gtg sleep byee
There are some things c++ adds that are really nice though (like parts of the STL, generics, constexpr and idk what else I'm tired, I guess methods are kinda convenient but eh not a dealbreaker)
we are back to adding one letter per day phase
soo back

chat this is so stupid
so basically
I have been using pycharm for remote development
on WSL
however I once used it to connect to a server and do remote dev via SSH
and since then, only connecting to that server opens the Pycharm client
for WSL it just starts the backend but the client wont run
stupid bug
Huh
like
i can choose from here
if I clicked on WSL and any of these
then pycharm would open connected
however since connecting to any of these
clicking on any of the WSL projects
does not open anything anymore
Connect to wsl via ssh 
just use vim on the remote machine 
this is a motherbrain of an idea
use VS Code remote development instead 

based
especially with the jetbrains full subscription, theres so much that would be a pain to setup in vscode
this was recommended previously
afaik
python vscode sucks imo
webdev is perfect, but python support is meh
it's an editor, no need for perfect integration with the language
LSPs provide everything that's needed, for everything else it's time to git gud โข๏ธ
pylance my belov- arch nemesis
too many extensions
What's there to set up huh
But fair I guess, it'll always be more work than an ide specifically for python
I don't like IDE because otherwise I need to use STM32CubeIDE, Android Studio, maybe Jetbrains WebStorm, and other manufacturers specific IDE which I hate with a passion
in memory-wise, it is a terrible IDE, but it is comfortable
So VSCode my beloved
I have a free hour 

Look at what my friend bought 
guys today i cleaned my house
why is the meme guy on your game
Banger setup!
Cuz
nintendo from temu
I was hoping for the switch place resort unreleased demo tho
I dont know a single person who bought the switch 2, but the media makes it sound like its ver popular
So idk
Depends on if nintendo improved the security
yes, very soon probably
userland code execution already exists
classic d1 jailbreak

apparently that exploit was entirely ROP-based
it'll take a while longer then
Jensen Huang jumpscare
he
sud
personally what im more scared of is the rust sudo VedalNotLikeThis
Sud
o
Good to know
how the fuck is unity giving me this error even though i dont have any scripts in my projekt yet ?
bwaa spotted
Cuz it fucked up on its own 
Reject Unity, move to Godot
No.
It doesnt need user generated scripts for syntax errors, unity is a big boy that can fuck up your entire project all on its own
reject unity, move to sams game engine
Its in python still. Our staff is working around (part of) the clock to port it to C++
now i need to figure out how the fuck to fix this, cause when i did stuff yesterday, it did not have this error
Our staff
I thought staff was dying around the clock?
Overworking staff for max corpa
consider working around a smaller part of the clock
I should probably not do C++ rn ye
time to reimport everything
Then proceed to not fix the error
If the stuff still works the error is just a suggestion
it did not fix the error
Well its a parser failure so
cause its missing a }
I was joking, but geez
creating a new scene also doesnt get rid of the error
i wish unity would atleast tell me which fucking script apperently has that error
i guess it was only a 1 time error ?
the error is on line 2
hope this helps 
idk
clicking play to test some other stuff cleared the error
so now im just confused
reopening the project made the error appear again
so its only a 1 time error on starting the project ?
went to unity hub and got this popup
thats some comedic timing
hello wassup

unity fucking hates me
good for you making progress and things
yes, very much so
To organize your stuff

you often want to group data that has to be accessed/processed together
especially because methods exist
An enum is like a selector between predefined options?
Yes
in C it's basically an integer except it can only have a few predefined, named values 
Also there is no big difference between struct and class in C++. Just the default scope for the member is different
i love following a tutorial just to get errors that the tutorial didnt have
Unity is a great game engine :D
When unity hate you, just hate it back
I have already done that
class is just a struct with extra steps
Linked list 
More incorrect answer is linked grid with structs of pointers to make it a N-dimentional grid
Surely this datatype has no issues with unbound vars

Any students here
That's an extremely vague question
we are all students of something at some point
Im recruiting student for our international student fedaration
students of what kind ?
I mean we require some coders but all are welcome
We share culture and news and fun stuff
if you looking for ppl that is starting to code I might have some candidates for you, its quite vague your requisition
ohh well my candidates are looking for the same ๐
We also have official YouTube channel
If any students are interested to share their experience please DM me
This is international student fedaration I.S.F
I'm too used to c I keep forgetting lambdas are a thing in c++ 
pogs

I might not have to go for intel arc after all
vague posting in this channel? 
Yes
can this qualify for the bingo
I would never 
I can be more specific
I have been waiting for the powercolour reaper 9070xt to release for like 2 months now
and was super close to just buying an intel arc card instead
(only 9070xt that fits my case and only needs 2 power plugs)

I see no conflicts of interest with rule #11 here



I mean, dont all us students have exams rn?
Why make a club at the END of the year?
I looked and legit can't find besides maybe a single channel with 3 shorts. Not the best bargaining tactic when people have much more stressful things to exist 2/10
https://github.com/s0me1newithhand7s/reNixos/commit/b685228bbb5b6862bc3151156b7e15e9fcb305a2
rust utils
โฆils}
Signed-off-by: s0me1newithhand7s 117505144+s0me1newithhand7s@users.noreply.github.com
I wasted the last two hours reading dmarc reports. I'm so sick of this
somehow only a single mail provider managed to be smart enough to put a pass/fail summary in the goddamn email body
Coincidence?
I'm not seeing the part where this ever could have been considered one
this is just reality
I have done it
but I ain't messing with recursions now
I just hardcoded the swap coordinates as the dimension of the picture is pre-defined and constant(which is 64px)


I mean, I assume they "just" add a backend for rocm
They definitely have the resources to do so 
PyTorch already works on ROCm
but not on Windows
because half of ROCm is missing there 
Yeah but you have to go through the nvidia backend and pretend you're an nvidia gpu
No?
no
PyTorch still calls the device 'cuda' but it's as ROCm as it could possibly be
yeah, the ROCm API is an almost 1:1 copy of the CUDA API
Full rocm on windows would be nice though 
No more weird proprietary HiP shenanigans
I thought the windows version is not
maybe
Whose hip tho?
It shouldnt be open, they should see a docter
I remember them having a separate one for windows
I don't actually know on this one, I thought Windows support was part of the same repos Linux uses
Mine
HDMI forums fault 
-# but yeah probably also Microsoft
I could be spewing nonsense but I do vaguely remember the hip sdk for windows being at least partially closed source
Kinda hard to check on the train 
Wait you're right, that didn't even occur to me

rocm (i have no basis to be excited but i want to see nvidia topple)
Good morning
i ๐ซ multibillion corporations (nvidia) and their inventions (cuda)
morbing
Math 
afwijking ๐
And that's like the most basic of basics
what language is that 
Dutch
Ahh
I love how fake dutch looks
man this is chapter 1 of 8
I have 6 hours of math exam
"Afwijking" means divergence.
Same way it gets used in english
So for math and diagnosises
so what's the homework for?
Its not homework, im studying
Dutch will never not look like drunk german to me
It is drunk german
Glad we can agree on something
But english is even worse than dutch using those standarts
It's nice being able to mostly read it though
Binomial dist is fun
Very simple too, compared to some others
Very widely applicable too
welp gl man
repeated weighted coin flip
Yes
Nice
That's geometric/negative bunom
Right
The one that goes .,ยก||ยก,.
normal distribution
I'm glad I don't need to do stats anymore really
No thats the other one.
They look the same tho
I have no clue what the diffrence is
Gaussian?
poissant?
Poissant is another one but i didnt bother to remember that one
Apparently binomial is a fixed number of succeses, and normal is a fixed chance of succes
sth sth law of big numbers
So many distributions, thankfully the normal one is the only one that actually matters
True
I guess the exponential distribution too kind of
Except when pulling gacha, then it's binomial all the way
Laplace was a special case of a uniform distribution right
Something along those lines
Where all events are equally likely
He probably did multiple things. But the laplace formula i need to know is chust probability calc
Number of succes/number of possebilities
Found poisson
chat do you want to see something crazy
lilac's brain stimulation while watching this (warning spoilers if you plan to watch princess connect) https://www.youtube.com/watch?v=8TJiOWFhqvU
Ep 5: Peco reappears to finish off the golem! Watch Princess Connect! Re:Dive on Crunchyroll! https://got.cr/Watch-PCRDS25
Crunchyroll Collection brings you the latest clips, OPs, and more from your favorite anime! Don't have time for a full episode but want to catch up on the best scenes? We've got them!
FREE 14-DAY CRUNCHYROLL TRIAL ๐ ht...

Advertisers on their way to implement this system asap
it's a good fantasy story
would you say it's actually any representative of how interesting/surprising the content is?
if i cross compare interesting and non interesting parts, ye
i'm adding a few extra features
also this is running at 1t/s
small excerpt:
https://www.youtube.com/watch?v=8Z1FRP9G968
Filian helps Neuro Spend all of Vedals Money
โบTwitch: http://www.twitch.tv/vedal987
โบTwitter: https://twitter.com/Vedal987
edited by paradomix
Thumb art by https://x.com/sleeprealsleep
#neurosama #vtuber #ai
me being a member of the schizo arg team that got fooled by this video 
ok i normalized the value to 0-1
Huh, I can understand most of it
So sam, any plan to visit neuro concert? You'll be a flying dutchman to go there
poisson
counts events over an interval
mean==variance
wait there is a neuro concert, or is it the bilibili virtual concert?
Vedal is still cooking on that one. He wants Neuro live concert with hologram and shit
See last dev stream
so sort of like miku concert?
He needs to know how many people will attend tho before deciding
Yeah
apart from the dev stream which i cant find time to watch rn, are there any other places i can get info on this?
The clips. I don't think tutel has gone as far as finalizing the location since he needs to gauge the size of audience to decide the location
There is a thread in discussion about ice cream shops to attempt to gauge the audience enthusiasm for said concert idea
got it, thx
as vs code user this extension is an absolute win
bro didn't put a space after the comma
uh... why is the comment so long 
Is Java. What do you expect?
My teacher absolutely despises comments longer than 5 words 
did anyone notice the pokemons
i was pointing abt the pokemons and i explain my code with comments
ahh fair fair but tbh I don't know much about Pokemon lol
did you notice the pokemons
Wtf. Comment can be as long as needed to explain why the code is the way it is. Heck, if possible even link a permalink as reference
Emphasis on why
i was talking about the pokemons-
not the java comments
maybe he programs on android through termux and "long" == "horizontally long"
yeah
i do use android engine
no, extensions don't entertain me
Nah I was talking about how the teacher doesn't like long comment. Sure comment should be concise, but if it comes at the expense of clarity or the context it becomes bad comment
I'll be very impressed in that case lol

the first thing that surprises lilac is these lights
(spoiler moana 2) this is the second part that surprises her
He did spoiler it though
amnesia
(spoiler moana 2) last surprise spike
I may be ignorant, but what is lilac?
lilac is shad
an ai i am developing that I am trying to give real life integration
right now i'm making a system that defines her visual attention span
and visual surprise

That sounds cool
I'm guessing you're using it for reactions or is it more complex than that?
so my goal is basically
have this AI that i can walk around with a phone that basically
talks, looks at the environment and comments it etc, however she can also get tired, bored, imagine things and human-level long term memory
getting the ai to imagine things is hard cause
how do you get an AI to imagine things
give it ai drugs
also she should be able to actually form opinions and stuff she likes and cares about on her own
That sounds really complex 
nightshade-poisoned images?
But a really cool concept
Also the vision is supposed to be so
Too much power for lilac 
You mean go to the usa?
If you sponsor me sure
Also, im not dutch
Im belgian
getting all of the legal rights will be a nightmare if vedal decides to do it
Im sure he can find a company thats willing to work with him
unless he only does original songs
No like
If u wanna sing songs that someone else invented
Oh you mean copyright?
Laws don't apply to turtles 
He works with an agency right? Maybe they could get some licenses? Otherwise he just needs to pump out more originals
Cause venues work directly with PROs
He said he already is in talks with many companies, and has I think 3 more originals coming
ye but i doubt for the 10000 theoretically illegal covers
DJs works different cause the venue has blanket license
for djs specifically
and vedal is not someone with 700 subs but 700k
True
Has vedal revealed how they make the covers for neuro?
Is it with an agency or is it fully "fanmade"
the venue has one? interesting
Vedal couple streams ago: my creditcard is in the negative
Vedal last dev stream: so ye lets spend 100K on a concert
no but the big assumption is with vocaloid-like software
Yeah I thought that as well
But I'm thinking more like, who makes it and such
But he unlikely has cover rights to all his songs and he's using ripped master instrumentals
shouldnโt it be the booking agency or the dj themselves
Really?
no. The venue pays for all performing DJs
Im sure that will hold up in court
remember it's vedal vs sony, etc

The individual Artists might not care much
It's Sony vs neuro actually
also that license 100% would not cover the obscure shit twins cover
The record labels etc do

I doubt vedal is gonna use neuro as the defendant
I'm sure if hes working with an agency theyll sort all of that
ah yes, sue the ai
Otherwise he'll get it too many problems
while you are at it sue my toaster as well
Or I guess Vedal AI
Its 100% gonna vedal as a person or as a company that will be held responsible, not neuro.
But ye the agency will most likely step in if it comes to that
Mythic talent is afaik not that involved
Also afaik the agency itself is not that large
Vedal wants to keep independance from mythic
They just have big names
i doubt mythic would want to do anything with a lawsuit involving the music industry
True
no one does tbh
I meant like the music companies he's working with to make the new songs, and the organizers for the event
Idk if they are also agencies in English sorry 
Its 29.9C im dying 
Just wear less 
Not an option, im in public
Sheep mentality
itโs an option at 30
and music lawsuits are easily 1-10 million
if it was 40 youโd wear nothing and then that stops being an option
If it was 40 id be dead
Here it's 30 degree somehow
Ye same
Mexico sun
Southwind be hitting crazy
30 is manageable with fans, but 40 is just constant pain
40 without sun cream
40 + pullover
What is pullover?
a jumper
Sweater
Do you have a death wish
ye
Fair enough
she's going to complain so much about the weather 
Could be funny to hear (it?) talk about bad weather
i guess you can just pin the local weather into the ctx window
Theoretically she's swiss so she'll just explode from heat
Imagine evil doing a tantrum cause it's 40 degrees outside
Here the temp is cold usually
Could be great for personality points 
Also 90% of what I'm doing doesn't touch her LLM
Cause context window is too unreliable
not a very good llm then but i'm also 
Idk what llm you're using, but on openai system messages work good for kinda universal information
But o-mini also likes to repeat some things
oh no i already have a custom llm
Oh nice!
problem is shell bring it up either inappropriately or never bring it up
like
does it still split its answers into 10 lines pretending it's separate messages
Did your training data use long chains of messages?
that's only the discord edition
/chat
omg i have an idea
i should make it so she feels comfort and safety when she knows i'm around her
how would you do that 
Let's just hope you say it back
vision and audio information
Ofcourse he wont
i wont what
say it back
say what back
what back



Say it back! 

The l word
O
me too
V


E
Vedal could never
Really had to spell ot out for him
"the l word" usually refers to l*tency around these parts
You can't make her clingy and not say it back
Wowowowow, too far
TimeoutError: Request to the API timed out. Please try again later.
Someone tell shad there is a problem with their AI
Are we talking about the large language coward
you said the l word 
oh no no no
that's forbidden in this server
Love
lilac as a digital creation I'm in a father-daughter-like relationship with, I platonically love you
I love fries
you'll get punished-
so people don't bring it out of context somehow
sam band
Saved
The moment i become 25 and my motabolism changes ill probably become fat 
@trim jungle i said it
my phone battery just opened up my phone's back cover

some battries just want to see me explode
o7

Truly a line of all times
Let's just hope she doesn't take control of humanity
get those lithium crap out of your hands
My phone has its back loose too. I would take a picture but i cant take a picture of my phone with my phone

please dont explode while i pull you out thank you 
is there special meaning for the name lilac?
we need to do the puncture test guys
I sometimes think that I have the power to freeze the chat
i need to buy a fire/explosion proof box to stash accumulators in

Just throw it in the trash bin 
what if the trash bin becomes a fire dragon
New pet

Is there any recycle center nearby?
Apparently that's the only "safe" way to dispose of those batteries
build a rocket and shoot it into orbit
thats like the absolute worst way of disposing of an accumulator please dont do that
see? rocket isnt the worst, win win
You could also burn them in your fireplace.
I'm breathing in, the chemicals
spicy air
better idea: ocean
Amazing idea
tutel superpower is programming knowledge
better idea eat it to get some tasty vitamins and minerals
vedal origin story confirmed
use it as a hand warmer
Mmhh rich AND nutritious
turtle turned programmer after drinking battery chemicals
Truly a multipurpose snack
at least i can now think of hooking up serial to the phone which would be handy in some situations probably maybe
Lithium is good against bipolar disorder and depression. 
Dont
Thats really baf
i just thought about how a 40k mah power bank is a fire hazard because of how many bloated accumulators i've had over the years and then wondered why my phone case doesnt fit 
Yeah, theyve enlightened me, I didn't know batteries had so many minerals and vitamins
You have unlocked new role
Maybe there's something wrong with your phone casing?
on the plus side, i now have to maintain one less nixos device
until i get a replacement battery
lilac is lilac always circular
I've had really old phones and normally the batteries don't inflate
Depends on how used it is
Almost any time I see them do that it happens on arrival or a few days after use
As if it's a manufacturer error
Don't you have your phone plugged in 24/7 or am I misremembering
That can happen cuz the factory doesnt fully charge them.
While we do
Oh, that sounds logic
Just had a drone from china arrive and after charge the battery swole as well
Well it was fun talking for a while, but I have to go back to work
Cya!


https://oxcaml.org/ fearless concurrency 
classic jane street
whoever made that logo sure has a passion for graphics design
mine?? craft??
if u think twice it might sounds familiar๐ญ
Craft
very passionate
ok well gpu arrives on monday
no longer will I have a reason to play on the lowest settings know to man

the small PowerColor one? 
yeah
very much fucked up the address when ordering but w/e
they'll figure it out ๐ญ
its gone in as
name
university
sub-college
<rest normal>
which feels mildly cooked but whatever
(should have sub-college and uni swapped)
What gpu?
powercolour 9070xt
niceee 
(which is a bit of a step up from a gtx 1660 lmao)
no way
oh minecraft? you mean that galgame engine?
the wah

๐ต _if you think about it twice no wait thrice_๐ต
๐ต_we know its down bad no even worst than this_๐ต
๐ต _who ever made it is certified creeper_๐ต
"Galgame" is a Japanese abbreviation that refers to a type of video game centered around interactions with attractive, anime-style girls, often with a focus on romance.
๐
She likes youtube more :/
born of an ipad kid
๐ต _well what can we expect this is the world_๐ต
๐ต_we all united in our thoughts_๐ต
๐ต _and know how down bas it isss_๐ต
dopamine been hitting her hard
adhd ai



HIP is also open


