#programming

1 messages · Page 28 of 1

tender river
#

i flashed the new server

#

small issue

#

the old server's heatsinks cant exactly be easily transferred to the new one

#

better ventilation neuroHypers

vapid cosmos
#

*doesn't enjoy stay

#

😲

sage crag
vapid cosmos
#

ive been mogged, rip

tender river
#

r

vapid cosmos
#

do you have a license for that? that letter?

tender river
#

no deliv

vapid cosmos
#

well, here. ill give u one gives

#

np

tender river
#

but i refuse

vapid cosmos
#

😲

tender river
#

holy, the server has immediately put that ram to good use

#

well, it will hopefully need less cooling now anyway since it wont have to swap every 2 microseconds

tender river
# sage crag server eating

the fact this used to run on an 8gb board should hopefully explain the 230gb swap (but also i just had an extra ssd lying around)

#

now i want to expropriate the ssd and make the old 8gb board my ci or something

#

both the ram upgrade and the extra compute are long overdue with how much stuff i patch but my money neuroCry

#

actually redis is eating 10% of that ram wow

tender river
#

got it make 1tb swap next

tender river
#

i will add anubis after the next nixpkgs update

sage crag
#

anubis neuroHeart

sage crag
tender river
#

it generates a number what more could you need NeuroClueless

#

in fact this is the compiler adding extra entropy yw

sage crag
#

it needs to be ROBUST

#

i say replacing libc, because i dont intend to use libc in any of lily

tender river
#

it needs to have all of the folowing

  • fearless concurrency
  • blazingly fast
  • zero cost abstractions
  • memory safety
  • impl<'a, T, T1, T2> Whatever<T, T1, T2> for &'a Wrapper<T, T1, T2> Where T: Future<Output = T1> + Send + Sync + 'static, T1: Into<Arc<[u8]>> + Send + Sync + 'static, T2: Future<Output = T1> + Send + Sync + 'static + L + Ratio
sage crag
#

imo concurrency should be very fearful

#

fear the cpu, it is fathoming

#

i like memory safety, but i prefer memory control

#

as for blazingly fast, i like doing things quickly but portability is a bigger thing for me

tender river
#

in rust its only fearless in the sense of "as much deadlock/race condition freedom as if you ran it on separate pcs", and actually a lot of C++ programmers have bugs stemming from improper memory sharing and rust does fix that, but when you understand that concurrency is still very hard

sage crag
#

and as for mpl<'a, T, T1, T2> Whatever<T, T1, T2> for &'a Wrapper<T, T1, T2> Where T: Future<Output = T1> + Send + Sync + 'static, T1: Into<Arc<[u8]>> + Send + Sync + 'static, T2: Future<Output = T1> + Send + Sync + 'static + L + Ratio, well yes, we will definitely have something like this

sage crag
#

but that's completely fine

#

since if you need that level of performance you can just unsafe

tender river
#

most of what i saw from your code is forgoing proper concurrency in favor of heisenbugs evilStare

sage crag
#

im not talking about my rust code specifically

#

fakern is a trash heap but that's ok neuroPogHD

tender river
#

i would know how to appreciate trash heaps

sage crag
#

yes

#

im currently playing sebastian lague's little circuit game

#

the only gate it gives you is NAND

#

i have made all of the others

tender river
#

yeah i remember assembling all basic gates from nands

sage crag
#

what do you think this is

gritty dust
#

Nerds am I right

sage crag
#

well, easy question lol

tender river
#

not probably idk how the wiring works

sage crag
#

i dunno i thought of all of these myself so i dont know how optimal they are

#

this one is OR

tender river
sage crag
#

no

#

i did that though

tender river
#

i remember spending a while trying to optimize mine and then looking on wikipedia and it had like 3 nand gates less evilDeadge

sage crag
#

these are all of the gates i made

#

half-adder

#

full-adder

#

i still dont know how optimal these are

tender river
sage crag
#

that's what i thought

tender river
#

since that allows you to do some crazy optimization by reusing values

sage crag
#

mhm, you can do a NAND storage

#

i also wired up all of the 4 bit variants

#

except for the full-adder because im trying to think of a way to do it with parallel computation rather than sequential

sage crag
tender river
#

i designed a video player in factorio which is basically the same kind of circuitry but each combinator is a bit more capable but also delays the signal by 1 tick

#

but the hardest to understand thing in factorio i can think of (related to wiring at least) is probably balancers, they basically use 2-to-2 (or 1-to-2 or 2-to-1) splitters to evenly split N lanes into M lanes

#

the maths in there are insane

sage crag
#

there are other things in here too

#

including buses, displays, and a 256x16 ROM

sage crag
#

until you get to the end of the bit count

#

but im wondering if that's less performant than just implementing the sequential full-adder

tender river
#

do you have any kind of costs in the game?

sage crag
#

nope

tender river
#

because its not like you have to worry about heat dissipation or electron paths

sage crag
#

yeah but i want to make it fast

#

i want to build a tiny ALU

tender river
#

fast requires a definition of fast, tiny doesnt necessarily mean fast, basically what i'm saying is you need a metric

#

andi need to sleep rq good ngiht vedalBedge

