#programming
1 messages · Page 507 of 1
Most are far far worse and unorganized
Its really easy to make them hell to read and follow


instead of procrastinating my work all day, i did it this morning from 8am till 10am 
this was work i planned for yesterday evening tho but thats mere details
its due by this evening so now i have a free day
All i do is procrastinate these days
Im planning on spending a large amount of money on some equipment to monitor my brain activity


Why is it C++ though
Instead of C+
Does that imply a between version exists
Shouldnt the extra plus upgrade the C to a B

why C++?
They skipped C+
do other ones in the family not get ++?
they didn't invent other letters yet
It foretold the C++ team coming up with dumb ways to do things
so you got
A
B
C, C++, C#
D
E
F, F#, F*
J
K
M
P, P"
Q
R
S
V
Z
none of the above
Tf is F*
we're missing G, H, I, L, N, O, T, U, W, X, and Y
F*: A functional programming language aimed at program verification
"F star"
Doesn't O exist or am I tripping
P'': A primitive formal language that served as the theoretical basis for Brainfuck
I know R is real, that I've heard about a nonzero amount of times
R and D
Probablg the least known but used of the bunch
Well that arent the well known or esoteric ones
Ive been meaning to look into D
Heard its like C#
If I make a chip, gotta make the dedicated compute language be Y
The O language is a system programming language crafted to be remarkably simple and flexible. It stands not as a replacement for C, but rather as a complementary counterpart, as both can coexist within the same source code. O language boasts minimal abstraction, ensuring seamless integration with C and almost predictable machine code.
olang is a deterministic system language that follows tree principles:
fights complexity by providing a simple syntax with a low level of abstraction
doesn't babysit programmers it gives you the freedom of shooting your own foot
aims easy maintainability by providing a syntax with a low refactoring overhead.
Notice
This software is unfinished and not production ready.
so O does exist, kinda
Peak
Honestly doesn't seen that bad these days
but rather as a complementary counterpart, as both can coexist within the same source code

The Chad olang vs the virgin golang
slop writing
Dictated but not read, the olang shadow council
Good ol Johnny dick
John OLang
Dick johnson
johny dick o lang
Oreo coding
I propose that practitioners of this Olang be deemed 'olangutans'
Peak

Do not hate me mother
R is used a lot in statistics
Less hated matlab
That's crazy. That's actually insane 🐢
I should restart more often after running pacman syu
imagine restarting 
Ok, im imagining it
What next
wait for it to boot
in that time spent waiting, think how cool it would be if you didn't have to reboot by just using nixos
Is it just me or KDE startup is really slow now
Maybe if they sponsor me
Nixos is kind of the nordvpn ad of the programing channel
How do you replace the running kernel 
I have bad news
you still have to restart 
nuh-uh
Unless you enable kernel hot patch
Updated the kernel have to restart to apply changes 
And now my internet is acting up
i wanna run some slop on my server while i still have the 4090
so i dont have to keep looking at token counts of the websites while the shit i ask them gets harvested
Hot n active patch
Which is god damn it looks brittle af
Or you manage to get that kernel side by side code working and migrate over. Give it 10 years to maybe be usable.

ever since i became aware of myself and my shortcomings mother has ensured i do not forget
survival of the fittest
Survival of the shittest
Oh, I just realized I sat very close to 230V AC 

leg leak
Large wire leak
I can see the heat fade on that metal
meow
230VAC just a touch away 


mindset NOT changed
When people msg me it i just reply with a tf2 gif of them getting punched
I would do that if I did that with every colon three, but that has other issues in my case
high fidelity
Indeed
obligatory mention
A lightweight version of pin-project written with declarative macros.
here
i ffixed it for you
you just create Pin<ptr>, use it once,
but after this Pin<ptr> borrow, you can just move variable that you pinned, and create new pin
let u = Unpined::new();
let p = pin!(u); //hide unsafe code btw
p.use_pin_self_func();
let m = u;
let p = pin!(m); //hide unsafe code btw
p.use_pin_self_func();
horrible horrible
you are third ppl to recommend it

