#programming
1 messages · Page 106 of 1
The only thing i think about when i hear belgium is brussels, fries and tomorrowland
So, #programming has broken multiple rules multiple times 
No shit
as usual
Mostly the topic rule i reckon
Must've been caused by the lunacy by a device called computer
Nahh programming is just a genchat for people with a very specific set of similar interests mhm
Wait hold on.. isn't talk about road infrastructure not also technical?
So hypothetically... if i would say belgian roads are bad.. it would hypothetically be on topic
Everything has some technical aspect to it
our roads are bad, but only compared to european standart
Fair
Dutch roads are also not always the best if imma be honest
help 
so like ocr yes?
it has some shit sometimes that reads weird characters
therefore i try to do this
because there is an "i" symbol after their names
i wanna remove it from the ocr reading
the code removes the parenthesis
but it doesnt remove the i
first world road quality discussion 
Try to change the char_check before continue
this part is never reached ```c++
if (c == 'i') {
continue;
}
Why do you even need to remove i, if i may ask?
Oh right
The c == 'i' happens on the same iteration
yep
im trying to make it so the ocr jsut reads the name
So c cannot be ' ' || '(' and also 'i' at the same time
but theres an i there for an info button for their stats
how come?
the check being in the same iteration should be fine since presumably it'd save the value for the next iteration 
you're checking if c == 'i' after just having set char_check = 1, which means c == ' ' || c == '('
yeah thats what i thought
He is changing the check again after
On the same iteration
oh what am i blind
i assume the check interation happens once
next iteration skips the first if
then goes to the nested one
It does not
OHHH it never reaches
char_check = 0;
right?
because the continue happens right before it
no
you set it back to 0 in the iteration before it's i
No, it does not work precisely because it reaches that
but if i remove that
you're always setting char_check back to zero so c++ if (c == 'i')
it will remove all "i" in the ocr
never happens
You should move the char_check to inside the if
if (c == 'i' && char_check) {
char_check = 0;
continue;
}
sth along these longs should do the trick i think?
Yes
i'll try
oh shit it works wtf
thank you guys
but like idk why my old code didnt work
c != 'i' when char_check == 1
For every iteration:
- Check if
c == ' ' OR c == '(' - Set flag if those conditions are fulfilled
- Check if the flag is set
- If the flag is set, check if
c == 'i'<--- This is impossible because if the flag is set, c is either' ' OR '('
me too
sorry sorry this is the last one fr but how do i filter out these unicode letters
i cant paste them into visual studio because i need a package or something
im assuming i turn char into an int
but idk the ascii list
you can just check each character code and see if they're in the bounds of ascii
char is already a number
singed 8 bits
signed*
or like
c > a(int) && c < Z(int)
char is.... complicated
something like that yeah
It may or may not be signed
alr i'll try
But assumed signed is a good rule of thumb
made a custom binary format for something while cramming what were essentially floats into 8, 6, 4 bits... because surely the data is too random and compression won't save me? 
oh yeah, i just assume because i define unsigned 8 bits as 'unsigned char'
int main() {
string yapped = yap();
if(yapped = "") {
return 1;
}
println("Ermm i actually don't care!");
return 0;
}
Did i do it right?
(the data was not, in fact, too random)
Just use flatbuffer man
I detect a using namespace std; in this code 
i considered it but what's the fun in that
No!

Yap isn't even a function lol
if (!(c > 47) && !(c < 128)) {
continue;
}
chat it still doesnt filter the stuff out
is the if wrong
As long as it is not on a header, go wild
struct RedactedFrame {
min: u8, // 6 bits
max: u8, // 6 bits
density: [u8; 5], // 4 bits x5
dom_freq: u8, // as is
} // total: 40 bits (5 bytes)
the if becomes "if c is less than or equal to 47 and c is greater than or equal to 128" which is not possible.
if (!(c > 47 && c < 128))
If i wanted it to be actual working C++ code it would be bigger
yeah that seems to be it
Also why would i use println when std::cout exists

what uhh ascii is ' '
0x20
thanks
ur welcom
if (!(c > 47 && c < 128) && c != 0x20) {
continue;
}
``` IM SORRY
im so dumb
it still doesnt work
if(!((c > 47 && c < 128) || c == 0x20))
wait i forgot '\n' is a character
last log(n)
The ifs just getting longer lmao
faster
and easier to use.
why are we comparing ascii chars with hex
Honestly, just use isascii()
why not? 
it removes commas too
cuz 
if(!isascii(c))
or just bite the bullet and use regex
fuck it im hard coding it