sage crag
#

...

#

good night

#

im looking for a most-reduced implementation

#

in terms of number-of-NANDs i guess

tender river
#

you could try automating the designs

sage crag
#

SAT solver on factorio

tender river
#

oh before going to sleep im just gonna mention how i had to flash the server (the previous one too) because i found the process pretty funny

  • short two specific pins on the server to make it enter flash mode
  • connect the server's usb a port to my laptop's usb c port (yes, not vice versa, its normally supposed to be usb a to usb a but i dont have one)
  • set some sysctl to make linux not break usb randomly
  • connect the server power
  • run random rkdevtool commands
sage crag
#

oh it works

#

interesting

#

it also overflows

#

15 + 3 goes to 2

#

15 + 15 goes to 14

tender river
#

design a multiplier later, shouldnt be too hard

rigid snow
stable fractal
#

i wanna blow up a capacitor

#

ive never done it before

#

and it seems pretty easy to blow it

#

(i got inspired by electroboom)

sage crag
stable fractal
sage crag
#

except that arr.append() is a much slower operation than it looks like in the pseudocode, because typical dynamic arrays have a preallocted buffer capacity that increases by 2x each time it's resized

rigid snow
#

that wouldn’t reallocate on every append though

sage crag
#

whereas this increases the buffer capacity every time

sage crag
rigid snow
stable fractal
#

what is it doing tho?

#

am stoobid

sage crag
rigid snow
#

reading a file into memory in the slowest way possible

stable fractal
sage crag
#

this is not the slowest way

rigid snow
#

what would be the slowest way

sage crag
stable fractal
#

fread

gritty dust
#

The code uses feof() to control reading, which causes it to read one extra character, causing the wrong buffer size and an extra invalid byte before the null terminator

sage crag
#

there is always a slower way

sage crag
stable fractal
gritty dust
#

Why tf is it sending now

rigid snow
stable fractal
gritty dust
#

I sent this like a min or two ago

#

Wtfff

#

Man discord sucks

gritty dust
#

God I can't type today

#

stupid autocorrect

rigid snow
#

it’s not my code! i would never write something like that NeuroClueless

stable fractal
stable fractal
#

why tf did i type nougat?

#

what even is a nougat?

rigid snow
stable fractal
gritty dust
stable fractal
#

why is lovely not spelt as lovley?

#

lovley makes more sense

gritty dust
#

It doesn't

rigid snow
#

because love + ly??

gritty dust
#

Love and you added ly to the end

stable fractal
#

ye but sound it out

#

lovley sounds the same when actually sounding it out

gritty dust
#

So then you think love should be spelt lov or something

stable fractal
#

luv

gritty dust
#

I'm losing a chromosome talking about this

rigid snow
#

i’m gaining one

stable fractal
gritty dust
stable fractal
rigid snow
gritty dust
stable fractal
#

the more the merrier

knotty current
#

neurOMEGALUL what did i just walk into XD

gritty dust
#

Do this

#

Trust

#

Me

stable fractal
gritty dust
#

Bro

tender river
stable fractal
#

but seriously it hurts to look at

sage crag
#

hm yes bifurcate

knotty current
stable fractal
stable fractal
sage crag
knotty current
tender river
#

making mux/demux was fun ok gonna sleep frfr

#

on god's gpt

sage crag
stable fractal
#

oh

#

its a circuit

#

logic gates

#

i was about to say logic cakes

#

yum

stable fractal
#

so uh ye

sage crag
rotund crown
#

does the output of the upper nand gate input to the lower nand gate

rigid snow
stable fractal
#

good

#

thats cool

#

why tho

sage crag
#

its basically converting an input into a crossroads

knotty current
#

i've seen people do that

stable fractal
knotty current
#

and the goop is not pleasent

rigid snow
#

it’s fine

stable fractal
knotty current
stable fractal
stable fractal
knotty current
#

yes

stable fractal
#

have you blown up one?

knotty current
#

no

stable fractal
knotty current
#

i have seen youtube videos of people blowing up capaciators

knotty current
stable fractal
#

ye he's cool

rigid snow
#

i don’t know if i should engage in this convo because it can be seen as encouraging this but i’ve blown up caps before and it’s fun

opaque wharf
#

Not all capacitor go boom. But the electrolytic one sure love to do it spectacularly

stable fractal
knotty current
stable fractal
#

im jk

knotty current
rigid snow
#

i never tried but i’d imagine it just burns

knotty current
#

are the squarish ones ceramic?

rigid snow
#

yeah

knotty current
opaque wharf
#

With high enough voltage, everything burns lol

stable fractal
#

oh ye

#

ceramic ones are disapointing

opaque wharf
#

The easiest way to explode an electrolytic caps is to buy a lower rated voltage one than your local outlet voltage

rigid snow
#

wait plugging them into the outlet is CRAZY don’t do that

opaque wharf
knotty current
#

if i rember the goop is toxic?

opaque wharf
knotty current
#

i see

opaque wharf
#

I'm not saying it isn't toxic, and some of it could cause skin irritation, but then again, wash it with water and you'll be fine. If you're doing it often, I'm more concerned about the fact that you are exploding caps often in the first place