currently this pinning is worst thing in rust ive seen
no really why i cant create Pin<T> once, so Pin::new() consume object
for non-copy types that would be it, code above will deny on let m = u
you can though?
Pin::new is a marker type for a pointer, not a container
you can create Pin::new out of any pointer type
like &mut T, Box<T>, Arc<T>
and Box is allocation
yes, you can do &mut T if you dont want allocations
why not just contain any T and then pass to methods
compiles just fine with mut
Pin is a marker type for pointers, not an actual container, because it leaves the storage up to you
if you need to move storage
just dont create as pinned; pin only when you start to use
?
you wouldnt be able to control where Pin is stored
Box::new(Pin::new(x)) already contains a move
you move Pin from where you created it into the box
why not just
let p : Pin<MyFuture> = Pin::new(/*move*/myFuture);
no really why it is not container
it has to be same size as T
one would be owning and one just ptr
that not the same
remember that Pin itself has to be stored either on the stack or in the heap
Pin can be moved around, because it can be passed to functions as an argument
but whats inside Pin stays at the same location
since Pin can be moved around but its contents cant be moved around, it has to wrap a pointer
so why not &Pin<T> or &mut Pin<T>
why Pin<&mut T>
i not see why it should only cover ptr when this case is possible
making it owning would solve issue at roots
it only needed to mark that any assign is forbidden
so, yes, you want &mut Pin<T> or Box<Pin<T>>
- how would you create that
Box<Pin<T>>, if you cant movePin<T>? - how would
Pinguarantee that it doesnt get moved? currently, it takes ownership of a pointer, so that pointer cant possibly change; it also only allows access to its non-Unpincontents viaPinpointers, not via&mutpointers.
pin itself is language trick
box itself is std that compiler aware of
- just hard code it
- make std attribute that allow creating Box<Pin>
Box::pin(mv : T)->Box<Pin<T>>{
// whatever builtin in single call
// or
let pin = Pin::new(mv); // move
#[std_allow_move_pin]
Box::new(pin) //move
}
no 
there are many of user-created pointer types
Pin also mostly isnt compiler magic
its something that was already possible
also attributes are never used like that in rust
not to mention im pretty sure expr attributes are unstable
basically, your solution wouldnt solve any problems at all
it would only create them
found it 
for example
if there is mut Pin<A> and mut Pin<B>, you can just mem::swap them
it's allowed
if they wrap a pointer, this is actually ok
if they wrap contents, this breaks everything
there are a billion issues like that with your approach
you want compiler magic, but theres no clear reason for it to be added when the existing solution already works very well and your solution has no benefits over the existing one
seems like it still possible to break everything just by adding something at safe side
but it kinda impossible on user side
can write unsafe that rely on reasonable definitions in safe in current crate
ok that make more sense for it to be ptr
but it still kinda 
HOW DOES DOCKER DESKTOP ITSELF TAKE UP 3.5GB OF STORAGE
th
garbage collector
betrer than ownership rules

where can i find someone with a mac to see if our unity build works for mac?
im not going anywhere near there
it was a question asked here with the intent to find someone here who could
nothing, I'm just sharing my stuffs
wtf
lua have typescript sibling?
I'm trying to compare legacy code with new code
luau is actually kinda nice
It's basically javascript with optional typescript
lua is not javascript

lua is just different script language
you can transpile typescript to lua
thats why its called lua and not javascript 
I'm using luau
surely, i wonder is there any actual project that did it
i not like oop on meta tables 
lol
omg ok
A lot of people hate react in devforum community, because they don't how to use it
Most devs like to have pre-made UI assets and use it
because why not
@rigid snow mabe
otherwise AWS has some
$1 per hour
cheap

-# have to rent for 24h at a time though
someone plz help
have you tried a ladder
okay but i’m busy, maybe tonight
@olive sable mac person found 

it has to be handed in before midnight today
so ill just ship it probably
if it doesnt work its on the unity compiler

How to care
ye it'll probably just work™
unless you do something platform-specific
how to love 
wtf it even means
???
there no solution
damn
leave this channel
the linux and windows build work, surely apple silicon isnt too different


