#programming
1 messages · Page 275 of 1
zzz
it doesn't seem like it, nothing changes when i open task manager, close everything
maybe a driver issue, but i rollback and nothing changes
wakie wakie

40% isn't really idle
it raises to 40 when i focus on discord with nothing else opened
but wattage doesn't go below 80w, even though before 40w was the average idle
did some bios frankenstein modding
signature for the CPU microcode module seem to match between the B650 and B850
going to transfer the B650 microcode module to tbe B850
rookie numbers
why they starts with 0123456789ABCDEF
is this some kind of standard

GUID moment
eh fuck all
only AM5 CPU and board i have is my 7950x engineering sample and MSI PRO B850-P
so my only option is to make them work together


Fun fact
LibriTTS-R is actually quite large
Like
Large enough that it takes RMVPE ~12 hours to process it all
And it’s gonna take a lot longer once I run for 48khz audio instead of the 24khz I use for the test model
chat what cloud storage provider do you use?
just setup a nas
Apparently ffmpeg audio streaming can't do lower latency than 3s
Unless someone has magical args that prove me wrong
depends on what the requirements are 
I tend to use B2 because it's cheap but it's not the best at everything
(assuming you mean object storage)
true
when i have a static screen i get around 40W, the moment i move my mosue it jumps to 120W tho
anyways
i need to figure out how to do supports for 3D prints better, rn it take twice as long to remove supports than to actually print stuff
and the smaller parts break off toghether with the supports


Been having issues with inconsistent loading times on mostly big site like youtube, twitch, and reddit.
I thought it was adblock related but couldn't see anything wrong in the logs.
Turns out Firefox just screwed up their QUIC implementation.
Set the network.http.http3.enable flag to false and it instantly fixed the issue.
good to know for using those sites on ff ty
Looks like setting network.http.http3.use_nspr_for_io to true also fixes it while keeping http3 enabled.
githubs never been broken for me but im a chrome using normie
Managed to make some progress on this assembly raycast voxel renderer, and it's already looking better than most triple A games. You can't even distinguish it from real life without squinting your eyes

Looks good. How efficient is it, though? Probably quite, since it's running in MS-DOS.
Running at about 10-20 fps while using the resolution visible there, but if I increase resolution any further it turns into a slideshow
Of course.
how are those flying boxes made?
its like some object with coordinates
or what is it
is it a static picture or you can walk around?
The world is stored as a grid of blocktypes (eg 0 for air, 1 for grass)
You can walk around

is this one block
are you packing them or using a full int width for each block
The raycast algorithm steps through the grid of blocks and if it hits something it gets the corresponding pixel stuff
Texture pixel
just texture
oh so this is block with texture
1 byte per block currently
reasonable
considered doing some form of chunking + run-length encoding inside chunks?

very easy and would reduce file size a lot
i asked because you can make that big block with smaller blocks 
True, but would take a lot longer to render each frame then sadly
naive algorithm implemented in asm on the cpu
you try it
lol
its never from scratch, its always some voxel moxel renderer
Considered it, but adding it currently won't add much since it can already have a pretty decent worldsize having it fully inside ram without the extra complexity

???
about this
It probably would be quite a lot faster if it weren't on a vm yeah
because voxel was mentioned and i dont know what voxel is
a voxel is like a 3d pixel
moxel is something related with voxels, its a python package
oh so its full from scratch in asm but its classified as that
???
It is a voxel renderer using raycasting implemented in asm from scratch
this is the understanding i had from the first moment i read the message 
It only renders voxels, can't even render a triangle, just cubes, everywhere you look, at all times every time
i never doubted you 
just wanted to understand it myself too
Understandable
you may not doubt me but i am doubting you 
did you do simple linear raycasting or is it octree/quadtree based?
or maybe spatially hashed?
you might get a big speed up from doing octree/quadtree raycasting if you can spare memory
or can allocate memory i suppose
I'm using an algorithm specifically for voxels like this so not sure if it fully classifies into one of those, but probably linear if it does fall into a category I'm guessing
i dont know how feasible it is to write an octree or quadtree in asm, but it may be something to look into