longest if condition
i can assure you i've written conditions way, way, way longer...
who ever decided that code needs to be "maintainable"
just vibe it out and get job security included for free
if (!(c > 0 && c < 128) || c != 0x20 || c != '\n') {
continue;
}
chat i cant help it im stupid
what am i doing wrong
it should work
if(!(isprint(c) || c == '\n')) should do the trick
okat it worked
never used this but its kinda useful now that i think about it
esp for ocr shit
i hate (!( with a passion, very much like i hate nested if statements. i try to unwrap always
do i just hate nesting
Well, you could also invert the logic being done inside of the if. In this case we do the check and negate it because we don't want anything outside of it
yeh if (!isprint(c) && c != '\n'))
does the same thing btw in case someone misses that
theres like no way i can make this cleaner right chat
like this is the best way to code this surely
can't assume anything, too much sleep deprived people chat here
btw this removes all non-space chars || c != 0x20
Man, if this was JS I'd just do ['a', 'b', 'c'].includes(c)
ok maybe nesting if statements is fine

yeah it did
wrap all of those && char_check in a if (char_check) { instead
okay this entire if essay is now messing with the rest of the text
Lst Lgin
i might just give up on this for now and eat

so i want the weird shit after their name to disappear but the shit that appears also appears in the rest of the text so i want the FIRST iteration of the weird char to go away and it to stop by the NEXT itereation but then if i do that it then stops working for the next peoples info
aka my brain is fucking exploding
If the file is not a secret, you can try sending the file here
the whole code?
No, the file. As in, write the raw output of the OCR to a file
ever heard of a switch statement?
TRUE ACTUALLY
i love those
but maybe forgot about them at 4am

they're CHARS a switch statement WOULD work
wait but would that fix removing "o" from the vocabulary of the ocr
since i just want the first o removed
or W or whatever
ok you know what i think its smarter if i make the ocr just fking block the stupid "i" from the screenshots

Big brain move lmao
idk how to put a dead pixel on my screen tho
a needle should do
regex is genuinely not that bad, though things like lookahead and lookbehind can be pretty weird at times
wait thats a whole nother can of worms tho fuck
yeah tbh you should've cropped what you need from the screenshots in the first place
use an image processing library probably
so heres what i use
it essentially takes a screenshot of that specific area of the screen
per iteration
then ocr reads each pic
but the screenshot is a rectangular shape
I'm so close to finishing my satellite plotter, I just need to do a few more things like surfaces and maps and I'm doneee
oh, do you essentially crop out Name (i) with the (i) being aligned to the end of Name?
What about the black hole sim?
the Name (i) is in the same line
ok crazy question but is the screenshot of a webpage
is it a webpage
in game
Gave up on it bc I could only get so far. Once I do physics next year and I learn more about it I'll do it, but I finished it for non spinning black holes just couldn't get spinning to render properly
i full screen it
Looks like a game
dang
Uma Musume
and it takes a screenshot
correct
does the game have good anticheat 
hence why i asked about the scrolling function here back then
its a jp game so idk
but id rather not risk a ban
when im slaving away for sweat points

In the new satellite plotter I'm accounting for potential tidal forces and other neat things lol i can't wait to show u guys
Honestly, you've come this far on your own, it is quite a good learning IMHO
im full self learning
i dont even have a computer science degree
i shouldnt have touched coding

you'd be surprised
its also for a dumb reason
Yeah I don't think most people here have that lol
Nah, there are people that REALLY shouldn't code and yet they are coding anyway
yeah and coding just fits that autism part of my brain
should i code 
My condolences lmao
om
i stopped myself from wanting to learn assembly

im ill
should anyone, really?..
You have jsx, so no 
well i heard coders are generally cute so i hope i found the right people 
b-but i have ever only posted one snippet of jsx here and it was to show how cursed a certain react framework was...
uh....?????
i am learning machine code 
you're cute but in denial
Does anyone know how to convert a static website to a wordpress plugin?
mentally ill together
nuh uh lies
you mean machine learning?
no
... This is psychopathic behavior
Dissapointment

What do you mean by static website to wordpress plugins? You wanted to make a wordpress plugins?
yeah right wtf does that mean
i meant to say theme 🥲
wdym? it's totally normal 
this is taking ages
, its only 2gb
HDR ALERT
win hdr strikes again
Haha rip
the lower the level of code you are learning the cuter you get chat
you should try it

wait... Why is it taking so long tho
it doesn teven look that hdr comapred to the actual window on my screen
Honestly, no. I have not touched wordpress in a longlong time

i made a hello word program in 125 bytes by handwriting machine code 
the image itself is not hdr, because the png format got hdr support like, 2 weeks ago or something??
huh


> 8 bit color on png is new
Ye, but this implies that just 2 week ago that changed
ok maybe not 2 weeks but a month ago but still https://www.tomshardware.com/software/png-has-been-updated-for-the-first-time-in-22-years-new-spec-supports-hdr-and-animation
I wish we got better acceptance for the newer image formats like avif / jpeg xl
should be the default
jpeg xl 
we love onedrive
did you upload another Git repository
he totally did
i moved the emsdk to C: so i have more space
this onedrive only has 5gb cuz im not paying for it anymore cuz school ended. and im makign space


i had 2GB on emsdk and a gig on the python .git file cuz we all know i did some horible shit there
the actual game: 70mb, the .git file: 1.4GB
Honestly, your cpp repo too has grown above 60MB and can no longer be opened fully in the web editor of github
That is why I haven't made another pull request for bracket
good

ye i dont exactly know what caused this but here we are
i wish windows would show the size of folders next to them
what could've caused this 

the shaders are just text, the sfx is only 8mb, models might be 34mb...
-# the shaders are fine actually it's just all the assets that Git doesn't like
graphical effects supposedly
oh, i have 3 5K x 5K texture maps for the old test scene with terrain and shit
that would certainly do it
and the first one is 16bit even
per channel
For that black and white image?
yes
Bro, why 
its a heightmap
it's a monochrome png, surely it saved as single channel 
Oh
it is in fact not
i wasnt even using that one cuz PIL doesnt support 16bit, which is why that 3rd image exists where the 16bit 1 channel is split into 2 8bit channels
very triippy
the midle one is just straight up a normal map
standart gamedev stuff
ok time to write a deserializer for this binary format i wrote a serializer for a couple of days ago. it's supposed to be renderable (as in graphics), so the next step is to write a renderer because i went in blindly. oh boy i sure think the result will be what i imagined!

Sometimes I wonder wtf is everyone doing here
anything that pleases my adhd
same
which does include chatting here
webp has good support nowadays
imo the biggest problem isnt support, it's things like programs downloading image formats in avif by default, being saved as avif by default, etc.
meh png can stay as the default
might as well move to better formats when we can
it can, now that it supports hdr and apng is in the official spec 
sad that we got exif metadata support though, no more being sure you're not doxxing yourself by sending a png
the is the chillest channel in the server I love it
im not even all that in programming cz I only have experience on Arduino and MIT i js love this channel
God same lol
export type Uint4 = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15;
you're not using vscode to compile..
well im usign clang

you don’t have to have it installed, what they mean here is the msvc toolchain
i only have the build tools
you can grab it separately from the ide
i think it’s this but as an optional component
of build tools
or no
whatever sane people don’t use msvc
i saw the android icon and was thinking "you can develop this shit on android?" but no they mean deployment on android devices
which ones should i install?
I would add the memory allocator header
since you will be doing manual vram allocation, and vulkan doesn't give you a default allocator
a max of 4.29 bilion instances
thats quite a lot
idk what this is but the float seems odly specific
probably just 1 bit below 2048
oh its probably for when you're rendering GL_POINTS but vulkan
ts looks like 2015 csgo main menu 
oshama scramble
why are you randomly dropping osu song names
this isnt google konii
brainrot
i had been playing osu in vc for 4 hours
google doesn tload until i reload the page 
you see what i mean right? i'm not schizo i swear
i never called you schizo, i agreed
i called myself that
sounds like a you problem
and went to verify how schizo i really am
i never blamed you for anything
except for maybe using the wrong braces style
mods execute him for violating rule 10 
thanks prettier

It is pretty, but painful
Better than the python one that had the builds included in git

this is amazing
instead of fixing the updater in vmware workstation pro, they just decided to link to an article saying "Moving forward, updates will need to be manually downloaded from the Broadcom Support Portal."
AMAZING, not "this is a known issue and it will be fixed soon", just "moving forward, do it manually"
This is more than lazy
Was it that broken?
broadcom layoffs probably
it feels like they've been neglecting their whole vmware division
@patent walrus
what on earth?
Join us to develop/customize, ultra-lightweight at approximately 25kg, integrated with a Large Multimodal Model for voice and images, let's accelerate the advent of the agent era!

Roughly £4400 if you aren't subject to tariffs
Filian robot
mr.beast scam the third
is this the robot that will allow neuro to do vedal's laundary?
Probably not with hands like those
Though I suppose they'll probably upsell people articulated hands in the future
Yeah its got like gunpla hands
Or Lego/Megablox hands
Well... something is better than anything 
valuable information. Thank you
wouldn't be 2025 if they weren't upselling you on hands 
To be fair... fingers are complicated
true
Its the area of robotics we arguably have the most figured out though
A robot hand is like 300 bucks
Even so, can't be too disappointed
A proper humanoid robot at a four figure price point is insane
Only similar offering I can think of is this guy
He's open source which is cool and actually cheaper at 3k, but its pretty clear which is a product and which is a dev platform
box of sands
The absolute state of Youtube
FireFox + Ublock Origin + Mullvad 
In my case its Brave + Ublock + Pihole
DNS sink + DNS resolver + DHCP server
Pihole is the actual DNS sink and it comes bundled with Unbound DNS for query caching + dns resolution and dnsmasq for DHCP
Basically it lets you bypass the need to feed all your internet traffic through google or cloudflare to resolve IP addresses from domain names (that's the DNS server bit)
And blocks all the trackers, ads, malware domains and the like from even binding to an address (that's the DNS sink)
The dnsmasq DHCP bit assigns IP addresses to devices on your network and reroutes DNS queries from devices like Roku boxes that have hardcoded DNS servers you can't change to the local DNS server and filter/sink
All hosted on a pi 4 I keep in a drawer under my bed lol
I jsut do everything through Mullvad so I have the idea of privacy
Stats on my network
Thats alot fo blocked shit jesus
You can get a super basic version that you don't need to set up and host yourself from Mullvad using their DNS servers if you trust them with your privacy
Its not as comprehensive a solution but it does provide some filtering at the DNS level like my setup does
I have a paid version I share a account with my hosue mates
Brother controls the router here hes a programmer and going back to school for cybersec 
Ah yeah you do have to fiddle around with your router to reap the benefits of all this
For the less aggressive filtering mullvad offers its just a setting in the app though
On a network where everyone uses adblock on their devices too btw
Crazy how many trackers and data harvesters slip through
jesus
If you ever try your hand at this stuff I use the blocklist that comes bundled with pihole plus these

Just a little
thing I want to do at some point to to build a very secure and isolated office. I'm going to be working in law soon with large firms and I know thye are a constant target of email cyberattacks.
awa
Soooo anyone know how to setup whisper for voice activity detection tts and auto response?
my brother in christ, wtf are you doing that you have to block 25% of all requests on a dns level 
seems to be pretty typical for people with strict dns filters
oops
though i will say 
i'm at 7% 
thats all time or something
here are the ones that trigger most often
they only give you the last 3 months 
i've been letting the hagezi one handle everything, lemme see with the 1hosts one on top
dunno about that
i have to add quite a few things to my allowlist
actually, now that i think about it
i think i took it off ages ago precisely because of that 
hagezi contains a lot of the other lists anyway
Mhm
im about to go through and redo my lists actually
Lol
I had a few days ago most backends to websites be bricked from my dns filter
can we have an unwritten rule where if you want to be certified as a regular in #programming you have to nick yourself with a file extension at the end
I'd say we know our regulars
i unfortunately don't + it'd be funny for some reason
(I have really bad sense of humour)
my username already has a file extension, does that count 
nick yourself
damn
doesnt have to be acc-lvl nick

would you look at the bime
toast.fire
🔥
do what
Bime to eat lunch
bime to go sleep
Toast why not use bread emoji. So you're toasted bread
8d00 is pretty early morning for me
Because my 7AM is your 00.00, and it's already 12.00 here
absolute time passed since the epoch is constant everywhere
however the percieved duration may change
so, if we were both to check the bime at any point, we would agree, however we might disagree on how long passed
There is no such thing as absolute time 
bad phrasing but it conveys the point
Well, bime to eat lunch
There's no programming language with a bread emoji as its file extension to my knowledge 
why the concerned look @sage crag 

Yeah, I visited the place again and just re use the pic lmao
Hblang can be the first 
tell me the file format of this hbbc binary you gave me
10 minutrs
what
https://git.ablecorp.eu/lily-org/fakern/src/branch/trunk/src/vm/mod.rs
go to struct Header
Change it to binute 
feck
uhh (60 * 10)/(1.318*64) binutes
7.1

hi just asking, is it possible to make clickthrough windows on wayland
like, a full screen window, but all your clicks and keyboard interacts go through the window
i believe there's no frameworks that do this, and it's generally not possible even with wayland libs
i also know it's possible to do this on x11 
not typically possible on wayland yet
iirc
maybe new protocols have been introduced since i last checked
hypersmh
you can try setting the window input region to zero or null
if the window is transparent it should let you click through it on some compositors


What does it mean to go through? As in, it intercepts the input?
opposite
ignores it

the simple solution is to not support wayland 
it goes against wayland's security design philosophy to have clickthrough opaque content
so im unsurprised
transparent, your mileage may vary
Genuinely asking btw. I am interested in the use cases
my thing is transparent tho, ill just leave it at that and wait for someone to pr it
funny
(not malware)
im doing an overlay thingy, don't really wanna go into too much details 
my requirement doesn't include full-screen games, so i'm skirting the vulkan / opengl overlay route
Ahh, so you want to have overlay but the overlay itself cannot be interacted with
yes
well, if its gtk (with support) or you are using a wlroots based compositor you can get it working on wayland
i think a more typical wayland thing to do would be to make as many windows as overlay buttons 

the reason why im going full window overlay is because im doing fairly intensive operations sometimes (e.g. drawing new windows with single labels)
Can wayland accessibility feature be (ab)used?
yes this is why devs dont write wayland apps
maybe in 2 decades a click through protocol will be stabilised

alr thx, now what is the 33 byte header in the debug segment 
Use AT-SPI2 and intercept every input only to be then processed by the AT-SPI2 
dunno i didnt need to use it to make program work
https://git.ablecorp.eu/mlokis/hblang/src/branch/main/src/hbvm/object.zig
this is all i got for you
if this doesnt have what you want then ping mlokis in holeybytes channel
alr thank you 
It's not when you have to convert to cstring lol
What even is the whole idea behing hblang?
"Why not?"


i think you can make overlay layer shell
maybe
wayland 
Morning
neuroling slep
idk how but i slept from noon till 19 yesterday,a nd then again from 2 till 10
most of the last 24 hours has been spent asleep
no
I didn't expect multiple mods here to be programmers. There's Shiro, Cloudburst and maybe also Vani. Who else?
vedal allegedly
No way really?
Shocking, I know
No way he programs
does vibe coding count
mabe
You know, vedal has code for neuro. Neuro has sdk integration. Neuro can just make evil from her own codebase
It may not work sure, but she could
Would be fun to see what code neuro will cook lmao
someone made neurosdk integration for the LLM programming thing in vscode, so you could plug neuro in as a vibe coding agent
lets stick to ctr+c and ctrl+v for now
Neuro will make evil not work, and vedal will ask why. "Because its funny" 
chat wtf is this new ui
im a twitter member since 2010 i think
if vedal was like 19 in 2023, he was like 10
maybe 2011
have at it chat! https://discord.com/channels/574720535888396288/1350968830230396938
||I only just realised this technically skips the vibe coding and goes directly to the AI||
smh vedal, that's a bannable offense under the ToS
(i totally didnt make my facebook account way before I was allowed to)
wat
or he's just old
i hate how i need to edit the path varibales everytime i install something
I'm on this one
windows

meanwhile on nix I can temporarily alter my path to include programs I'm testing.
damn that's basically exactly what i imagined? maybe except for how i get the frequency for the color. my ass backwards dev cycle proves that it has rights to exist
yup that looks like my mix alright
I just want to see a 3d circle where hue determines how close it is to the center. Only thing that'd stop this from looking like my imagination would be the fact it would have to make sure it still is a coherent ring which doesn't exist.
-# Man I just said what was on my mind, this was long
Wait, Vedal is 21?
Windows moment
is he?
Time for rewrite #2?
nah i need to make the entire vulkan backend still
just including it doesn't mean i can use it, i first need to make every single thing interacting with the gpu manually
Wtf Vedal is younger than me
Feels old man 
Oh yeah, Vulkan be Vulkan
what you’re imagining is basically a spectrogram rendered in a circle
3D circle 


or not, what do you mean by 3d circle...
Prime candidates include:
- Donuts
- Sphere
- Cylinder from top-down
truly a vulkan moment, you type 3 letters and get a 60 letter recomendation
Truly Sam moment, counting letter of a long word
its roughly 60
Something like those old dungon crawlers, spectrogram can be rendered as a paromana and the walls would be spread from the center with distance depending on the hue. Not exactly any on those
i think you mean the waveform not the specrtogram

It's a weird thing but it was what came into mind
well the problem is, how i determine the hue is fundamentally flawed and wrong and does not work as it should, i hann window the chunk i'm currently working on, FFT it and the loudest frequency in hz / 100 is the hue in degrees

it's a problem because the loudest frequency does not necessarily convey anything especially on chunk size 1024/2048 and ESPECIALLY because i'm doing discrete FT
function initUniverse(...description[]) {
// Omitted for brevity
}
cant read out the name without gasping for air in the middle
it's better than rng but not by much
and x and y and z and w and ...
at least a 4d being, could be more extra-dimentional

Or 3D with rotation
found a slightly worse one
Chay, how did you always come up with cursed stuff
I did several attempts at it
was close
i mean if it was a PointerEvent instead you would've had touch force with things like old iphones with 3d touch and laptop trackpads and drawing tablets. i guess you can call how hard you press the Z axis...
afaik that is how that works?
it's not called Z i can tell you that much
Ship it, you can do it in one breath. (source is trust me bro)
i did it in one breath
IIRC iphone 6 was the last with 3d touch
there should be a penalty for using algorithms to autogenerate names like that
we all come up with cursed things every once in a while
wasn't it the iphone Xs? and you couldn't be more wrong, the iphone 6 was the last one BEFORE they introduced 3d touch 
the first one was 6s
No, the problem is chay can ALWAYS come up with cursed stuff without fail
it's called skill
but in the z-axis

I think this is a rust issue due to not being able to overload constuctors, at least considering this lib wants a valid constuctor no matter what you want to input.
I'd not be suprised if there was a macro in the same crate
we came up with a cursed time format but it turns out someone came up with the EXACT same format 160 years ago. so not cursed enough sadly
Has anyone used Folia (Minecraft server toolkit)? Does it work well?
send me the spec pls
Didn't have enough cores to test it with
from what i've heard no, but i heard that like 2 years ago
16 cores recommended was steap back when I tested it
https://mlntcandy.github.io/bime and the 160 year old one is https://en.wikipedia.org/wiki/Hexadecimal_time
the spec is in the repo
definition.txt i think
what in the fuck is a sibisecond 
When my AMD R9 7900 computer arrives, I will test it.
properly called the hexadecimal second
I'm not even gonna ask how JS sucks at waiting for a sibisecond
we got new Date(1) after all
because it needs fucking nanosecond level precision?
and you can only sleep for milliseconds and afaik it's not even guaranteed you sleep for what you exactly specify
not even questioning that
I attemped multipaper back in the day, haven't had a reason to use it nowadays as I don't. Slightly more complex but can scale across multipule systems.
also @rigid snow since you know a bit about standalone vite do you know how to instruct vite to treat .js files as cjs
can esbuild even handle cjs
you cant do setinterval but you can do settimeout every time
to avoid desync
Fun when I threw an instance over to a diffrent country to my friend who was helping to test to see how it worked.
I would assume so
will the actual execution time not add more desync
obviously not a fixed settimeout but manually calculate the delay by doing some maths with time
obviously cjs/esm mixing will never go well tho
the same way time is done in game loops
Think that was the only time when I set the server render distance to 16 chunks
Thank you for sharing experience!
In general, be careful with your other plugins and do a lot of testing as not even base game works correctly sometimes
I had zero luck with backpack plugins
true… icba though
Thank you
no problem, have fun!

No i meant, what is it designed for
hblang is designed to be a user-space lanuage for ableos
I feel a 2 spiderman pointing at eachother meme comming up
Ohhhh
been awhile since konii explained it so I don't blame people for not knowing
i'll probably write a dynamic linker next (not for the os, i just want a dlopen)
its working now, also 
How can i embed....
chat more -> get xp -> level up
nesus
Thank you
wrong channel. they're never here
programming ≠ osugaming or nn
or livestream-chat
or any other fucking channel but programming
I don't see any fish, so signs are slim
(who?)
I have always been wondering, why rust don't have function overload?
(a very old regular in discord and twitch chat)
it has typeclasses which serve the exact same purpose
traits
but typeclasses are better since they allow independent extensibility
hello fellow programmers i am in the process of touching real grass and i forgot what it feels like
WHAT
TRAITOR
IM SORRY
what if i tell you i touch grass every day... 
i had to get out for a bit cause my parents aren’t liking me staying in my room for weeks on end..
I too love the programming language of Puccinia triticina
(Haters will say that it's Iron-oxide)
if #programming had a sports festival at least half would die of a heartattack
what if rust is actually the devil and we're too blind to realize
that would actually make sense
i think you’re onto something
Though i rarely use Rust
🦀 this 🦀 is 🦀 not 🦀 an 🦀 echo 🦀 chamber
Ehh, it's givingggg "I. AM. NOT A. MORON"
I would, but not for the reasons you might think
So, we have KRANS and KTrain
kde invasion
Both part of the KDE projekt
beat you to it 

i can cycle 50km in 3-4 hours, but dont ask me to do 5 push-ups cuz ill be dead after 2
im the exact opposite
last part i can relate to
I have now become a part of KDE
2???? i don't exercise like at all and can do at least 20
mlntkandy just doesn't have the same ring to it 
im just built difrent, i have spaghetti arms
i do NOT want to be part of KDE thank you very much
Spaghetti arms with buffed thigh

Does cycling not affecting thigh muscle?
cycling is just in the genes of the homo-sapien-europeanus
and a good amount of drugs
also pushups barely use arm muscles so thats no excuse 🤓
Isn't the hello triangle close to 1000 LOC?
have you become vulkan yet
then wtf am i doing? i thought you had to use your elbows?
yes
a tiny bit of triceps but mostly chest muscles
You need to study more biology 

I think if you do it any other way you’re at risk of breaking something
Im not a doctor though

oh same
can someone explain why vscode's terminal is so shit?
there is no reason to duplicate eveything 15 times
can someone explain why ios is so shit 
like ??
Ah yes lets just move everything down
That makes sense
this has screwed me over so many times when I have printed out something I really needed to know what is printed
It is using bogosort
Who even pushed the commit for that fire them bro 
and It as been a persistent issue for such a long time
I keep looking at this and it’s just so bizarre
No matter how I look at it there’s no reason for it to be random BUT IT IS
the most hillarious part of it is that the button he was going to swap just went up
“he” i wonder who that loser guy with an iphone could be 
i gave up moving the button btw
it’s actually impossible
"imagine having an iphone"
i say while my smasnug is falling apart
khayleaf 
KDE 😒
validation layers
i expect this code to be very bad by the time i get a trianlge on screen
krita is so good for drawing, love it
Hi
hello mister steam emulator

Where are you from
konii is part of KDE confirmed
i have chocolate pastries with cream 


didn't you know? telegram recetly implemented a new [object Object]
anyone knows how i can find out what the hell in vscode starts eating my cpu after a while
kernel_task is thermal throttling btw, because of vscode doing that
it is its own process
i mean it's literally a binary named Code Helper (Plugin)
that's normal on macos 
Crypto miner 
/Applications/Visual Studio Code.app/Contents/Frameworks/Code Helper (Plugin).app/Contents/MacOS/Code Helper (Plugin) is the path of the executable
so probably not a crypto miner
Everything that performs computation on my computing device without my explicit permission = crypto miner 
unless it's an extension that is one
also i'm not sure at all but i think it seems to only happen on projects that have rust code?
and a while is like 12+ hours
i see my validation layers are already working...
~validation layer: vkDestroyInstance(): Object Tracking - For VkInstance 0x278decc9140, VkDebugUtilsMessengerEXT 0x10000000001 has not been destroyed.
aight i now have the DebugUtilsMessengerEXT working
i basicly now have the vulkan api init, i create a window, and it tells me when it breaks
all in 200 lines of code
imma have to leave it here tho
bye
awa
Bro, why are you opening vscode > 12 hrs? 
because i'm on a laptop and i close it when i'm away? 12 hours is not much
i just don't close it
Then the fix is easy. Restart the process after 8 bours
well i'm tired of opening the laptop and it immediately reminding me to restart vscode by burning my lap
i'd prefer it to not burn my lap
Then use it on the desk so it become a desktop
i don't have a keyboard with me, and using a mouse on macos is worse than it sounds
What happens when you use a mouse with MacOS? 
apple ceo comes into your house and yells at you
well i lose out on trackpad gestures in general, but for starters, natural scrolling for both the mouse and the trackpad is the same setting for some fucking reason?
Oh dang, it's almost day 2 of bime
Can't wait for day F of bime
It shall be known as F day
the day thing is rendered as decimal 
WAIT, we just have to invent becimal and we are distinct enough from hex time
chay, why don't you join konii with KDE?
i use sway 
every time i hit my desk fan it spews out a huge cloud of dust
Percussive maintenance
I put my old pc in the game room for purely for playing res evil 7 at my sleepover. 
also idk why everyone makes such a big deal of liquid glass, the difference with the previous design is unnoticeable when you're actually trying to achieve something when using your phone as a tool instead of aimlessly scrolling around menus salivating at light refraction effects
Brother how is this not optional???
experience the power bro...
I dont wanna 
They seriously asking if i want "find my device" on a desktop???
The setup proces of windows is so tedious
Oh my days it needs to do 3 updates 
with this redesign using an iphone feels much like a using a pc, now everything is a context menu, which i really like. they even added default apps for file extensions!! makes sense ig since they made ipados have an actual window manager now, they really wanna make the ipad a computer
now the ipad is a power wheels but with pcs instead of cars
bro uses a microsoft account in 2k25...
How do I reset OBS config? Why is it segfaulting without any other information 
Alright, why does OBS automatically decide to record in HDR
And why does recording HDR result in a segfault 
You know what? I don't wanna know. At least now it's working
This is what my ableton usually runs on
i would if i could.. trust
if your sound card doesn't have a dedicated asio driver, use asio4all; if you can't use asio4all, use FL asio (not exclusive to FL)
i know how asio works...
so why aren't you using it
it's just really unstable on this laptop if i use any form of asio
FL ASIO is universal enough that it shouldn't be a problem
have you adjusted the buffer size
It won't let me lol
does the hardware setup not do anything
i could try to use generic low latency ASIO Driver that one has a config program
the problem with DS is the DAW will not be able to get exclusive access to the audio device, and the playback is way after the DSP processing chain in Windows, so there is going to be an audible difference and significantly higher latency
if you're mixing you're undoubtedly going to hear differences in-DAW post-mix and render
i am already happy if i can get sound without crackle
latency is just one of the issues
look man
i am already working on building an actually fgood pc
i didn't even post the screenshot to get help
realistically a "fgood" PC still won't be great; ideally you'd need a sound device that natively supports ASIO
because it turns out CPU is really bad at audio processing
also will be working on that
but i can't shove a whole ass audio card in my 10+ year old laptop
most interfaces are USB-based
day 2
Oh shit, I missed it
dw i did too
new nvidia driver yay
the code is fully cross platform!
Anyone an idea I fine tunned an LLM for/use over Ollama . Over console it works fine but when I ask it over API it personality is gone completly
I just think who the hell is "Luna"
Remember to account for
- prompts
- formatting differences
- what formatting the finetuning dataset was using for the training data
And temperature
That one is important
Hm yeah I don't think whisper put a "?" at then end of my actual question this could be the source
That is not what I meant
yeah there was more
I don't know if you quite get what I meant by all the stuff I said, you may have a lot to learn about text completion models and how they behave
finally installed linter
check out what generation params are used and that the system prompt is not something else during console
I think I may found it my original code had a role attached but I didn't use this when I fine tuned it . But now I'm back to TTS problem . Maybe I just log it so I can see it
I have no clue what you're even doing so I can't help much, but a personality change between interfaces of inference is usually temperature, inference params, or prompt
Bro is here abusing JSON as DBMS
well tbf it's jsonL
reminded me i still have this thing lying around, should probably yeet 
No, it is not fair


vscode


le cube
I understood





directsound