tbh, you are in programming not in general or NN
that's why it's so relevant tbh
???


he not care that it is programming
ye I assume it just uses a prebuilt player executable then, no il2cpp or anything
so should really be fine as long as you don't have any native dependencies
i've never seen people intentionally focus on coding, related skills, or improving them
they either have infinite motivation all day sent straight from the gods and they can't explain why
or they cannot for the love of god pay attention or finish anything
lmao
you tried 
baking
they either have infinite motivation all day sent straight from the gods and they can't explain why
aka, focusing
you need to "switch profile" we already confirmed the linux and windows build work perfectly fine
i just have list
You would think so but nope....
ye seems fine then 
tho this list only getting bigger and bigger
it was just 'learn rust'
now its like 10 items
blame on hardware issue if it doesn't work
that's the thing tho
i've never seen people focus with and by effort
either it's effortless cause they're having fun or it doesn't happen
"But prof, it works on my machine"
???
something can require effort and be fun at the same time
we do be gaming 
btw, talking about effort and fun
i really not know what to change or what to add that have significant affect on type system itself
in cases like this, the focus usually arises because there's fun, and the effort doesn't go into creating/upholding focus, but into something else 
what the fuck am I looking at
???
it detect how many controllers are connected to change the split-screen and such. im quite proud of that part 
bro I'mma ask gpt to explain what you're saying atp you're not really making sense /hj
ok now its slop time 
Guys is it a good idea to put your own images in your portfolio?
how do i put an llm on my server? 
by own images I mean face
EC2?
oh wait
ollama is good
Vllm
one that recently had some sort of cve?
Use vllm or sglang
whaaaaaaaaaaaaaat
Everything else is cope
ill try vllm i guess
what llm did you make?
llama.cpp nice because simple setup
nothing yet
but ye vllm or sglang are good 
Poor performance for serving many requests
Int8 instead of fp8 kv cache
i requested my discord messages, and im gonna train a slop to use my bad limited vocabulary
1 request
lol
Bro is coding his own replacement
when i dont know something in gonna ask sam van slop, and its gonne tell me it dont know either
I'm also tempted to try this but my messages would be so bad 😭