The torture
Tho thx for making me aware of it, I'll still look into what those are out of curiosity even if I won't end up implementing them

wait when does chess tournament start
was it november something
do i need to submit it before that date or submitting starts after that
I have returned from quickly looking into quadtrees/octrees. Can confirm that my current algorithm is linear, and can also confirm that I am absolutely terrified at the thought of implementing octrees in assembly, so I'll leave that as a very optional feature to implement if I ever feel like torturing myself
it will be faster (and in theory more accurate) for raycasting too, if you get round to it
provided your implementation is good though
Octrees seem to become more efficient/effective on performance the longer the rays are/the larger amount of time the actual traversal of rays takes up. Currently a significantly large portion of the time for each pixel is still taken up by the other necessary parts of the rendering as well since the raylength in this case is fairly short (10 blocks)
So I feel as if it wouldn't make too huge of a difference if it were used with the current parameters, but if the raylength were to increase, then octrees would certainly show their need
Not fully sure if that way of thinking is correct though, since I only have minor basic understanding of what octrees are from looking it up just now
you cant really increase the raylength without introducing artifacts to your raycasting usually
🤔
unless you are using one of the proper algorithms for it i guess
with octrees you will get a larger maximum ray length that gets smaller as you get closer to a voxel 
I might not have noticed them yet due to the low resolution maybe
means raycasting goes from O(n) to O(log n)
in theory
I'm using a basic implementation of the Amanatides and Woo voxel traversal algorithm

Makes sense, though I'm guessing there'll be a bit more time needed for each "step" since the size of the "cubes" varies making the computations more complex
youd think so but not really
you can also look into bvhs for a similar concept
sebastian lague has a raytracer series in which he implements a bvh for a pretty huge speedup
i recommend watching it
I'm guessing it depends on the exact algorithm used
not a voxel raycaster but the concepts are pretty similar
Oh I got that one in my watch later list if I remember correctly, still haven't gotten around to watching it


