#programming

1 messages · Page 106 of 1

olive sable
#

ye...

#

not our proudest world record

hard raptor
#

The only thing i think about when i hear belgium is brussels, fries and tomorrowland

opaque wharf
olive sable
#

as usual

hard raptor
opaque wharf
#

Must've been caused by the lunacy by a device called computer

hard raptor
#

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?

olive sable
#

mmm

#

kinda

hard raptor
#

So hypothetically... if i would say belgian roads are bad.. it would hypothetically be on topic

opaque wharf
#

Everything has some technical aspect to it

olive sable
#

our roads are bad, but only compared to european standart

hard raptor
#

Dutch roads are also not always the best if imma be honest

old totem
#

help neuroCry

#

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

rigid snow
opaque wharf
desert plaza
hard raptor
opaque wharf
#

The c == 'i' happens on the same iteration

desert plaza
#

yep

old totem
opaque wharf
#

So c cannot be ' ' || '(' and also 'i' at the same time

old totem
#

but theres an i there for an info button for their stats

opaque sigil
#

the check being in the same iteration should be fine since presumably it'd save the value for the next iteration FOCUS

desert plaza
# old totem how come?

you're checking if c == 'i' after just having set char_check = 1, which means c == ' ' || c == '('

old totem
#

yeah thats what i thought

opaque wharf
#

On the same iteration

opaque sigil
#

oh wait

#

yeah i'm blind

old totem
#

oh what am i blind

#

i assume the check interation happens once

#

next iteration skips the first if

#

then goes to the nested one

opaque wharf
old totem
#

OHHH it never reaches

char_check = 0;

right?

#

because the continue happens right before it

desert plaza
#

no

opaque sigil
#

you set it back to 0 in the iteration before it's i

opaque wharf
old totem
#

but if i remove that

desert plaza
#

you're always setting char_check back to zero so c++ if (c == 'i')

old totem
#

it will remove all "i" in the ocr

opaque wharf
#

You should move the char_check to inside the if

opaque sigil
#
if (c == 'i' && char_check) {
    char_check = 0;
    continue;
}

sth along these longs should do the trick i think?

old totem
#

i'll try

#

oh shit it works wtf

#

thank you guys

#

but like idk why my old code didnt work

desert plaza
old totem
#

oh thats true

#

im pretty dumb

opaque wharf
#

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 '('
desert plaza
old totem
#

i should have done an else if then

#

who knew nested ifs never work

desert plaza
#

nested IFs

old totem
#

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

desert plaza
#

you can just check each character code and see if they're in the bounds of ascii

old totem
#

alr thanks

#

is it just like

c(int) < number of the ascii

```?
desert plaza
#

singed 8 bits

desert plaza
old totem
#

or like

c > a(int) && c < Z(int)
opaque wharf
#

char is.... complicated

desert plaza
opaque wharf
#

It may or may not be signed

old totem
#

alr i'll try

opaque wharf
#

But assumed signed is a good rule of thumb

rigid snow
#

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? NeuroClueless

desert plaza
hard raptor
#
int main() {
  string yapped = yap();
  if(yapped = "") {
    return 1;
  }
  println("Ermm i actually don't care!");
  return 0;
}
#

Did i do it right?

rigid snow
opaque wharf
#

Just use flatbuffer man

rigid snow
#

but hey now i can compress this too

#

and have super small file sizes yay

warped narwhal
rigid snow
warped narwhal
hard raptor
#

Yap isn't even a function lol

old totem
#
if (!(c > 47) && !(c < 128)) {
    continue;
}

chat it still doesnt filter the stuff out

#

is the if wrong

opaque wharf
rigid snow
warped narwhal
opaque wharf
hard raptor
#

If i wanted it to be actual working C++ code it would be bigger

old totem
hard raptor
#

Also why would i use println when std::cout exists

old totem
#

OH NO

#

it removed all the spaces

desert plaza
old totem
#

what uhh ascii is ' '

desert plaza
#

0x20

old totem
#

thanks

desert plaza
#

ur welcom

old totem
#
if (!(c > 47 && c < 128) && c != 0x20) {
    continue;
}
``` IM SORRY
#

im so dumb

#

it still doesnt work

opaque wharf
#

if(!((c > 47 && c < 128) || c == 0x20))

old totem
#

wait i forgot '\n' is a character

rigid snow
#

last log(n)

opaque wharf
#

The ifs just getting longer lmao

warped narwhal
#

and easier to use.

rigid snow
#

why are we comparing ascii chars with hex

opaque wharf
#

Honestly, just use isascii()

warped narwhal
#

why not? Clueless

old totem
#

it removes commas too

desert plaza
#

cuz neuroGlorp

opaque wharf
#

if(!isascii(c))

warped narwhal
old totem
#

fuck it im hard coding it

desert plaza
old totem
#

longest if condition

rigid snow
#

i can assure you i've written conditions way, way, way longer...

old totem
#

wait im stupid why did i do 48

#

cant i just do 0

rigid snow
#

who ever decided that code needs to be "maintainable"

rigid snow
old totem
#
if (!(c > 0 && c < 128) || c != 0x20 || c != '\n') {
    continue;
}
#

chat i cant help it im stupid

#

what am i doing wrong

rigid snow
#
c != 0x20 || c != '\n'
```crazy work ngl
#

or am i NeuroClueless and ' ' does not work

old totem
#

oh wait ur right

old totem
#

im assuming im just doing something dumb

#

just gonna do the !ascii thing

opaque wharf
#

if(!(isprint(c) || c == '\n')) should do the trick

old totem
#

okat it worked

old totem
#

esp for ocr shit

rigid snow
#

do i just hate nesting

opaque wharf
#

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

rigid snow
#

yeh if (!isprint(c) && c != '\n'))

#

does the same thing btw in case someone misses that

old totem
#

theres like no way i can make this cleaner right chat

#

like this is the best way to code this surely

rigid snow
desert plaza
opaque wharf
#

Man, if this was JS I'd just do ['a', 'b', 'c'].includes(c)

rigid snow
rigid snow
#

wrap all of those && char_check in a if (char_check) { instead

old totem
#

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

opaque wharf
#

If the file is not a secret, you can try sending the file here

opaque wharf
#

No, the file. As in, write the raw output of the OCR to a file

old totem
#

uh

#

idk how to do that

desert plaza
rigid snow
#

TRUE ACTUALLY

old totem
#

but maybe forgot about them at 4am

desert plaza
rigid snow
old totem
#

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

opaque wharf
#

Big brain move lmao

old totem
#

idk how to put a dead pixel on my screen tho

opaque sigil
#

a needle should do

rare bramble
old totem
#

wait thats a whole nother can of worms tho fuck

rigid snow
#

yeah tbh you should've cropped what you need from the screenshots in the first place

old totem
#

i have to know how to like

rigid snow
#

use an image processing library probably

old totem
#

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

gritty dust
#

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

rigid snow
#

oh, do you essentially crop out Name (i) with the (i) being aligned to the end of Name?

opaque wharf
old totem
#

the Name (i) is in the same line

rigid snow
#

ok crazy question but is the screenshot of a webpage

old totem
#

this

rigid snow
#

is it a webpage

old totem
#

in game

gritty dust
# opaque wharf What about the black hole sim?

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

old totem
#

i full screen it

opaque wharf
rigid snow
#

dang

opaque wharf
#

Uma Musume

old totem
#

and it takes a screenshot

old totem
rigid snow
#

does the game have good anticheat neuroTroll

old totem
#

hence why i asked about the scrolling function here back then

old totem
#

but id rather not risk a ban

#

when im slaving away for sweat points

gritty dust
opaque wharf
old totem
#

im full self learning

#

i dont even have a computer science degree

#

i shouldnt have touched coding

rigid snow
old totem
#

its also for a dumb reason

gritty dust
old totem
#

saw neuro, saw ai, and was like woah maybe i wanna make my own ai

#

then learned c++

opaque wharf
old totem
#

yeah and coding just fits that autism part of my brain

opaque wharf
gritty dust
old totem
#

im ill

rigid snow
opaque wharf
old totem
#

well i heard coders are generally cute so i hope i found the right people AYAYA

rigid snow
desert plaza
rigid snow
weak orchid
#

Does anyone know how to convert a static website to a wordpress plugin?

old totem
gritty dust
weak orchid
desert plaza
gritty dust
weak orchid
desert plaza
opaque wharf
rigid snow
#

yeah right wtf does that mean

desert plaza
olive sable
#

this is taking ages anya_dead_p2u , its only 2gb

rigid snow
#

HDR ALERT

olive sable
old totem
#

the lower the level of code you are learning the cuter you get chat

#

you should try it

gritty dust
olive sable
#

it doesn teven look that hdr comapred to the actual window on my screen

opaque wharf
olive sable
desert plaza
rigid snow
olive sable
#

huh

desert plaza
opaque wharf
olive sable
#

inst it always 8 bit?

#

per channel

#

hdr is 10 bit no?

opaque wharf
rigid snow
rare bramble
#

I wish we got better acceptance for the newer image formats like avif / jpeg xl evilDeadge should be the default

rigid snow
#

jpeg xl catdespair

olive sable
#

we love onedrive

rough bloom
#

did you upload another Git repository

rigid snow
#

he totally did

olive sable
#

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

rough bloom
opaque wharf
olive sable
#

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

opaque wharf
#

That is why I haven't made another pull request for bracket

olive sable
#

good

opaque wharf
olive sable
#

ye i dont exactly know what caused this but here we are

#

i wish windows would show the size of folders next to them

rough bloom
#

what could've caused this glueless
neuroLookDown

olive sable
#

the shaders are just text, the sfx is only 8mb, models might be 34mb...

rough bloom
#

-# the shaders are fine actually it's just all the assets that Git doesn't like

olive sable
#

holy gfx is 50mb for some reason

#

wtf am i storing in there?

rigid snow
#

graphical effects supposedly

olive sable
#

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

opaque wharf
#

For that black and white image?

olive sable
#

yes

opaque wharf
#

Bro, why catdespair

olive sable
#

its a heightmap

rigid snow
#

it's a monochrome png, surely it saved as single channel glueless

opaque wharf
olive sable
#

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

rigid snow
opaque wharf
#

Sometimes I wonder wtf is everyone doing here

rigid snow
#

anything that pleases my adhd

rigid snow
opaque wharf
#

Dang, I missed 3456 bime

#

But well, would you look at the bime, its bime to sleep

desert plaza
#

sleep bime

tender river
rare bramble
tender river
#

meh png can stay as the default

rare bramble
#

might as well move to better formats when we can

rigid snow
#

sad that we got exif metadata support though, no more being sure you're not doxxing yourself by sending a png

brittle copper
#

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

rigid snow
olive sable
#

xdx vscode

#

you assumed wrong

rigid snow
olive sable
#

well im usign clang

rigid snow
olive sable
#

but i still dfont have visual studio installed on my pc

#

not the c++ things at least

rigid snow
olive sable
#

i only have the build tools

rigid snow
#

you can grab it separately from the ide

rigid snow
#

of build tools

#

or no

#

whatever sane people don’t use msvc

olive sable
#

i saw the android icon and was thinking "you can develop this shit on android?" but no they mean deployment on android devices

#

pepehmm which ones should i install?

warped narwhal
#

since you will be doing manual vram allocation, and vulkan doesn't give you a default allocator

olive sable
#

neuroReading 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

rigid snow
olive sable
#

it even says "sponsored by valve"

sage crag
#

oshama scramble

rigid snow
#

why are you randomly dropping osu song names

olive sable
#

this isnt google konii

sage crag
#

i had been playing osu in vc for 4 hours

olive sable
#

google doesn tload until i reload the page NeuroRage

rigid snow
olive sable
#

i never called you schizo, i agreed

rigid snow
#

i called myself that

olive sable
#

sounds like a you problem

rigid snow
#

and went to verify how schizo i really am

rigid snow
#

except for maybe using the wrong braces style

olive sable
#

ik ben niet jouw vriend

rigid snow
#

mods execute him for violating rule 10 neuroTomfoolery

olive sable
#

mods execute him for hate speech towards my homie Allman

#

neuroHypers le cube

opaque sigil
amber fractal
amber fractal
olive sable
patent walrus
#

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"

olive sable
#

But why?

amber fractal
#

This is more than lazy

olive sable
#

Was it that broken?

patent walrus
#

broadcom layoffs probably

#

it feels like they've been neglecting their whole vmware division

amber fractal
#

@patent walrus

lapis wraith
#

annytfLookUp what on earth?

sick owl
#

Roughly £4400 if you aren't subject to tariffs

#

Filian robot

amber fractal
lapis wraith
sick owl
#

Though I suppose they'll probably upsell people articulated hands in the future

#

Yeah its got like gunpla hands

#

Or Lego/Megablox hands

lapis wraith
#

Well... something is better than anything scrajj

sick owl
#

There it is, the EDU model that costs more has articulated hands

#

Cheeky buggers

lapis wraith
#

NOTED valuable information. Thank you

opaque sigil
#

wouldn't be 2025 if they weren't upselling you on hands neuroCry

lapis wraith
#

To be fair... fingers are complicated

opaque sigil
#

true

sick owl
#

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

sage crag
#

box of sands

sick owl
#

The absolute state of Youtube

idle dune
sick owl
idle dune
#

Whats Pihole

#

VPN?

sick owl
#

Pihole is the actual DNS sink and it comes bundled with Unbound DNS for query caching + dns resolution and dnsmasq for DHCP

idle dune
#

hmmThinkers I understood

#

Some of that

sick owl
#

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

idle dune
#

Hmmm

#

Ill have to look into this

sick owl
#

All hosted on a pi 4 I keep in a drawer under my bed lol

idle dune
#

I jsut do everything through Mullvad so I have the idea of privacy

sick owl
#

Stats on my network

idle dune
#

Thats alot fo blocked shit jesus

sick owl
#

Its not as comprehensive a solution but it does provide some filtering at the DNS level like my setup does

idle dune
#

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 HyperPoggies

sick owl
#

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

sick owl
#

Crazy how many trackers and data harvesters slip through

idle dune
#

jesus

sick owl
#

If you ever try your hand at this stuff I use the blocklist that comes bundled with pihole plus these

idle dune
#

Just a little SCHIZO 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.

sage crag
#

awa

flat sigil
#

Soooo anyone know how to setup whisper for voice activity detection tts and auto response?

opaque sigil
sage crag
#

oops

opaque sigil
#

hmmm

#

what blocklists are you using

sage crag
opaque sigil
#

i'm at 7% neuroPogHD

sage crag
sage crag
opaque sigil
#

they only give you the last 3 months neuroSadge

#

i've been letting the hagezi one handle everything, lemme see with the 1hosts one on top

sage crag
#

i have to add quite a few things to my allowlist

opaque sigil
#

actually, now that i think about it

#

i think i took it off ages ago precisely because of that neurOMEGALUL

sage crag
#

hagezi contains a lot of the other lists anyway

opaque sigil
#

Mhm

sage crag
#

im about to go through and redo my lists actually

gritty dust
#

I had a few days ago most backends to websites be bricked from my dns filter

jagged turtle
#

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

amber fractal
#

I'd say we know our regulars

jagged turtle
#

i unfortunately don't + it'd be funny for some reason

#

(I have really bad sense of humour)

opaque sigil
#

my username already has a file extension, does that count neuroPogHD

jagged turtle
#

nick yourself

opaque sigil
#

damn

jagged turtle
#

doesnt have to be acc-lvl nick

amber fractal
#

Certified test for casual chatters

#

bwaa or awa

jagged turtle
#

awa

#

bwaa is overused

opaque sigil
#

actually

#

there, better

sage crag
sage crag
#

would you look at the bime

jagged turtle
opaque sigil
#

🔥

sage crag
#

how did you do that

opaque sigil
#

do what

sage crag
#

that

opaque sigil
#

magic

sage crag
opaque wharf
sage crag
opaque wharf
sage crag
#

8d00 is pretty early morning for me

opaque wharf
sage crag
#

your 8d00 is my 8d00

opaque wharf
#

True

#

But what if, I am moving REALLY fast?

sage crag
#

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

opaque wharf
sage crag
opaque wharf
#

Well, bime to eat lunch

sage crag
#

this is the same lunch as the same bime yesterday

opaque sigil
desert plaza
#

why the concerned look @sage crag neuroTroll

sage crag
opaque wharf
desert plaza
#

tell me the file format of this hbbc binary you gave me

desert plaza
#

what

opaque wharf
sage crag
#

uhh (60 * 10)/(1.318*64) binutes

#

7.1

safe path
#

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 ReallyInnocent

sage crag
#

iirc

#

maybe new protocols have been introduced since i last checked

safe path
#

hypersmh

sage crag
#

if the window is transparent it should let you click through it on some compositors

safe path
opaque wharf
safe path
#

opposite

safe path
sage crag
#

click bypasses window entirely

#

clicks underneath

safe path
#

the simple solution is to not support wayland ReallyInnocent

sage crag
#

it goes against wayland's security design philosophy to have clickthrough opaque content

#

so im unsurprised

#

transparent, your mileage may vary

opaque wharf
#

Genuinely asking btw. I am interested in the use cases

safe path
#

my thing is transparent tho, ill just leave it at that and wait for someone to pr it

safe path
#

(not malware)

#

im doing an overlay thingy, don't really wanna go into too much details mhm

#

my requirement doesn't include full-screen games, so i'm skirting the vulkan / opengl overlay route

opaque wharf
#

Ahh, so you want to have overlay but the overlay itself cannot be interacted with

safe path
#

yes

sage crag
#

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 neuroDespair

safe path
#

the reason why im going full window overlay is because im doing fairly intensive operations sometimes (e.g. drawing new windows with single labels)

opaque wharf
#

Can wayland accessibility feature be (ab)used?

sage crag
#

yes this is why devs dont write wayland apps

safe path
#

the overhead to make a new window is quite big

#

as i've learnt after crashing my pc

sage crag
desert plaza
opaque wharf
#

Use AT-SPI2 and intercept every input only to be then processed by the AT-SPI2 evilWheeze

sage crag
desert plaza
#

im trying to learn machine language and hb bytecode, not rust neuroGlorp

sage crag
#

if this doesnt have what you want then ping mlokis in holeybytes channel

hard raptor
hard raptor
opaque wharf
hoary lion
#

cause it can be written in hblang

#

ig

olive sable
#

Goodmorning

desert plaza
rare bramble
tender river
#

maybe

gritty dust
tender river
#

neuroling slep

olive sable
#

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

opaque wharf
#

Sleep deprivation will do that, yeah

#

Fix it by caffeine neuroTroll

olive sable
#

no

left solstice
#

I didn't expect multiple mods here to be programmers. There's Shiro, Cloudburst and maybe also Vani. Who else?

tender river
#

vedal allegedly

left solstice
#

No way really?

opaque wharf
#

Shocking, I know

amber fractal
tender river
#

does vibe coding count

amber fractal
#

mabe

opaque wharf
#

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

rare bramble
#

someone made neurosdk integration for the LLM programming thing in vscode, so you could plug neuro in as a vibe coding agent

olive sable
#

lets stick to ctr+c and ctrl+v for now

opaque wharf
#

Neuro will make evil not work, and vedal will ask why. "Because its funny" neuroTroll

stark needle
#

chat wtf is this new ui

olive sable
#

huh

#

twitter member since 2014

tender river
#

im a twitter member since 2010 i think

stark needle
#

if vedal was like 19 in 2023, he was like 10

tender river
#

maybe 2011

jagged turtle
rare bramble
#

smh vedal, that's a bannable offense under the ToS
(i totally didnt make my facebook account way before I was allowed to)

jagged turtle
#

wat

olive sable
#

i hate how i need to edit the path varibales everytime i install something

amber fractal
olive sable
amber fractal
#

meanwhile on nix I can temporarily alter my path to include programs I'm testing.

faint sandal
#

i actually don't mind it

rigid snow
#

yup that looks like my mix alright

stray dragon
#

massive waste of space

amber fractal
# rigid snow 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

opaque wharf
olive sable
jagged turtle
#

well, that + his stated birthday

olive sable
#

i have officialy included vulkan neuroWicked

#

a bit anticlimactic but sure

nocturne olive
olive sable
#

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

opaque wharf
#

Feels old man catdespair

rigid snow
opaque wharf
#

3D circle neuroDespair

olive sable
opaque wharf
rigid snow
#

or not, what do you mean by 3d circle...

opaque wharf
#

Prime candidates include:

  • Donuts
  • Sphere
  • Cylinder from top-down
olive sable
#

truly a vulkan moment, you type 3 letters and get a 60 letter recomendation

opaque wharf
olive sable
#

its roughly 60

amber fractal
rigid snow
#

i think you mean the waveform not the specrtogram

amber fractal
rigid snow
amber fractal
rigid snow
#

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

tender river
amber fractal
rigid snow
opaque wharf
#
function initUniverse(...description[]) {
// Omitted for brevity
}
rare bramble
# tender river

ICANT cant read out the name without gasping for air in the middle

rigid snow
olive sable
amber fractal
olive sable
opaque wharf
tender river
opaque wharf
#

Chay, how did you always come up with cursed stuff

amber fractal
#

was close

rigid snow
# olive sable and x and y and z and w and ...

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...

olive sable
#

afaik that is how that works?

rigid snow
#

it's not called Z i can tell you that much

amber fractal
olive sable
#

i did it in one breath

amber fractal
rare bramble
#

there should be a penalty for using algorithms to autogenerate names like that

jagged turtle
rigid snow
#

the first one was 6s

opaque wharf
jagged turtle
#

but in the z-axis

opaque wharf
amber fractal
#

I'd not be suprised if there was a macro in the same crate

rigid snow
uneven pulsar
#

Has anyone used Folia (Minecraft server toolkit)? Does it work well?

amber fractal
rigid snow
amber fractal
#

16 cores recommended was steap back when I tested it

rigid snow
#

the spec is in the repo

#

definition.txt i think

jagged turtle
uneven pulsar
jagged turtle
#

oh

#

I just saw

#

so anyways

rigid snow
jagged turtle
#

I'm not even gonna ask how JS sucks at waiting for a sibisecond

#

we got new Date(1) after all

rigid snow
#

and you can only sleep for milliseconds and afaik it's not even guaranteed you sleep for what you exactly specify

amber fractal
jagged turtle
#

also @rigid snow since you know a bit about standalone vite do you know how to instruct vite to treat .js files as cjs

rigid snow
#

can esbuild even handle cjs

tender river
#

to avoid desync

amber fractal
jagged turtle
rigid snow
tender river
#

obviously not a fixed settimeout but manually calculate the delay by doing some maths with time

jagged turtle
#

obviously cjs/esm mixing will never go well tho

tender river
#

the same way time is done in game loops

amber fractal
uneven pulsar
amber fractal
#

I had zero luck with backpack plugins

amber fractal
olive sable
hard raptor
amber fractal
hard raptor
uneven pulsar
amber fractal
tender river
#

i'll probably write a dynamic linker next (not for the os, i just want a dlopen)

olive sable
#

its working now, also evilFlashbang

uneven pulsar
#

How can i embed....

olive sable
#

chat more -> get xp -> level up

tender river
#

nesus

uneven pulsar
rigid snow
tender river
#

but nesus is right there

rigid snow
#

programming ≠ osugaming or nn

#

or livestream-chat

#

or any other fucking channel but programming

amber fractal
#

I don't see any fish, so signs are slim

olive sable
#

(who?)

past cloud
amber fractal
tender river
#

traits

#

but typeclasses are better since they allow independent extensibility

small anvil
#

hello fellow programmers i am in the process of touching real grass and i forgot what it feels like

small anvil
rigid snow
#

what if i tell you i touch grass every day... neuroSadge

small anvil
#

i had to get out for a bit cause my parents aren’t liking me staying in my room for weeks on end..

hard raptor
#

I too love the programming language of Puccinia triticina
(Haters will say that it's Iron-oxide)

rigid snow
#

i think it's an opinion shared by many here

#

something something echo chamber

noble zodiac
#

if #programming had a sports festival at least half would die of a heartattack

rigid snow
#

what if rust is actually the devil and we're too blind to realize

small anvil
#

i think you’re onto something

hard raptor
#

Though i rarely use Rust

rare bramble
#

🦀 this 🦀 is 🦀 not 🦀 an 🦀 echo 🦀 chamber

hard raptor
hard raptor
opaque wharf
#

So, we have KRANS and KTrain

rigid snow
#

kde invasion

hard raptor
hard raptor
#

You were first 😦

rigid snow
#

beat you to it neuroTomfoolery

hard raptor
olive sable
opaque wharf
#

I have now become a part of KDE

rigid snow
#

2???? i don't exercise like at all and can do at least 20

opaque wharf
#

mlntkandy just doesn't have the same ring to it evilSMH

olive sable
rigid snow
opaque wharf
small anvil
opaque wharf
#

Does cycling not affecting thigh muscle?

olive sable
#

cycling is just in the genes of the homo-sapien-europeanus

noble zodiac
#

and a good amount of drugs

olive sable
#

shhhh

#

rule 3

noble zodiac
olive sable
#

i alread have 106 lines of code for just initializing the vulkan api

opaque wharf
#

Isn't the hello triangle close to 1000 LOC?

small anvil
olive sable
olive sable
noble zodiac
#

a tiny bit of triceps but mostly chest muscles

olive sable
#

bruh

#

nobody gave me that memo

opaque wharf
#

You need to study more biology evilSMH

small anvil
#

I think if you do it any other way you’re at risk of breaking something

#

Im not a doctor though

olive sable
small anvil
#

It could give you magic powers

#

You didn’t hear that from me though

olive sable
#

there is no reason to duplicate eveything 15 times

rigid snow
#

like ??

small anvil
#

That makes sense

rigid snow
#

NO ITS NOT JUST DOWN

#

ITS FUCKING RANDOM

small anvil
#

OH

#

LOL

#

WHAT

rare bramble
opaque wharf
#

It is using bogosort

small anvil
#

Who even pushed the commit for that fire them bro neurOMEGALUL

rare bramble
#

and It as been a persistent issue for such a long time

small anvil
#

No matter how I look at it there’s no reason for it to be random BUT IT IS

past cloud
small anvil
#

Look at the sliders at the top neurOMEGALUL neurOMEGALUL

#

iOS hell

rigid snow
#

i gave up moving the button btw

#

it’s actually impossible

olive sable
#

"imagine having an iphone" NeuroClueless i say while my smasnug is falling apart

tender river
noble zodiac
#

KDE 😒

tender river
#

kde connect and kdenlive are the only 2 kde apps i use

#

and krita i guess

olive sable
#

niuh validation layers

#

i expect this code to be very bad by the time i get a trianlge on screen

rare bramble
barren ferry
#

Hi

maiden geyser
#

hello mister steam emulator

barren ferry
barren ferry
opaque wharf
#

konii is part of KDE confirmed

olive sable
#

i have chocolate pastries with cream NeuroBounce

green iron
olive sable
jagged turtle
brittle copper
#

pressures on, hell week is the worst

#

schedule looking like a ww3 prep

rigid snow
#

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

opaque wharf
#

pstree

rigid snow
#

it is its own process

#

i mean it's literally a binary named Code Helper (Plugin)

#

that's normal on macos ICANT

opaque wharf
#

Crypto miner NeuroClueless

rigid snow
#

so probably not a crypto miner

opaque wharf
#

Everything that performs computation on my computing device without my explicit permission = crypto miner evilWheeze

rigid snow
rigid snow
#

and a while is like 12+ hours

olive sable
#

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

stark needle
#

awa

opaque wharf
rigid snow
#

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

opaque wharf
#

Then the fix is easy. Restart the process after 8 bours

rigid snow
#

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

opaque wharf
#

Then use it on the desk so it become a desktop

rigid snow
#

it's a unibody aluminum chassis it will burn my hands then

opaque wharf
#

Everybody knows you need a keyboard when using desktop duh neuroPogHD

#

Keyboard AND mouse

rigid snow
#

i don't have a keyboard with me, and using a mouse on macos is worse than it sounds

opaque wharf
#

What happens when you use a mouse with MacOS? catdespair

rare bridge
#

apple ceo comes into your house and yells at you

rigid snow
#

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?

opaque wharf
#

Oh dang, it's almost day 2 of bime

#

Can't wait for day F of bime

#

It shall be known as F day

rigid snow
#

the day thing is rendered as decimal evilDeadge

rigid snow
#

WAIT, we just have to invent becimal and we are distinct enough from hex time

tender river
#

kde should rewrite linux

#

the project shall be known as

#

kernel

opaque wharf
#

chay, why don't you join konii with KDE?

tender river
#

i use sway neuroFumo

rigid snow
#

every time i hit my desk fan it spews out a huge cloud of dust

opaque wharf
olive sable
#

I put my old pc in the game room for purely for playing res evil 7 at my sleepover. NeuroBounce

rigid snow
olive sable
#

Brother how is this not optional???

rigid snow
#

experience the power bro...

olive sable
#

I dont wanna AquaCry

#

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 EvilDead

rigid snow
#

now the ipad is a power wheels but with pcs instead of cars

maiden geyser
opaque wharf
#

How do I reset OBS config? Why is it segfaulting without any other information catdespair

#

Alright, why does OBS automatically decide to record in HDR

#

And why does recording HDR result in a segfault catdespair

#

You know what? I don't wanna know. At least now it's working

hard raptor
#

This is what my ableton usually runs on

faint sandal
#

eww directsound

#

use asio like a sane person

hard raptor
faint sandal
#

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)

hard raptor
#

i know how asio works...

faint sandal
#

so why aren't you using it

hard raptor
#

it's just really unstable on this laptop if i use any form of asio

faint sandal
#

FL ASIO is universal enough that it shouldn't be a problem

hard raptor
#

okay FL ASIO kinda works

#

but it still is more stable on directsound

faint sandal
#

have you adjusted the buffer size

hard raptor
#

It won't let me lol

faint sandal
#

does the hardware setup not do anything

hard raptor
#

i could try to use generic low latency ASIO Driver that one has a config program

faint sandal
#

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

hard raptor
#

i really don't care about latency

#

at this point

faint sandal
#

if you're mixing you're undoubtedly going to hear differences in-DAW post-mix and render

hard raptor
#

i am already happy if i can get sound without crackle

faint sandal
#

latency is just one of the issues

hard raptor
#

look man

#

i am already working on building an actually fgood pc

#

i didn't even post the screenshot to get help

faint sandal
#

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

hard raptor
#

but i can't shove a whole ass audio card in my 10+ year old laptop

faint sandal
#

most interfaces are USB-based

hard raptor
#

i know

#

but i have limited usb ports on this thing anyways

rigid snow
#

day 2

opaque wharf
#

Oh shit, I missed it

rigid snow
#

dw i did too

noble zodiac
#

so much abstraction but I guess it works

maiden geyser
#

new nvidia driver yay

tender river
#

the code is fully cross platform!

ebon basin
#

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

tender river
#

the code:

#

this is just c in disguise neuroDespair

ebon basin
#

I just think who the hell is "Luna"

nocturne olive
#

And temperature

#

That one is important

ebon basin
#

Hm yeah I don't think whisper put a "?" at then end of my actual question this could be the source

nocturne olive
#

That is not what I meant

ebon basin
#

yeah there was more

nocturne olive
#

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

hoary lion
#

finally installed linter

stark needle
ebon basin
stark needle
#

json file

nocturne olive
opaque wharf
rigid snow
#

well tbf it's jsonL

opaque sigil
#

reminded me i still have this thing lying around, should probably yeet neuro7

opaque wharf