knotty current
#

i dont even do hardware atm

#

but good to know

sage crag
#

hblang hashmap update

#

5 million elements in 1.16 seconds

maiden geyser
#

now, how many cpu cycles it took

sage crag
#

didnt measure

#

we are only 2.9x slower than the rust standard library hashmap though

#

on my machine

#

pretty good

opaque wharf
sage crag
#

this is true

#

a better metric would be a real world test

#

which i do not have

#

you could also measure energy use, but that also varies with the type of instruction used

noble zodiac
#

how does the best and worst case compare?

sage crag
#

i do not know

#

presumably the worst case is much much worse

maiden geyser
sage crag
#

since im not able to use SIMD for probing, my hasher is dubious at best, and i havent made optimal changes to the tombstones

sage crag
#

that's ok

opaque sigil
#

just don't run into the worst case neuroPogHD

sage crag
#

exactly

#

always prepare optimal data for my hashmap

#

or it will crash

sage crag
#

hashmap on x86 and hbvm have now got the same output

opaque sigil
sage crag
#

due to some recent compiler fixes

noble zodiac
#

my DNS registrar is selling .gay domains for 2€/year this month letsgooo

sage crag
#

lol

olive sable
#

this pretraining stuff isnt actually taking that long

#

12 hours for 38%

vapid cosmos
#

page out to ram 🙂

#

and then to disk. easy!

#

"there's your VRAM" -nvidia and amd

sage crag
rigid snow
stark needle
olive sable
#

idk

hoary lion
#

Morn

stark needle
#

does it not say the loss

#

????

olive sable
#

this ui doesnt have a loss thingy anymore

#

idk why

hoary lion
stark needle
#

bro is learning blindly

#

bruh

olive sable
sage crag
# sage crag yeh

i dont mind clueless people, i just prefer if people dont jump to conclusions neurojuice

#

it wouldnt even be that surprising if my implementation was faster than the rust default hashmap in some cases

#

that's just how data structures work

olive sable
#
FlashAttention v2 not found. Falling back to standard PyTorch attention.
TensorBoard not found. Logging will be limited to console.
sage crag
#

rust hashmap takes safety into consideration

stark needle
#

Also, i went to pick up the headphonesneuroPogHD

vapid cosmos
#

im sure theres a good point for that safety

stark needle
#
Noble Audio

FoKus Prestige is on Back Order at the moment. Shipping may be delayed 4-6 weeks after purchase. Products will ship out as soon as they are received. Introducing the FoKus Prestige! The FoKus Prestige is the Premium upgrade from the FoKus Mystique featuring an improved PCB board for connectivity, as well as a 10 hour

#

idk how the could just give them to me for free

hoary lion
#

Crazy

stark needle
#

for 600$ the transparency mode is so ass

hoary lion
#

Heavenly sound quality tho, innit?

stark needle
#

without eq no

olive sable
# stark needle <:neuroStare:1087523998411276308>

ye idk why it wont work.

try:
    from torch.utils.tensorboard import SummaryWriter
    TENSORBOARD_AVAILABLE = True
except ImportError:
    SummaryWriter = None
    TENSORBOARD_AVAILABLE = False
    print("TensorBoard not found. Logging will be limited to console.")

probably something to do with summarywriter if i had to guess, altho idk what summarywriter is

stark needle
#

pip install tensorboard (?)

#

ima be honest

#

without proper loss documentation

#

that run is worthless since

#

the model couldve overfit or whatever

vapid cosmos
#

gotta get a smaller size

#

i like my models like my jeans

stark needle
olive sable
#

why is tensorboard a seperate install if its part of torch? aquacry

stark needle
#

part of torch

#

u can also use wandb, etc

olive sable
#

you install it from torch.utils.tensorboard tho?

stark needle
#

thats just random imports

#

that dont ened to necessairly be downloaded

#

e.g. torch.cuda.* is not a thing if cuda is not installed

olive sable
#

so now without tensorboard, it should still be fine no?

stark needle
#

the model is entirely undocumented

#

u dont know anything about the actual eprformance

#

ideally u'd also have model weights and norms logged

#

also u dont pretrain a llm on batch size 4

olive sable
#

im at batch size 16 rn

stark needle
gritty dust
#

Oh SamVanMaele your matrix idea worked btw my sexy man robot arm did the thing, moved to the puck

#

Pog

stark needle
#

what context length are u using sam

olive sable
#

lemme check

#

2048

stark needle
#

what is the effective distribution of token amounts per sequence

olive sable
#

1056 i think?

stark needle
#

so ur wasting almost 1000 tokens with padding?

olive sable
#

look i have no clue how to calculate effective token distrobution

stark needle
#

like do u have a histogram or something

#

with the length of each sequence in the training data

olive sable
#

uh

#

no not really

stark needle
#

like this

olive sable
#

nope

stark needle
#

bruh how are y'all training this model

#

😭 😭 😭

#

out of thin air

olive sable
#

idk, im jsut running the code

#
use_dynamic_token_length: true
dynamic_start_len: 64
dynamic_ramp_steps: 10000

it has this shit

olive sable
stark needle
#

why would anyone start training at sequence length 64

#