how do i check if it has attribute if hasattr doesnt help 
am i supposed to wrap it into "try"
and handle it like error
oh wait im supposed to pass string
it didnt help
and even after i wrapped it into "try" it still crashes 
oh wait its probably just some external traceback that doesnt even matter
because it continues working
i dont get it
Show code 
ok so this is the part that crashes
oh wait no different one
ah nvm its same
so nakurity_backend eventually gets destroyed (assigned None)
and await does this
ok actually maybe it does matter and i dont see it here is actual part of code
We love not checking before usage
has attr doesnt help because it looks like it just sits inside of await
and eventually object thats being awaited gets destroyed
but why "try" doesnt catch it 
i dont get "print" message from "except"
Do you have a different thread that assigns the attribute
yes
This looks like it's doing what it should no?
Prints the message then the stack trace
Yep
oh im blind
true
i was looking under it
not above
i just expected it to look different too
but it was the same print_exc probably just somewhere higher
Good night #programming 
vituha why print the warnings instead of logging them
because its not so deep and variative, it just happens straightforward on launch/on events i can easily trigger
instead of scrolling .txt i can scroll terminal
same way
how would it look? i didnt quite get it
i have separate terminal opened for logs?
orr
oh
i dont have that many messages, its easy to find everything just by a little scrolling
so far
ik
im just not used to try things unless its necessary 
so the lava lamp is just set to "sync to music" for stream syncing and tutel just uses the api to set the "music color"
ohh the local key is visible from debug log
yep works
are u just reverse engineering the lava lamp API?
i tried and both app side and lamp side is not that easy
app side is using tuya's private api which is encrypted, and i don't really have the time to reverse engineer the encryption library
lamp side uses TLS-PSK and i don't think it's possible to get that other than by dumping the firmware from the chip (if it's even possible now)
but as it's with tuya's other things, there seem to be a local api and it's easy to get the local key for communicating with it
try checking uart or jtag and tracing circuit if you can
i've yet to crack the lamp open
according to https://github.com/ct-Open-Source/tuya-convert/wiki/Collaboration-document-for-PSK-Identity-02, there is an api action called tuya.device.uuid.pskkey.get and that was used by old tuya devices to transition to the new PSK scheme, i wonder if that would work with completely new devices
i don't have high hopes for it though
extremely doubtful
most likely you will have to break out a uart debugger
also I forgot why are you trying to reverse the lamp again
I do that with every piece of network connected device I own
understandable
I'll try to open it after the next stream, I want to experience stream sync at least once
I just got the lamp yesterday, apparently they forgot to ship my lamp until I contacted support
how comfortable are you with hardware and embedded
this may be hard for a beginner
I believe the cbu ipex have bk7231n as controller
I mainly do software RE but it's fine if they have working debug ports
I dont really like it
ok correction, you do seem to wake up early often
Ussualy i stay up late till 4am or so, but when i have classes i just wait till the evening to sleep
Oh right it's Monday huh 
Yep
you may have to wire/solder a port
honestly the windows instal usb thing is giving me more issues than installing linux was
it wouldnt show the ssd i wanted to install on
ended up disabeling the intel VMD shit in the bios for it to work
erm, teacher is sick
i have 7 hours now
all the powers of 2 higher than 0 are even numbers, while all the powers of 2 lequal to 0 are odd

Well you'd want an actual disk checker for that, diskinfo only tells you what the disk itself reports
So with an SSD it only tells you based on the expected write endurance and written bytes
It won't tell you if the drive is actually faulty, just if it's predicted to be faulty
I see
Speaking of diskinfo are there Linux alternatives?
Idk, didn't check
Gsmartcontrol
uses same SMART comm


Well looks like it works on all but the NVMe drives
Well it's collecting data for self-driving cars to avoid flattening cyclists. I'd say no.
ur kidding me
All of them 
captcha design 




i think that's the opposite of future
clearly, you have never tried to hack the mainframe
idk i would live in a future where i can run split tmux and other cli software on a 2009 laptop in a suitcase
or screen, it does not have tmux status
hakerman
holy
lol
i had my HDD connected by SATA, but for some reason it keeps freezing my PC
now i have to get a HDD container that uses USB-C 😭
Maybe cable making bad contact?
i've swapped it out twice and still the same
I had one of my 8TB drives making bad contact once and it would be capable of completely locking up
and diff SATA ports
"current transformator must never be open circuited"
"SCT-013-000 recommended for use in this project"
it has a 3.5 TRS male connector with no locking mechanism
this needs to be studied
plug into wall
i see fork
metal chopstick
no need to plug into wall, it's supposed to be clipped on a wire with 220v
plug wire into wall then sticky tape to wire

the dutch inside of me just got a little upset lmao
I do not regret what I did
I peek once into this channel (I dont program) and the first thing I see is this 😭
how do you even
Yes
1 billion active parameters model casually nipping at Groks heels in translation quality
Bold statement, but personally I agree with that
what happened why we ded
i wonder if the 3d implementation used something like ChatPose https://yfeng95.github.io/ChatPose/
then somehow interpolates between poses neuro chooses?
you neon colour wrr

wat


Already hacking poor lava lamp
neuro-sama stream sync open flame
your house burning down same color as on stream
i am seeking $250,000 for tge idea
me interested
will donate
my entire income for past half a year
i expect 10% of your profits in return 
happy leafday


hi, im a dev of several years and today im telling u a mistake i've kept making
[[]] * 13 is not the same as [[] for _ in range(13)]
i have made this mistake every single time i needed to do this and i still never learn
dont be like me
thank you for coming to my ted talk
thank you for your ted talk it was enlightening
i’ve been considering pivoting out of my current career and taking a programming traineeship so this will be useful
me "Fucking crazy sociopath who makes 2D anime daughters."
??
I'm trying
can someone help. It can find the file, but is unable to execute it, idk what else to do
It looks like it runs it?
Is there a way for you to print out ffmpeg's stderr?
It's not playing anything though
how do i do that?
idk, never seen whatever discord audio library you're using, just normal python subprocess
discord[audio]
sorry if I am speaking nonsense, I literally have 0 experience coding
Found it. You should be able to do something like
with open("ffmpeg.log", "w") as ffmpeg_log:
voice_client.play(discord.FFmpegOpusAudio(source=song_path, executable="bin/ffmpeg/ffmpeg.exe", stderr=ffmpeg_log, **FFMPEG_OPTIONS))
To get a log file
Why, why in the world do I have a link to this message on my phone's clipboard?
sick
Cuz im just so very cool ofcourse 
Goodmorning #programming

Happy birthday chayleaf 🎉 
I know im late on the birthday but i had a busy day monday
Google may have unlocked continuous learning: https://research.google/blog/introducing-nested-learning-a-new-ml-paradigm-for-continual-learning/
That is pretty crazy.
are you
happy birday chay
(is today i think)
why how
Why not Kotlin thou?
also most of the things i wanna do don't have good tutorials for kotlin
both suck
the whole jvm sucks
but i wanna write paper plugins and fabric mods
Well you can do that with Kotlin
so i NEED to suffer if i ever wanna
please refer to #programming message before i lose my temper
they SUCK
Tutorials suck more
are they?
Well they've never helped me anywhere near as much as just, reading the docs
i mean.. i didn't get as far as i am nbow without watching them
Yeah no.. some people learn better one way and some the other
don't invalidate someone based on the methods that help them if the methods don
't help you
Either way, you can 100% do really good Fabric mods and stuff with Kotlin
STOP FORCING ME TO USE KOTLIN
I'm not forcing
I'm telling you it's good so you use it voluntarily
NO ITS NOT.. I CAN'T USE IT FOR SHIT
100% of Kotlin devs I know say it's great
if you are not doing mods in Kotlin, you are missing out and just painful
We could avoid a lot of boilerplate and headaches by using DSL
interact only GUIs were blissful
Expected
references
there was also that one go issue with variables being captured by reference instead of by value 
Does anyone know why my vpn works slower through wifi than through cellular
Only on phone

thanks sam 
ty iggly 🐸
and you 
"You" 

with Osu(id, secret) as cl:
for user in cl.get("users", ids=[34945353, 14706828]).users:
print(f"{user.username}: {user.statistics_rulesets.osu.pp}")
osu api
wrr
ne
bitwig very based
true! 
I sure hate it when the , , , , , the
what the flip is your pfp
get fucked ciborium
not me changing the firmware ont he 3d printer for a 12th time 
@sage crag sam stole my tpyo 
the "ont he"?
the ont
i do this a lot tho

explod samuel
so i have discovered that a 3D printer is basically just a small linux pc with motors
so im customizing it

Someone i talked to wants to know if there is a program besides VRoid Studio and Unity that can edit .vrm models
there's blender and stuff
I think csp can too
im so cooked bro
my 7950x es is stepping 0, apparently with CPUID of A60F00
and even the AGESA 1.0.0 on both the X670 and B650 bios doesn't have it
words
dude
i found out
that the X670 bios
supported B40F00 and B40F40
which is
9000 SERIES ES AND QS
agesa 1.1.7 BTW
so a pretty old bios on te 600 series chipset, was still 7000 series era
let me revise
i became a bios modder, silicon stepping analyst (have the whole database now aswell), learned to read LUT HEX entries
all overnight, just to realize that my chip is one (or two) stepping behind from the AGESA microcode
now i am become modder, the analyst of silicons
hello chat
im really mad
how do i make a timer
that does the thing
while i do other thing
okay sorry proper context
I want to make a program where every 2-5 minutes randomly, i hear a bell that forces me to alt tab to my anki deck app to learn japanese
and if i dont do the stuffs it blocks my keyboard and mouse inputs
for like 10 seconds
the idea here is that i have this program running while playing games or doing something else
i dont see where you are updating the "start"
and i dont get why you are breaking the loop and sleep
just make "start = now" instead of sleep and remove break
oh hold up you have while in while
well
first while is the entire program itself
2nd while has breaks with conditions
when do you want it to ring?
somewhere here?
ohh wait i didnt read your message properly 
yeah
i did some hard coding
this one does work
but idk how "expert" it is
aka sleep 1 milli second
variable ++ each loop
eventually reaching 5 seconds
then reset
usually i make timers like this
oh nce
you remember start time
then you check current time
when current time - start time > threshold you trigger whatever you want
you update start time (assign start time to now)
then it will just wait until the trigger condition triggers again and repeats the loop
no need to break loops or anything
however i dont get how you do this part
i have a function
when i run my program
it randomly picks a number
counts up to that number
and then picks a new one after
its better to transform number into seconds and then use chrono time
then you will not depend on cpu load or whatever. however if you use sleep to count time, it will work too
idk cpu load stuff
it probably does your thing instantly so it doesnt matter
i just wanna force myself to learn japanese with my sub level programming skills
yeah im not sure about its longevity
cuz i wanan run this program like
the entire pc runtime
cuz well im studying with it
well i guess you dont care if it will become not 5 minutes but 5.00001 minutes or smth
it took 3 hours but i figured out how the harware interacts witht hte config file, so now i can use custom parts ont he 3D printer
0.5s to react is quite fast though 
also frick BIQU MicroProbe, that thing uses the inverse pin layout as the official creality one for no fuckin reason
this litle ! not being there in pin: ^!PB1 caused me 2 hours of pain
Now that the llama.cpp implementation is fixed gpt oss 20b happens to run a little faster for me
Is it any good?
Very, at least if you want a tool calling assistant type of thing which is what I'm after
pretty fast of a model but its pretty shit for its size apparently
possibly due to that its running on NVFP4 for most of its weights
dang
oh its also moe slop
lmao

at least it does run fast
it's a pretty crap model imo, it's fairly dumb for its size. most of its thinking trace is spent debating with itself whether it's allowed to answer a given query
from a friend that tried it
debating with itself
this is just straight up funny
Thats been far from my experience
It got off to a bad start which hurt its rep though since the GGUFs were broken on launch
And remained that way for like a month afterwards
my friend didn't use the gguf one i think
Tell ya what, shoot me over a test question to put to it
also gguf was broken because nvfp4
I have it running on high reasoning effort unquantized in a controlled local environment which is basically the best test case for its quality
what do you exactly mean by "controlled local environment"
I run it via a copy of llama.cpp I compiled from source with optimised flags for my hardware, and know the model is running with optimal sampler settings, system prompt and chat template since the entire pipeline is local
Cloud services introduce a degree of unpredictability that isn't there running it this way
finally a more readable sentences
huh
I just didn't want to be overly wordy with it
its 4:30 am in my place rn i got hit with insomnia :)
o7
contemplating whether i continue writing a bit on 2 of my thesis
or just knock myself down hard to sleep
i've not been touching llms for so long either
maybe i could when i have the time to i have shit tons of gpus lying around my room just being collections