again talks about ai
i mean, im pretty sure i dont have anything to hide in my messages
i dont think ive been too weird
I would do this to fire back responses any time someone pings me in a friend group server
because some people don't understand what being busy means
(frustration boils over because last night they pinged me just to code review a FUCKING AMONG US MOD OF ALL THINGS)
shut up
-# message sent from iSlop
honestly i'd rather be pinged with stupid stuff than forgotten for weeks because of fnf mods 
(and that's at least 30% about the game modded, lel)
last I checked I think I was on 160k messages total?

im waiting for discord to send me the email
i have the data from last october still tho
I did mine a while ago because I was considering deleting my account

i had one of an old acc but then deleted it
it wasn't worth much with only my messages being in there, no context
that would mean no more bred 

there's tools to get whole two-sided readable DM histories tho
no more bred would be useful, this account is way too doxxable as it stands
arent you can just remove all msges?
are you named owobred everywhere perhaps?
true

actually dont reply

that was the last piece of the puzzle
now i know
you're... linus
has monopoly on neuroBread
big money

generate neurobread tech debt by repo-rizzing the tech dept
this reminded me of a funny fact
what 💀
think oracle, just neuro bread
you can actually see in my minecraft skin history where gender hit
Big Bread™ has started jacking up prices of the neuroBread
it cost me 20 neuros just to eat a neuroBread
economy is in crisis
is it
yes
I used to have that problem
Like a lot
neuro stock is feeding into pocket of big bread
I am poor here
I only have
x10 to my name
each neuroBread is 2 of my
gone
need cheaper food
have you considered switching to a diet of ddr5 ram
but yeah idk what im meant to do about old stuff linking me to irl
other than

ddr5 ram cost more neuros 
banana 2026?
me already about to need to starve
True. I am the weird one 
ye
necessary
or pester support to remove stuff if possible, but not always the case

Bro
yes?
attempting to pester discord support is like hitting your head at a brick wall
it'll cause you lots of head pain
if bred dissapeared one day that would be sad
Ahhh this reminds me I need to pester my government more
from what I've seen discord isn't too bad if you follow their rules
who knows, my indecicive ass might return eventually
for WHAT
of all things
oops caps
its suprisingly hard to fully disappear from a name
🤮 tax
my friends bet on whether or not a certain few middle east countries would go to war

one of my many accounts I was considering pivoting to had its protonmail account deleted
incredible
i see no issue with that statement
There's worse
oh
i think that was when i ate chinese
ye i wasnt kidding
i really did eat some frogs
You just keep digging further and further
sam decided his blackmail folder was too light I guess
shiro how big is your #cd2edb-mail folder
this is like level 1 ragebait tho

you gotta get some practice in nn
fun fact
i am mascot
sir yes sir

but only in some ui fields
does it refuse stuff like spaces tabs and newlines ?
wait
wdym truncate
hi mascot, im sam
cause if so very funni
is the hash still of the full password
password[:64]

or is it truncated when you submit it in any password field
Ok @olive sable i think my message history is 10x worse than yours
i know
idk i didn't test
???
thats why im making an llm of myself and you're not
does the sign up field truncate it or complain
try it and tell me
To be fair you should have learned your lesson after you said the same thing yesterday
if it truncates then there's a huge problem here
TAKE NOTES
SHIRO IS IN PUBLIC TRANSIT AT THIS TIME
ok that was nn, this is programming
EVERY DAY AROUND THIS TIME BE AS GRAPHICALLY WEIRD AS POSSIBLE
Oh
right my bad
pretty sure it truncates
its fine I just had to take the last 8 characters off my saved password lol
did i do that?
doesnt feel like something id do?
but the gpu does fit
im pretty sure the 3090 i sent to superbox was that deisng
sam great idea, train an image generation model off of every image you've ever sent
surely that will go smoothly

half of it is gonna be liminal space gamedev and triangle shit
other half is gonna be desktop
and maybe 5% irl pictures

i might actually have to go through discord support soon
destroy pc gif
painn
my discord data has arrived 
oh even better
discord don't let you
even better
its much bigger than you think it is

DISCOOOORD
"lost access to your email? too bad
"

wrrr
hello janna
hi janna
michael
rats is not fish

e
i shoudl probably put a filter on it to make sure there are no words in there banned in neurocord
idk
I propose slop slopping as the new term

fun fact, bcrypt caps out at 72 bytes
cat
waa i don't wanna 

:GayBar::owobred:

[

ok im running my discord messages through from better_profanity import profanity this thing
just to be sure
is that to weight the ones with profanity higher in the training data
i need to make sure it doesnt say slurs

you can’t say that

how about brainless slopping
that better
Bro go all in or go home
?
i dont want sam van slop to be a biggot
even if the base model has that, i want the finetune to be a chill guy
I want my ai to say this
Argon2 ftw
burned myself with a toast 
Real. My case is just renaming my domain but I cannot be arsed to put up a tmp redirect
Fr*nch

its frustrating how single threaded this code is
semantic analysis on the gpu 
sam dump all your messages into a text file and feed that into an llm with a giant context window
or chunk it
-$50 in inference
ok it outputted the full lsit of swearwords, and some of them it caught are litteraly opengl function calls
numbers too? they banned numbers? i misspelled VFX once it seems too
- dataset_max_seq_len: 1
- dynamic_len_handler: 1
- 7175: 1
- 7171: 1
- line_strip: 1
- triangle_strip: 1
- gl_triangle_strip: 2
- 50b: 1
- a55: 1
- fvx: 1
the ones with strip make somewhat sense i guess
the word len seems to just be flagged on its own
reading these, a lot more words are profanity than i thought.
ONE make use CUZ now tho
Wait are you cloning yourself?
it flagged meth
- meth_class: 1
- meth_static: 1
yes
Idk how much you want to be your own but I’ve got both halves of the puzzle assembled already and am more than willing to send either one to you
Plus a secret third half that I’m working on currently
yaoi got flagged twice 
i basically just need to figure out what basemodel to use, how to finetune this thing, how to put it into a discord bot, and how to make it react and type and such
i jsut heard a windows sound
im on linux
wut
So you already handled getting the data off of discord?
yes
Did you get full conversations or did you just flatly export your messages with discord data export?
Ah
my beloved MPD classes
Well I’d recommend trying by full finetuning Gemma 3 270m instruct so you can play around with formatting, hyperparameters, training settings, parsing, callback scoring, etc etc, then switching to a LoRA on a base model around 1-4b for a real beta, then maybe scaling up but not really that useful unless you have like a shit ton of data to use
Gemma 3 270m is shit no?
Only 100M active params
im not gonna send the whole thing cuz im still afraid of getting banned, but none of these are career ending
i actually have a good explenation for all of them
Yes but not for the absolute basic concept validation tests to make sure what you are planning will work outside of a toy model without wasting time and compute to retrain a bigger one over and over
That’s what I do
Ok true
we have a 4090 and dual xeon 6138 with 256GB of ram
For LLMs that's considered kinda small
you're kinda small
Unless you pay for your own electric and also want to wait around for hours at a time with zero guaranteed results, you should just do your initial testing on teeny model

LLM scales are stupid
Legally it’s only slander if he proves you wrong
do stylistics analysis on everyone to see how many fake human chatters are in this server 
Just get 3 dgx sparks like me

Easy fix
4k
4-6k depending on scalper/resale pricing
and its worse than a 4090?
It's 5060 ti performance

Also I’d assume you are going the afunyun path of using ChatGPT to generate synthetic messages that your dataset will frame your real messages as being in response to
You need a 5090 to beat a 4090
128gb vram
uh idk
sure i guess

5060 to performance while 8x vram and 8x price
Most of these I understand. But len?
U have on-die infiniband tho
i have no clue
i hope len is not a slur
I mean LLMs are conversational, you can’t just train on your actual messages or it’ll regress into a text completion model and just finish your sentences instead of responding as if it were you
True
hmmm
Like a responsible scientist
you know the mods can report you for this right?
You'll get banned here for breaking Discord ToS though

Fine
I do it via rigorous safety testing and the application of the scientific method
I want to try and export my phone text messages but Apple is stinky and won’t let me
it's a text completion regardless
if you don't configurate the right stopping tokens it will speak for the user too
just the public models already have that so you don't notice
You know what I mean
It is typing
It is typing
I might need to read up because I might be missing context
does he want to train an LLM from scratch using just his messages?
if you just finetune an existing model you shouldn't hit that issue
lemme see if there is a vllm flake available
Vllm is a package ur supposed to run in docker
Why does everyone hate docker😭 😭 😭 😭
why would you need a flake for vllm, just pick the one from nixpkgs

Are you making one of those finetune clones of yourself 
botan-kamiina-fully-blossoms-when-drunk-kamiina-botan-yoeru-sugata-wa-yuri-no-hana.mp4
No, everyone has to run their goddamn frick weird container os nixos and then complain when stuff doesn't work or waste so much time on this😭 😭 😭

and docker is something weird that appeared in my vscode exstensions one day and i hate it and i like doign things how im used to and i have autism
docker is unnecessary, just run it on the hardware
Bro u simply don't know the joy of distributed managed high availability helm-templated kubernetes deployment
you sound like a corpo
shadow def works for arasaka
docker is conspiracy that memory chip companies created to make you buy more
Have you ever heard of Hell?
It’s actually the old world name for docker headquarters
docker is fine unless you make unmaintainable and unclear ecosystem
and force every one to use it
- you kinda have to know how docker work
rootful docker is silly
- compose is shit and i will not learn it
What are u on about
Docker allows more compute density and hardware utilization
Compared to legacy vmware workflows
genuinely tho, why would docker be useful to me for this when it just adds overhead?
it avoids nixos dependency shenanegans
I've had to use it before for matlab
All dependencies and stuff to run
Especially all the cuda slop
standardisation

if it works on my machine then i dont care about standartisation for this
not everything can be reproduced identically to a docker environment just by using nix flake
however
meh
the goal is work on my server. i dont care whether it works for other people
can you make it for my machine too NeuroWant (idek what you are referring to)
you want it to run
Yes your server should be running docker and not install random shit on the raw os that might break everything
Especially when everything wants it's own dependencies


which one
shadow you seem to be misunderstanding the core point of nixos
shrug xD
installing random shit shouldn't break everything irrecoverably
if it breaks i roll back
i have generational backups
mfw generation 400
pun intended
my desktop is on 141 rn
im on 397

my nix config has gems like
because radv driver cant figure out my monitor supports 280hz
but this timing is actually a bit bad because sometimes my display wont recognise the input if its been off for more than a day



might get fixed in that hdmi 2.1 patch amd is rolling out soon?
no
just turn it off and on again 
displayport
oh
yes that fixes it
and in cases which it does not you just arent doing it harsh enough
:p
my headphones say they can connect to 2 devices at the same time, but they might be connected to 3 devices. surely the windows notifications arent my laptop's battery?
it could be outlook notifications?
Nixos is for illusion of competence satisfaction on an imaginary self imposed problem
ragebait
:3

i enjoy nixos idc if my satisfaction is imaginary
nixos is nerd thing for ppl who want reconfigure main system from scratch for no reasons
does outlook still give notifications if you closed the tab 3 hours ago?
all satisfaction is imaginary
just use arch
do you have outlook on your phone
truere
because its the same notification sound
"just use arch" <- person who will have to chroot into their system from usb when they break something
reminds me it feels weird hearing windows sounds on a phone

it is outlook on my phone
anyways im happy with my usecase of nixos
canvas data leak 
meanwhile i broke nixos through a windows update and if it werent for my nixos+btrfs config i would have lost all of my shit
dual-booting windows and linux on same disk
Even chatgpt agrees lil bro
wow shadow
either that or booting nixos through a fucking hdd pick your poison
I've just realised that I've been reading this emoji wrong for almost a year.
I thought it was "welps a girl" not "Welp sagiri"
are we really hitting the "I lost an argument with my girlfriend so im getting chatgpt to rank the messages" now
dont discriminate this statement with ai answers
cap, i benefit all the time form rebuildability.
chatgpt is lying bro, i fuck up my settings all the time
i get doing it one on one with the chatbot but bro really shared it in public
thank god we can just revert amirite 
and it is clean
i dont have to fish through a fuckign dumbass file explorer looking for programs taking up 250GB, when i can jsut remove them from the nix config and everything is emmidiatly solved.
this might have been my personal biggest issue with windows. if i tell you to uninstall yourself, remove all your fucking files oh my god
yes
i dont see why you put a "clueless" in place
it does just work
exactly
with nixos i am always reminded with what my apps are but i have apps in windows i have apps i installed 5 years ago that i still havent cleaned up because i am just not willing to
the thing is i prefer just building a new generation by appending a letter to it, starting from B, in scenarios where the reverted change is very very minor


lets also ignore the fact that i also probably have extra drivers i should remove and some potential registry keys that could just staying there for no reason at all even post deletion of the thing that needs them
the server get a litle rowdy when i do a nixos-rebuild
Everytime you rebuild switch, a kitten dies
who is said kitten
meow....
chara is a discord kitten confirmed, welp, im rebuilding again, say goodbbye


meowww
wrr
meoooowwwww
do tvs make wrring noises
wrrrr
Depends how hard you hit it
that not answer me question hits crt

CRTs probably sing at C20
at what?
C20, octave 20 C
imma be real with you fam, that aint a crt
(it's like a billion Hz over what humans can hear)
Mmmmh, ear piercing
im pretty sure crt arent a billion hertz
You won't even hear it
they're like 15KHz
vzeroupper
I've been lied to 
you do hear crts
flyback transformer
But do you hear them sing?
yes?
Rare breed of CRT that sings at normal frequency
define sing

why C₂₀ and not C#₂₀ or even D₂₀
C is like the standard note
?? the standard note is A actually
A₄
because A defines the frequency of the scale and the most common scale is 440Hz (A₄)
wtf do you mean by sing? shouldnt be in the billion hertz range
is air even capable of vibrating at a billion hertz?






arrest