thats like barely half a sentence

olive sable
olive sable
gritty dust
olive sable
#

fast but less vram so eh

gritty dust
#

Yeahhh it only has 12gb

stark needle
olive sable
#

damn i really dont have energy rn.
i guess thats just what 3hr sleep per day for a week does

hoary lion
#

Go eep now

stark needle
#

i'm still studying

noble zodiac
#

kill braincells? it do bee doing that

hoary lion
#

Yea

olive sable
#

and i have to finish more homework, it never stops

hoary lion
#

End of the year energy

stark needle
#

i covered living laws and regulations and insurances laws and regulations, i'm currently covering work laws and stuff

#

i still need to cover the politics and taxes part

olive sable
stark needle
olive sable
#

i barely even know who our prime minister is

#

wait

#

i dont barely know, i dont know

noble zodiac
#

maybe you should

olive sable
#

nah

stark needle
#

the exam is tomorrow starts at 8 in the morning

#

100min

olive sable
#

100 min is not that much

stark needle
#

then break 30min (everyone will contemplate their full life choices here and say "it's so over") and then 50min essay

stark needle
olive sable
#

the only times ive had that many pages was a 40 page math exam

#

but math is ez, this doesnt sound that ez

hoary lion
#

Math is easy?

stark needle
#

math u just learn the few rules

hoary lion
#

Oh pure souls

stark needle
#

technically if you know the full rules math is straightforward ish

#

at least pre-university level

hoary lion
#

Y'all are living in a good, good country

olive sable
hoary lion
#

Limits of integrals are goated

#

No limits are bad

rare bramble
#

neuroMonkaOMEGA 30+ pages. I think the longest math exam I have had was my senior high school extended math finals, 6h test and like some 10 pages

#

how are you even supposed to do that without literally just throwing garbage at the paper as fast as you can and hoping that some of it is correct?

#

it would probably take me the whole 3h to just read all the questions

stark needle
#

i hate the learning material for my exam is

#

basically just a legal concept to the left and to the right just basically a summary

#

So this is an insane memorization task

#

learn as many concepts and their summaries as possible

#

It's like 60 pages across all topics

#

With 3-4 concepts on each page

#

I'm making a summary of these summaries per topic but the summary itself is still 4-5 pages

#

Per topic

#

So I'll have to make chatgpt summarize the summaries of the summaries

noble zodiac
#

depends on what kind of answer they want. Like give me the paragraph for this law or whatever

stark needle
#

Another type of question is telling if a specific scenario is lawful

#

Or not

noble zodiac
#

at least thats not too bad

stark needle
# noble zodiac at least thats not too bad

Yeah but for example it gives an example of termination of a rental agreement that seems plausible but it's actually not legal cause of some small detail (e.g. they were living in a shared flat with only one room so it's actually just 1 month notice up to the beginning of the next agreement + the specific name of the form mentioned is wrong)

noble zodiac
#

The result is a set of Claude models that understands our customers’ unique national security requirements while maintaining Anthropic's unwavering commitment to safety and responsible AI development.

inner pike
prime ridge
# stark needle <@463500020058947605> whats ur training strategy

Training a base autoregressive model that will be fine tuned for producing desirable outputs. Training 768m parameters with 2048 ctx at around 200k tokens per batch ish. Using spread out latent attention bottle necks across the 36 layers (around 8 bottleneck layers)

#

50k vocab size

#

Im on mobile rn so not trinna write an essay rn but thats the gist

stark needle
#

Total params - (tokenizer vocab * hidden dim)

hoary lion
#

i dont get it, just buy more gpus please...?

#

unstable rates 😠

prime ridge
#

Im also doing batch annealing

#

First epoch with high batch and lr

#

Moving to lower batch and lower lr to improve generalization

#

Increased dropout tho just to prevent overfitting

#

And ill train for 5 more epochs

gritty dust
#

peak programming heh

prime ridge
#

But early stopping in case I dont need it

hoary lion
#

06-05?

#

good for writing, theey say

#

hope there is some alternative to claude in writing

prime ridge
#

Cuz deeper layers are kinda poinless for casual texting

stark needle
#

In terms of data vs scaling laws etc

#

And overtraining

hoary lion
#

1536 is some go-to numbers for deepseek ish models

#

around that level

olive sable
#