hey
could probably make all of them run AlphaFold

time to take advantage of my insomnia ig


loving
holy ram
that's a lotta chip
im tempted
to
get a dual socket 2dpc epyc board
and insert like
48 sticks on a single motherboard
for a sec i thought it was green moldy radiotor
It is basically a space heater
true
its secretly sodimm and quuck is using perspective to make it look normal 
🦆 <-
its secretly ddr2 ewaste
Such a silly and peak usecase for a gigantic pile of GPUs
Wa
he so wasted
qhen yku cn measur in newton instead
-quck 2025

exist 
This is slander
drunk or something?
<-

Then pay me in unreal money
cry about it

Neuro attempted to write a fast-fourier transform in C++
she didn't get past the function signature lol
python codebases longer than 100 lines make me want to throw up
unfathomably based
hi operator
hi



awawaw
im gonna explode
nyoooooom!
Nyoom machine
omg that's me

sam i hope u are having a nice day ok yes nyoom hi amogus lol
sam lilac told me u smell like sam
can i smell you

erm
sam knows i am a bit schizo
5 bucks
a bit?
what a coincidence so am i

ok so are we friends now
now that you reminded me i do need to take a shower tomorrow 
its like a bath but worse
water isn't real
watercooling tho
true
i just tough it out, my computer is a free space heater.
idk if id call it "free"
free enough
crypto mining radiator
free cause u didn't buy it + ur unemployed which is the truth
nuh i partially paid for it ;'[
guys i have a shopping adiction
(steals ur shoes)
im this close to spending 45 bucks on new 3d printer parts
you paid for the computer functionality of the computer hence why the space heater part is free
you still pay for the electricity
its free if I believe it to be ;[
manifest that shit
"free space heater" does not imply anything about your electricity situation
"free microwave" oh no i have to pay for electricity still not free scam
does free there only imply hardware itself?
when we meet i'll bring an iphone and make a 3d scan of your body and i'll print it out 1/7 scale
tbh id rather not do that
oh no
i do not consent to any form of 2D or 3D images made of me, through any form of scanning, photography, or photogrammetry
i will now make you into a funko pop
if you make images of me, i could easily make images of you
unless you wear like a fake mustache and a hat
yes
ontop of your real mustache ofcourse 
i will now turn you into a nft
could i get them back now? 
-# he is not getting his shoes back 
what do you think are the chances i can find a specific sublayer of llm weights to allow finetuning an instruct model on text completion data without destroying the instruct part?
my shoes
uhm
like
13%????
idfk

noted
found out about gemma3n last night
i'll be honest it kinda sucks really bad
but
i still like
video input is just image frames, so it isn't real
and audio input...
well..
it's real
Welp. I calibrated all the sensor shit, i homed the z axis properly begore the print, and then it just ran straight into the printbed 
I think this means i need to replace it
Eh maybe later
how is it so smooth
https://www.youtube.com/watch?v=GBxo1cf7fDw
I spent many hours trying to install macOS on my Windows PC.. I had absolutely no idea what I was doing.
Spoiler: It actually worked.
If this helped or entertained you, drop a like and subscribe, it actually helps more than you think.
OpenCore Simplify - https://github.com/lzhoang2801/OpCore-Simplify
USBToolBox - https://github.com/USBToolBox...
also i don't remember tahoe looking that nice
yep its not flat anymore, big bump
i have a spare, altho this one isnt bendy nor magnetic 
a
w
How do you even put a code inside a website through a code
what?
Is that even possible
i guess you jsut program it to forward the code???
Not rlly

Import.....
Append....
Wait
Creating a pastebin link
Payloads???
Nvm I'm gonna sleep

erm, its cuz of the z offset being -0.3mm, and the bed mesh already 0'd it. so it tried to go -0.3mm into the bed
oops

in all fairness it should have warned me cuz i set that z offset for when i didnt have bed leveling installed yet

o7
So, say I'm cleaning a data set in SAS. How many times do you think I can copy and paste a set statement with a keep command to split up my data set before it becomes a crime?
music bots are banned iirc
uhmmm
print sterr idk
you... don't need to reply then?
that was yesterday and we already figured it out
no?
some are banned because of youtube API
i shall make agi
good luck with that quest 
ty, coding it up rn, done all the planning 😉
I think I'm being gaslighted here
it's because of the yt stuff. I am playing songs locally
Sure what's the base arch?
I managed to piss off the AI
that's why
I see
I thought the act of playing music is not allow for bots
I mean, they can disable it completely
and I dont think you will get banned even if you do it, as long as it's not widespread
MEE6
Don't make money off it and it's a non-issue
okay... so.. imma try experimenting with compatibility layers like yabridge because i really wanna use serum
Hello, I am bored from my computer science course, what can I do?
Figure out something you actually want to make and go program that instead
My teacher is currently talking about graph, in oCaml
Okay this was way easier than i thought
Wa
okay but i can't interact with the UI.. frick
I have no clue what you're doing
anyone wanna make a neuro integration with me
trying to use windows native VSTs in linux
For what?
Also I made a gorilla tag neuro integration lol
Mcsm
why?
I sure couldn't figure out how to do that
Isn't that game like abandonedware and also like basically lost software?
No?
secret 
encode to a unified stream for all modal inputs, patching, and some secret sauce in middle
Well have you even figured out how to mod it?
Yes, and there are ways around if I can’t
Oh a mobile game
That's either really easy to mod or really stupid hard
Both pc and mobile and console
Have you decompiled the mobile version? If it's a direct Android port made natively to run on it that may be the best starting point
Will do pc version
It uses telltale engine
And is it JVM or native?
Let me check
I mean you can use https://elmcip.net/platformsoftware/telltale-tool
And it would be for the pc build
Use that for changing Jesse into neuro
Oh is it C#? That makes things real easy
And use a python script for controls
Native lang is lua
No there's 0 shot the engine is in LUA
Yeah the engine is not LUA under the hood
The LUA part is the stuff built on top
Well since the game's front parts are LUA it should be trivial to simply edit the LUA scripts
You could DLL inject?
Na no need
Just go edit the LUA scripts of the game
LUA is a plaintext interpreted language
The library’s don’t have the stuff to run a neuro integration as it can’t create ports
Then you simply use whatever the engine gives you to add those functionalities
It must have some way to either network or interact with system APIs or load libraries
Raaaah I don’t know what to make it with
The telltale modding discord has invites paused
considering it doesn't even check if there's updates or anything even I don't think it would have any networking capabilities
(at least I don't think it checks updates)
Who knows with such weird old obscure engine
What engine does telltale games use anyway
Telltale engine, obviously
Ah, it uses weird compressed archive + lua
There is an editor I found, but only for Walking Dead
literally why
Telltale editor works
Well gn
just tried remixing a demo song
Dude I’m just trying to learn AI but when looking up MLP YouTube shoves my little pony content in my face. Why!?
it may seem like you're not the brightest fella
little known fact that this is directly vedal's fault
Search "multilayer perceptron" instead probably
MLP is a common way to shorten both
the transformer was inspired by the ponies transforming the power of friendship into merchandise sales
But also just look at 3b1b's videos they're good
Thx
Hey guys
I have a T3000 case and a dual 3090/3090ti setup Do you know of any riser cables?
I don't but you can't get them to work you can totally donate to NSP
amazon usually has em
just search "pcie riser cables"
wtf is this
I guess it is sorta useful and you "only" need to embed the entire unicode table of names in your compiler. 
i'd rather eat dirt
Where in [filtered] did you find that [filtered]?
Awawawa
c++23
true!
i can't believe it's still your birthday

the shiro curse is upon you
oh @cobalt vessel remove me birthday role pls 
the goat of educational yt
welchlabs also v good for ml
absolutely huge news for the next dev stream
upd: oh, it's from july
markdown formatting in notepad
noo.. MS Edit the best editor
Windows 10 notepad is the single best exe file ever compiled
Windows 11 notepad has a bunch of stuff I really like but the spellcheck and copilot stuff makes it slow
my win11 notepad works in 15 fps and i have no idea how to fix it and why it is like that
If I see someone else program in a notepad file I'm gonna crash out
No not programming m
Just for literally anything else involving text
its much better with syntax highlight though
and things like vscode allow you to quickly look up the definition of a variable for example which notepads dont allow
I still do this whenever I'm on windows
idk i prefer vscode as code editor its just better
(search sucks)
same
for search i use notepad++
once a year i need to search binary code of txt across many files and i dont know how to do that in np++
but apart from that its perfect
IntelliJ IDEA is what I use for programming
never tried, is it hard to set up? why is it better than vscode?
is it linux only?
hmm i guess i cant imagine what it gives you considering idk how jvm works
It has a ton of cool stuff
It even comes with a Java decompiler
notepad gang
https://www.voidtools.com/support/everything/ Is a really good tool for general search from my experience as well.
ye
if you genuinly use notepad for your daily coding you need to go to a psychologist or something tho
i dont but now i want to just to spite you
spite is respectable
if its just because you're too lazy to install vscode, that's different
i fucking hate cloud slicing
creality cloud is suchy a scam of an app
if my pc can slice a 3D model in 2 seconds, then my phone can do it in 10min at most
instead i get put in a fucking queue for 2 hours cuz the slicing is happening in the cloud
i should make it so if anyone ever bugs me about open sourcing celeste, I send them a emoji-code version of her software. https://www.emojicode.org/ 
Emojicode is a full-blown programming language consisting of emojis.
😀 🔤Hello world!🔤❗️
🍉```
oh for a second I thought you were the creator of Celeste the game and I was like holy fuck
I'm not a precision platformer gamer I don't have the patience
I know people who love that game dearly tho
now i'm getting twitch turbo ads
something is happening
platformer games make me pull my hair out
i prefer cool open world games
story telling and graphics and such
I'd try anything atleast once myself.
yes
hell yea
what 
this escalated quickly 

so true
so anyways
farewell if I get timed out I'll see y'all later






As someone who wasn’t paying attention, I believe you

I would like to go on record, that I ate the record.
my innocence 
hi
Hello vanorsigma

I fucked up some printer setting again, but i now have 4 sharks and only 2 are handicapped 
its on my keyboard cuz the rest of my desk is now filled with microplastics form the supports
tinkering with all the litle settings is becoming annoying tho

I envy you
did you model it yourself too or its some stock thing
i want printer too
that controller looks uncomfy af but i'm sure it's not
what are those big ass square buttons for
it looks goofy as hell fr
those are touch pads
trackpads like on the deck
oh like laptop touchpads?
kinda ye
damn probably good for precise aiming
exactly like the steam deck ones
wouldn’t be surprised if exact same part
no stick drift either if it uses the deck sticks
i thought that was the tracking station lol
i feel like a cube for the proccesing, so the headset is lighter, is good
specialized hardware to interact with the headset is possible that way too
idk if they're doing that, but they could
no not really
why wouldnt it be?
vision pro is stupid because it has the silly external battery
this is wireless tho
yes that’s the point it’s not pcvr it’s standalone
well it is pcvr
i think at least
but it is standalone
i feel like the headset hardware itslef isn't that special
mostly the software stuff is nice
?
it streams from the box to the headset always no?
you can connect it to a pc tho afaik
you can run things locally on the headset
from your pc
ye ^
wait
just works best when streamed with beefier hardware
what is the box for if it doesnt have the gpu and stuff?
it thought the whole point of the box was for the cpu gpu stuff
it’s a console like you know
see gn's coverage on the construction of the steam machine
xbox
SUPPORT THE AI DYSTOPIA REPORT SERIES: https://store.gamersnexus.net/ai-dystopia
Valve today is announcing its Steam Machine, Steam Frame VR headset, and new Steam Controller. Alongside these announcements, the company is moving SteamOS to what is functionally a desktop platform while also adapting it to ARM for the Frame VR headset. The new Ste...
playstation



)