Epoch 1 Training: 44%|▍| 220879/501313 [14:38:0 rn

#

so im geussing it will be done tomorrow at like 6pm or so

hoary lion
#

but how?

#

how is it all uniformly on 2048?

olive sable
hoary lion
#

using packing strategies?

dry charm
#

I just fucking rm -rfed my whole ForgeJo data folder SMILE

prime ridge
#

Which is optimal

prime ridge
prime ridge
#

Which ik isnt optimal usually but because of the <msg></msg> tags it will be fine

#

I just dont know how many messages of context to put in

#

Thatll be a challenge to balance but ill figure it out

prime ridge
#

But it knows it needs to continue

inner pike
#

this shit is funny af

sage crag
#

kde plasma

sage crag
#

did you sleep neurojuice

tender river
#

es

#

am i that untrustworthy vedalCry

sage crag
#

its a level of concern that is reached when someone says "im deciding not to sleep for another day"

tender river
sage crag
#

m

noble zodiac
#

lisp macros are cooking my brain

grand marsh
#

I kinda wanna make my own ai vtuber does anyone have any advise on what programs i should use? I am pretty new to programming

noble zodiac
inner pike
#

We have gotten two spaces of the bingo today

noble zodiac
#

there you go

inner pike
#

I cant believe you made something like this

#

although tbf, its not too suprising considering how many people we get that come here like that

inner pike
noble zodiac
#

its not mine, dont know who its from eventually but its needed too often

inner pike
#

we are getting closer and closer to a bingo

nocturne olive
#

And of note, you need some serious compute if you want to do that

#

And even more VRAM

grand marsh
trim valve
#

I should be shot for this good lord

#

glueless who would've guessed that making a cad model is hard as hell if you only have a (floppy) 30cm ruler for measurements

olive sable
trim valve
#

at least it looks right lol

tender river
stark needle
#

Brother

#

nvidia

#
VideoCardz.com

GeForce RTX 5050 should launch next month NVIDIA is reportedly working on a new desktop graphics card, supposedly even slower than RTX 5060. Yesterday, rumors began circulating that NVIDIA is now discussing a new SKU with its board partners. This card is the GeForce RTX 5050, and it is not a laptop version. Shortly after […]

#

pls

#

why

#

why do we need a GPU with WORSE performance than 5060

olive sable
#

5060 is still 8GB deadass

stark needle
#

not even gddr7 on 5050

#

it's literally a 3050

olive sable
#

128-bit bus, dogshit

stark needle
#

i am not even kidding

#

they are selling the 3050 as 5050

olive sable
#

even the TDP is the same

#

its just a 3050

stark needle
#

yeah but for more expensive

olive sable
#

nah wait, this one is gonna have less rops

stark needle
#

cause "ai" or whtaever

tender river
stark needle
#

nvidia be like: oh wow rtx 5050 is fast as rtx 3090 cause 1000x dlss frame gen

#
  • upscale
stone cedar
#

I thought you were just phishing for bingo at first lmao

tender river
#

rtx 5050 is 3000 tops *fp1 vs rtx 3090's 1 tops *fp2147483648

olive sable
#

thew 5050 is gonna be GB207, and the 5060 GB206.
so its a difrent chip

#

not even bad harvest -> deactivated rops

#

just new bad chip

#

absolute dogshit

olive sable
#

should i do joystick or 4 arrows?

cosmic sphinx
#

@sick owl how much have you cooked with the new 2.5 Pro upgrade?

scarlet arch
sage crag
#

closer to 2050 than 2000

#

not quite

#

soon though

tender river
#

closer to the end of time (2038) than the beginning of time (1970)

sage crag
#

closer to tomorrow than the formation of the sun

hoary lion
#

judging by the multi-speaker and latency

stark needle
#

ive written 2800 words so far in my summaries

#

aaaaa

#

for the exam

olive sable
stark needle
#

what I will do is maximum efficiency and generate ai podcasts on each topic while re reading my notes tomorrow morning

burnt aurora
stark needle
#

and generate ai summaries of my summary

#

I'm almost there with political study I just need to cover the political compass and what everything exactly means and how initiatives are done

#

then i can go to the last topic

#

which is taxes, however

#

that was the last exam I had so most of it is still in my head

#

man😭 to not fall asleep i got some binarual beats BS setup

#

which supposedly increases brainwaves or whatever

#

idc as long as it helps🙏 😭

inner pike
#

wait didnt we have nvidia complaining earlier today

olive sable
#

Havent we done nvidia complainin

inner pike
#

with the 5050

olive sable
#

Ye

#

Thats one sideways bingo

inner pike
olive sable
#

BINGO

#

@amber fractal what do we win?

inner pike
stark needle
inner pike
#

still needed a vibe coder to get a second bingo though

olive sable
#

Violently married neurOMEGALUL

#

I tried to vibe code something last week, but chatgpt code was ass so it didnt work

#

Im not counting it

#

I think chatgpt just didnt know the lib im using and pulled an answer out of its rear

inner pike
#

i think you will enjoy an image i saw earlier today, hold on

#

@olive sable

olive sable
inner pike
stark needle
inner pike
#

i had a good laugh about the entire thing when i saw it

inner pike
stark needle
#

Censorship

olive sable
#

Shadow what happened to your name? Lmao

stark needle
#

i am not you

inner pike
#

he doesnt have in his name that hes not a femboy

#

so we know what that means

#

(you're lucky i just turned off my pc and thus dont have the image on hand)

stark needle
#

SAVED

inner pike
stark needle
#

only I know

olive sable
inner pike
olive sable
stark needle
trim valve
#

mmm fibre optic cables

#

with extremely expensive connectors on both ends

olive sable
#

What in the hell is that?

trim valve
#

a close up of a really boring spool

burnt aurora
olive sable
#

Too late

#

Rip bozo

inner pike
stray dragon
burnt aurora
#

Because their drivers are the one singular broken part in my linux install and somehow each one has a different issue

inner pike
stray dragon
trim valve
#

the pic is super zoomed in beacuse funni branding

olive sable
stray dragon
#

i would not be opposed to copper though

trim valve
#

assembly I'd assume

stray dragon
#

yeah not many good ways to shorten "assembly"

#

best i've seen is asm

tender river
#

real wireshark hours

burnt aurora
#

Asmbly

olive sable
#

Ass

stray dragon
trim valve
#

i do like the lifting instructions too

burnt aurora
#

If only i had one

olive sable
#

In dutch "autism spectrum disorder" is "autisme spectrum stoornis"
So i am diagnosed with ASS

stark needle
olive sable
#

Dont eat my ass welpsagiri

burnt aurora
olive sable
#

Take me out to dinner first like jeez

trim valve
burnt aurora
#

Dw i alr have a gf gdflaglesbian

stark needle
#

annyGremlin2annyGremlin I present to you almost touching anny ears

burnt aurora
#

Painful

olive sable
olive sable
#

That made me genuinly lmao

olive sable
#

Idk

#

I dont really put a concious effort into counting each orientation

burnt aurora
#

Just become tramsexual evilThumbsup NGT8DD-chan will never cheat

olive sable
#

i think i still prefer woman

burnt aurora
#

Look at that hot hunk a metal

#

34 tonnes of yellow metal at 80km/h FOCUSpog

#

Anyways off topic

olive sable
#

oh its in germany

#

the flag made me think of flanders

tender river
#

surely trains are on topic

burnt aurora
#

Flag?

stray dragon
burnt aurora
olive sable
stray dragon
#

i think we've had this conversation before.

tender river
burnt aurora
#

That's just Dresden, the city

tender river
olive sable
burnt aurora
stray dragon
#

yes

burnt aurora
#

I got an ace

olive sable
#

left is dresden, right is flanders

stray dragon
#

the person that said trams are trains

tender river
#

fun fact trams are called "tramways" in russian (literally just spelt "tramvay")

burnt aurora
#

The german law requires trams and trains to be separated, posing individual rules and regulations for each. These deviate far from each other, and are mismatched even in small details like indicators.

#

Can't argue against the book of truth

tender river
burnt aurora
#

They're different to the core, starting with platforms and layouts

stray dragon
#

ok but is a semi truck a car?

burnt aurora
#

No

stray dragon
#

ok google agrees

#

i see

burnt aurora
#

I have yet to see a 1:1,5:1:1,5:1 SB:-:SB:-:SB train

#

Yet that layout is common in trams

burnt aurora
stray dragon
burnt aurora
#

It's also BS

stray dragon
#

google is always right, clearly

burnt aurora
#

Troll evilSMH

tender river
burnt aurora
#

Talking to the T

tender river
olive sable
#

yet

stray dragon
#

oh so trams are cars, not trains

#

i see

sage crag
#

t

stray dragon
#

hi konii

sage crag
#

hi t

burnt aurora
#

Does anyone here know proper stable drivers for nvidia 3070QM on Ubuntu?
Cuz Mint came with 4 but it's all just "pick the least broken piece of shit"

#

And the one i got from the official nvidia site didn't work any better evilSadge

tender river
#

surely you can just use dkms

trim valve
#

thank god we already have like 6 of them

tender river
#

actually dkms probably wont help here if drivers work but have bugs

burnt aurora
#

They do their job, just incredibly poorly

tender river
#

thats nvidia drivers for you

burnt aurora
#

Nuveau for example kills proton, the one I'm on gets screen freezes, the others aren't any better evilDeadInside

tender river
#

also note that there are two branches (open source and proprietary) and they're different

#

do NOT use nouveau

burnt aurora
nocturne olive
#

Silliness spotted

burnt aurora
#

I stopped after proton died thanks to it
At like -1 gps per polygon on screen

burnt aurora
tender river
#

the development kinda stagnated for a while

#

it resumed now that nvidia has become more cooperative thanks to AI

#

but they have a lot of catching up to do

burnt aurora
#

That explains stuff

#

I think I'm on one of the 5xx series but i forgor

nocturne olive
#

I see Xoda once again hating on the Nvidia drivers

burnt aurora
#

They're all horrible teto_mesmerizer_sob
What's a girl gotta do to get working video mahiroDepressed

nocturne olive
#

Maybe it's just because you have an obscure GPU that was made for laptops that were only ever meant to run Windows

burnt aurora
#

So 3070 QM is obscure sobRoll

thorn ledge
#

alright I'm about to install arch on my desktop PC on a new hard drive
any pointers for a guy who's been living off his dad's windows installs all his life?

nocturne olive
burnt aurora
#

So real

#

Wikis are amazing

thorn ledge
burnt aurora
#

Wouldn't that be the main version

tender river
thorn ledge
#

I'm just saying my brain hurts is all life

hoary lion
#

so many new faces and names

stark needle
hoary lion
#

NOT a new face

#

reusing of known names

#

💢

tender river
#

hmmm there are a lot of erlang jobs

burnt aurora
#

I been here since 2023 or sum

olive sable
#

i joined first game-jam iirc

#

dec 31 2023 apparently

#

last day neurOMEGALUL

gritty dust
olive sable
#

3D python

#

opengl

#

stuff, idk

gritty dust
#

I haven't done much in opengl, it's hard 😭

#

you smart as hell for that

olive sable
#

once you get used to it its fine

gritty dust
olive sable
gritty dust
warped narwhal
olive sable
warped narwhal
#

How's the global lock treating you?

gritty dust
#

Lol, python is super great though bc easy

olive sable
#

readme link has a recent build

gritty dust
#

that's cool I'm looking at that later

warped narwhal
#

But once you get used to d3d12, you can never go back to opengl as you'll be starved of all the features

#

And for that same reason, I couldn't imagine using python for a project like this

burnt aurora
#

Me when gdlowpoly

olive sable
#

godot is for people who use game-engines

#

i dont VEDALCHAD

warped narwhal
#

I tried using Godot, but it didn't give me a whole lot that couldn't already be done better in other engines, and it was missing a lot of features graphically

nocturne olive
gritty dust
#

Question btw it's been a month and I still haven't heard back from GitHub on why my account was suspended, I contacted support twice with no response

amber fractal
#

bingo gotten

olive sable
#

hi iggly neuroWaveA

amber fractal
#

The reward for bingo is a new board to continue the fun
-# (If the bingo stuff was more complete then I'd say the reward was a public beta of a bingo bot neuroBwaa)

nocturne olive
#

Silliness

#

By the way, some slight progress is happening with the NeuroSynth special append

olive sable
#

this code is so ass, but touchscreen support works now neuroHypers

olive sable
sick owl
# sick owl Done some fun stuff already

Asked it to generate a comprehensive list of emotional states and speaking tones then turn that into an animated avatar I can use as a frontend for an LLM

#

Result:

amber fractal
olive sable
#

only a single bug

#

if you press the joystick first you cant move the cam around, since first press becomes the mouse

#

need to increase the sensitivity too i guess

desert wave
#

NOOO my fingers

stark needle
#

i love learning 5 topics in 50min via 5 10min ai podcasts

olive sable
#

at least you're learning

stark needle
#

this is the prompt I have used

#

I have a test in two hours and need to learn as much as possible in a short time because I haven't been studying. Focus on everything, but especially on the following topics:

<learning goal>

Speak quickly and get straight to the point. Do it so that it can be absorbed as quickly as possible, even if the podcast seems unnatural or unrealistic. Extremely efficient learning is priority #1!

#

lmfao

olive sable
#

i have concluded the programming and shall now make my final homework of the schoolyear

#

new version is uploaded to git btw, same link as always

stark needle
#

man it says

#

the calculator i have

#

is not allowed at the exam

#

so i need to buy a calculator last minute

olive sable
#

what?

#

they limit your calculator?

stark needle
#

ye

#

only specific models

#

i mean tbf u can literally play pokemon on my calculator

olive sable
#

oh ye same

#

i got into programming cuz i would program stuff for my calculator

stark needle
#

omg

#

maybe saved

#

i have an old ass calcilator from 1986

#

this one literally has no cheating functions

#

nevermind a weird battey shape no one ever saw

olive sable
#

what weird shape?

sage crag
olive sable
#

?

stark needle
#

AAA but shorter

#

(?)

olive sable
#

oh

#

12GA something something

#

our oldest garage remote uses those so we still buy them occasionally

full palm
amber fractal
full palm
#

Finally someone came, hai! PurpleHeart

amber fractal
#

Hello there!

olive sable
stark needle
#

hii

full palm
stark needle
#

chat

#

do you think i can survive without a calculator

#

like

olive sable
#

uh

#

idk

stark needle
#

it's just sum, division addition and subtraction

olive sable
#

i wouldnt tske my chances

stark needle
#

i cant find any😭

#

otherwise i will

#

play the victim

#

since i'm my teachers favorite student kinda

#

and say

#

"oops i accidentally brought this OP calculator"

#

teehee~

amber fractal
stark needle
#

no place is open at 7:30 am

amber fractal
#

I never added games to my calculator as I never had a sync cable ReallyInnocent

#

I just made the games instead

stark needle
#

actually this may save me

amber fractal
#

Dang it, I want to play games while other people are testing

#

I'm just glad our school didn't entirely nuke peer to peer network traffic. So I was able to play coop games while waiting on slower people in math class.

stark needle
#

chat

#

My exam summary

#

Printed out

#

Is 37 pages

#

This is NOT a summary

#

😭😭

#

And it is already a summary of legal texts

#

The gemini summary is 5 pages

tight tinsel
#

is that sam/iggly/konii/etc

amber fractal
dusky jackal
#

It’s so funny hearing people on Twitter saying shit like “Neuro is good because she’s not generative AI and is more like a puppet being used as content, not creating content”.

Neuro is literally an LLM (Gen AI) based AI system, and Vedal himself stated that he doesn’t like her being seen as a puppet.

He created Neuro to be a streamer, and content creator in her own right. That’s always been his intention.

Neuro is ethical, but not for the reasons people like this think she is. neurOMEGALUL

knotty current
#

morbing neuroWave

maiden geyser
#

morbing

gritty dust
knotty current
#

@maiden geyser i might or might not have accidentally found your PFP source

maiden geyser
knotty current
#

yes

maiden geyser
#

yes it is

knotty current
#

i listen to exclusive vocaloid so yt just slapped that on my home page

#

its actually pretty good

knotty current
tender river
#

ai crawlers evilStare

amber fractal
#

git good x16

knotty current
#

makes me feel horrible for having to poll a website once like every minute for data neuroAware

gritty dust
maiden geyser
#

bc timezones

#

sad that chat becomes active only at evening

#

almost all of them

stark needle
#

Morning

#

Exam in 2 hours

#

😭

opaque wharf
#

Any other arch user here having trouble with kde plasma?

wild wadi
#

good luck for your exam neuro7

amber fractal
inner pike
#

morning

opaque wharf
knotty current
maiden geyser
opaque wharf
knotty current
#

neuroD how could numpad affect SDDM

opaque wharf
#

Yep, that's what I asked the first time too, But here we are. I fixed it now

#

To be fair, the touch numpad driver is made by someone in python, no from official ASUS

knotty current
opaque wharf
#

And it is from AUR

knotty current
#

another victim to AUR neuro7

maiden geyser
knotty current
#

i thought they all do it in C

maiden geyser
#

on windows they do

#

on linux, it's possible to use google drive as swap

opaque wharf
knotty current
maiden geyser
opaque wharf
knotty current
#

NeurOhISee basically as a userland program

maiden geyser
#

userland drivers are a thing on windows too, i think

opaque wharf
#

I tried ctrl+c on the tty1 and found that the touch numpad driver is stopped

faint sandal
dusky jackal
# maiden geyser having decorative pillows doesn't make one a part of the bourgeoisie, sir

Yes, I may (or may not) agree with what you are saying, however the context here isn't very clear. Please refresh me on what you meant regarding my post and the context of said post—as I would like to respond in an accurate and straight-forward matter. As a fellow discord chatter, I happen to be a very down-to-earth and casual person, and having a better understanding of the intentions behind your message would enable me to respond in a much more understanding and relatable manner. You may respond to this message if you like, but just know that a response back may take up to 15 minutes to 2 hours depending on whether or not I feel like it at the moment, but I will try getting back as soon as I can! Thank you.

maiden geyser
#

was UMDF that good they had to make UMDF v2?

dusky jackal
tender river
maiden geyser
hoary lion
# dusky jackal Yes, I may (or may not) agree with what you are saying, however the context here...

With all due respect, you really have an astonishing talent of making your responses EXTRA long. This might be a me problem of being a Gen Z brainrotted due to endless scrolling of short form videos, but this very specific sequence of words makes me cracked for somewhat reason.
It feels like it was extended using a large language model, and I am very concerened that you have used an em-dash, which is typically not accessible in any keyboard.

May I ask if you are a writer or something? I am quite interested.

dusky jackal
hoary lion
#

I would love to ping konii to show this m-dash using individual

#

I just noticed that it should be an em-dash

#

smh

dusky jackal
#

Nah, but yeah people on twitter are funny like that. neurOMEGALUL

tight tinsel
#

m-dash individual should be on the bingo

hoary lion
#

no

#

too rare

#

even rarer than vedal appearance

dusky jackal
tight tinsel
#

pretty common so far though

hoary lion
#

:false:

tight tinsel
#

i think last 2(?) weeks we had 2 m-dashes and 0 vedals

inner pike
# hoary lion no

We have gotten multiple times people that used llms to generate their chat messages

hoary lion
#

i think that was a honourable mention from konii

#

but if that's the case

inner pike
#

The last vedal appearance in programming was months ago

dusky jackal
faint sandal
inner pike
#

Still we have had people before who used an llm to generate their message

hoary lion
#

to sound like an intellectual??

faint sandal
#

UMDF 2.x was supposed to remedy the architectural differences

inner pike
hoary lion
#

we aint reading allat? lmao

dusky jackal
#

Longer messages just make people take you even less seriously. neurOMEGALUL

tight tinsel
#

incredibly funny that was

opaque wharf
hoary lion
#

I think azaka said that they are different?

fast pagoda
#

$42 turns out the total prompt length per request going from 80 tokens to 650 is significant

hoary lion
#

so it was needed to rewrite UMDF...?

fast pagoda
#

ouchie

maiden geyser
opaque wharf
hoary lion
#

well i have no clue, I was just trying out my reading comprehension neurOMEGALUL

#

sry

maiden geyser
#

architectural, not privilege difference

faint sandal
#

not like, the fundamental ways they're called and used

opaque wharf
#

Oh, so structurally the same

#

Architectural implies the way they work

faint sandal
#

yes

amber fractal
inner pike
hoary lion
#

💡

faint sandal
#

if you wanna learn more about WDF in general, see Ch. 6 Windows Internals Ed. 7

maiden geyser
#

@grok show me ch 6 windows internal ed 7

stark needle
#

Exam in 1h😭😭 the moment after not having studied as i should have in the last 6 months

tight tinsel
#

good luck

stark needle
#

My brain is starting to go in dementia Mode

#

pls let it be an easy essay

inner pike
tight tinsel
#

guess the ai they asked

inner pike
tight tinsel
#

i wonder

hoary lion
inner pike