#tech-chat-2

1 messages · Page 514 of 1

steel stream
#

all good things must come to an end

#

buy the dip!!!

placid blaze
#

Our guidelines for submitting AI-generated code are now up in our repository!
︀︀
︀︀As for all the AI bros seething on our socials, we're simply blocking you.
︀︀
︀︀Learn how to debug, code, and leave behind something useful to humanity when you're gone, instead of peddling slop.

Quoting RPCS3 (@rpcs3)

Please stop submitting AI slop code pull requests to RPCS3. We will start banning those who do without disclosing.
︀︀
︀︀There are plenty of resources online to learn how to debug and code instead of generating slop that you don't understand and that doesn't work.

**💬 195 🔁 1.7K ❤️ 15.5K 👁️ 363.3K **

steel stream
#

RPCS3 has been based for forever

cosmic gazelle
brisk jolt
#

shouldnt be tested on x3d bcs its all margin of error

cosmic gazelle
#

in the other tests he performed as well

brisk jolt
#

also we need to know the game

#

I dont think its worth running if you already have a 8000 samples but I dont so I run it

cosmic gazelle
brisk jolt
#

also uses less voltage across the board

cosmic gazelle
#

also my shitty micron kit doesn't dream of running 8k so

late atlas
#

"we're simply blocking you"

pure garnet
cosmic gazelle
#

@pure garnet how am i supposed to know what trc is supposed to be with tras at 127 lmao

placid blaze
# placid blaze Hello based department https://fixupx.com/rpcs3/status/2053632969357902050

AI Use
Use of AI tools for research and reverse engineering purposes is permitted. However, contributors are expected to fully own and understand all code they submit. Any communication with the team — including code, code comments, and GitHub comments — must come from the human contributor, not an AI agent acting autonomously.

We have unfortunately seen a rise in untested and unverified AI-generated slop being submitted to this project. This wastes maintainer time and, in worse cases, such changes get merged and break functionality for all users. Repeated violations will result in a ban from the repository. Please be respectful of everyone's time.

Pull requests opened by AI agents or automated tools must include a disclosure in the PR description stating the scope of AI involvement — which parts were AI-generated and what human testing or review was performed prior to submission. PRs that omit this disclosure may be closed without review.

If you are unsure about your work, open a discussion issue to talk it through with the team, or reach out to a maintainer on Discord.
It's not even that strict and still the AI bros are malding

brisk jolt
#

intel down up to 10% bois all in

cosmic gazelle
#

if only cpu prices perfectly aligned with stock prices

steel stream
shell void
#

i just heard someone drive by with cool for the summer hardstyle remix playing in their car

#

made me giggle

steel stream
#

living large

shell void
brisk jolt
steel stream
#

god got lazy

#

tried to give the person an excuse to upgrade but wasted it

fringe vigil
#

6090 going to be the king of gpus

pure garnet
#

my apex is a state away so possibly tomorrow

steel stream
#

what about 7090

cosmic gazelle
#

i think i set my trfc too low but i dont have time to test rn

#

it passes some tests but crashes in cpu stuff so i gotta do more testing

merry stirrup
#

sloppy

#

good morning

young void
#

How hards the setup para?

#

And how hard is it to configure for diffrent task? What kinda use cases can one do with Llama and qwen? I hear good things

green marsh
young void
#

Windows 11 and in general im not familiar with the programs at the moment

green marsh
young void
#

9950x3d, 5090, 64gb ram

#

Im running trellis 2 rn but still learning

green marsh
# young void 9950x3d, 5090, 64gb ram

well, for 5090 you probably don't need the many changes llamacpp does, LM Studio is llama.cpp in nicer packaging, sure, it sometimes trails behind by a bit, but probably enough for start.

So, it's relatively simple:

  1. Install LM Studio
  2. enable developer mode and enable server - it will be available at port 1234
  3. under model search, search for unsloth/qwen3.6-27B and pick at least UD-IQ3-XXS quant or higher (but probably 3-bit or 4-bit quants are reasonable), download model
  4. on developer page click the blue load model button, in the list at bottom turn on the "Manually choose model load parameters" and then click on the Qwen3.6-27B in the list. At bottom enable Show advanced settings.
    Rename API identifier to whatever you like, pull the context length to maximum, at bottom of the options check K and V Cache Quantization Type and change it to Q4_0. Then press Load Model.

Now you got an OpenAI and Anthropic compatible LLM server running at http://localhost:1234

cosmic gazelle
#

this is stable ™

green marsh
# young void 9950x3d, 5090, 64gb ram

after that initial setup, you just need to configure LLM harness of your choice to use that URL. For example for Claude Code you can either set the environment variables of system, in batch file or in .claude/settings.json (or custom settings.json file you pass through CLI parameter to claude code) with settings like:

  "env": {
      "ANTHROPIC_AUTH_TOKEN": "does_not_matter",
      "ANTHROPIC_BASE_URL": "http://localhost:1234",
      "CLAUDE_CODE_ATTRIBUTION_HEADER": "0",
      "API_TIMEOUT_MS": "3600000",
      "DISABLE_TELEMETRY": "1",
      "DISABLE_ERROR_REPORTING": "1",
      "CLAUDE_CODE_DISABLE_FEEDBACK_SURVEY": "1",
      "CLAUDE_CODE_DISABLE_1M_CONTEXT": "1",
      "CLAUDE_CODE_AUTO_COMPACT_WINDOW": "200000",
      "CLAUDE_AUTOCOMPACT_PCT_OVERRIDE": "95",
      "CLAUDE_CODE_DISABLE_EXPERIMENTAL_BETAS": "1"
  }
cosmic gazelle
#

i need to run actualy stability testing but it doesn't crash in basic benchmarks

young void
#

Thanks para

green marsh
# young void 9950x3d, 5090, 64gb ram

with llama.cpp you go to https://github.com/ggml-org/llama.cpp/releases, download both "Windows x64 (CUDA 13)" and corresponding "CUDA 13.1 DLLs" for latest release, unpack them in same folder.
Then you run something like:

llama-server.exe --ctx-size 200000 --fit on --no-mmproj --jinja --flash-attn on --cache-type-k q4_0 --cache-type-v q4_0 -hf unsloth/Qwen3.6-27B-GGUF:UD-Q4_K_XL --host 0.0.0.0 --temp 0.6 --top-p 0.95 --top-k 20 --min-p 0.0 --presence-penalty 0 --repeat-penalty 1.0 -ngl 999

That will start a server at http://localhost:8080 (well also at your public IP's, because --host 0.0.0.0) with that model - it will download it and start it.

You can also try to have k cache at q8_0, i think i got up to like 27GB VRAM used with q8_0 k cache and q4_0 v cache.

The difference at client side is just the port.

cosmic gazelle
#

this is pretty dookie but not the worst result on hwbot by a couple of pages so for 4400mts ill take it

green marsh
# young void Thanks para

For other CLI harnesses you need to find out how to configure a local LLM or an OpenAI compatible LLM. For example with Pi it is just configuring JSON file, with Hermes Agent it is literally just picking Custom OpenAI server in the configuration screen and typing the URL

cosmic gazelle
#

@merry stirrup is there such a huge spread in hwbot yc1b times because of people subbing g1 and g2 results?

#

it seems like results for people running 8000 are far faster even with looser timings

hoary hatch
#

I need jaykihn to tweet more NVL information

young void
#

Creative studio install itself to anyone else's phone?

#

If it has no limits going to be fun

green marsh
# young void Thanks para

And model choice is up to you. Qwen3.6-35B-A3B is a bit dumber, but still good, but it will be a lot faster. Qwen3.6-27B is going to be better, but slower. Both will fit in your VRAM with 200k context with q8_0 k cache and q4_0 v cache

young void
#

Ill have to play with it inbetween free time looks neat

pallid marsh
#

@low sorrel

meager saffron
#

Need help with 4 extra noctuah fans im getting replacing my u12a fans with new ones. I have 0 fans on the top or below the gpu. C700m case has 3 140mm front fans that the front panel loves to choke off and one rear 140mm

meager saffron
#

Yah im waiting till thursdsy till clean since thats when the fans come

#

Also power viewer 2 came in and corsair powerprotect

steel stream
pure garnet
#

starting attempt 400 of 8000 on the 7800x3d

#

shit turned into a setsuna chip in the box astolfosleep

steel stream
#

oh interesting, Phillips 951 uses the same panel as LG G6 but will have Dolby Vision 2 support

cosmic gazelle
pure garnet
#

my chip doesn't do 2200 fclk

cosmic gazelle
#

buns

pure garnet
#

it was an impulse buy in the era of unobtainable 9800x3d's

slim pebble
green marsh
slim pebble
green marsh
green marsh
slim pebble
green marsh
#

and in logs (not sure why it gives me the "DHCP failed" IP address there, but you get the point:

green marsh
# slim pebble I have a 5090, I’m also considering adding in a 3090 I have sitting around for t...

to be honest, 56GB of VRAM will allow you to run Qwen3.6-27B at higher quant, or at higher K/V cache quantization, which could mean better precision, but personally i haven't had much issues with UD-Q4_K_XL model quant + Q8_0 K cache + Q4_0 V cache. Had to downgrade to Q4_0 K cache with MTP support, but i have yet to decide if i want to keep it or not (i only got 2x 5070 Ti, so slower than your setup and only 32GB VRAM)

slim pebble
green marsh
slender furnace
#

what's the point of running an LLM locally?

green marsh
slender furnace
slim pebble
#

Yeah no token limits, nobody spying on every query, and it’s respectably intelligent for something running on a PC.

slim pebble
slender furnace
slim pebble
slender furnace
green marsh
# slender furnace but isn't the output way worse tho?

Qwen3.6-27B is on par with Sonnet 4.5. Yes, we got Sonnet 4.6 since, and of course there is Opus 4.6 or 4.7; but a free small local model being comparable to half a year old mid-range commercial model is good enough for majority of tasks

#

usually what you lose with smaller models is world knowledge, but for example as coding assistant that is not as important.

slim pebble
#

You don’t, but I was giving an example of LLM censorship. If it refuses to answer that, what else do they have censored?

pallid marsh
green marsh
slender furnace
slim pebble
green marsh
slender furnace
#

can open weight models be used just as well for learning?

#

like do they have just as much info from books?

green marsh
#

(plus add the K/V cache on top of the model size)

slim pebble
#

The local models also aren’t agentic. They can’t google stuff and analyze the web results. You have to do that and feed it in as part of the context window.

slender furnace
green marsh
slim pebble
green marsh
slender furnace
green marsh
green marsh
green marsh
#

in the end, the classic "chat" usage of these models is the absolute basic functionality, and agentic use (via CLI or desktop coding client) allows it to create/edit files, run commands etc.

merry stirrup
#

nobody has any reason to run 1:1 on cold

low sorrel
pallid marsh
#

People are crazy

low sorrel
pallid marsh
green marsh
vestal granite
pallid marsh
green marsh
slender furnace
green marsh
#

the banned products are most likely not made in China (which is only 4090, 5090, without the D addons)

pallid marsh
#

Many are assembled in China though like mating the cooler to the PCB

slim pebble
low sorrel
slim pebble
steel stream
#

me when prod push fails and I leave my job for 12 weeks on monday

pure garnet
#

this a sign

steel stream
pure garnet
steel stream
low sorrel
low sorrel
steel stream
low sorrel
#

I have no cards anymore

steel stream
#

that might work

low sorrel
steel stream
steel stream
south shuttle
#

nop

#

i’ve seen even ones for €2

maiden prairie
#

Yeah but those won't be good

low sorrel
#

Should I even get a amp for my hd560s

steel stream
low sorrel
steel stream
low sorrel
steel stream
# low sorrel Yeah I have it at 40 most of the time off my motherboards port

yeah that's fine but if you really want one, I think this is a solid amp https://a.co/d/0dScKd4p

low sorrel
#

Oh yeah coopa

#

Did you see that the community manager for squad left

pallid marsh
pallid marsh
steel stream
#

https://jdslabs.com/product/element-iv/ @low sorrel you should get this fr fr

low sorrel
steel stream
#

bare minimum tbh

#

it comes in silver too now

cosmic gazelle
#

yall ever heard of the rtx pro 500 blackwell?

#

it's an rtx 5050 die kneecapped to 2060 level performance

#

slowest 50 series card that i know of

frank cypress
#

fuck i love that so much

steel stream
#

it's so nice controlling volume with it

low sorrel
#

how much was it

#

what bag do you recommend lol

pallid marsh
frank cypress
#

after taxes, iirc

#

for that price it's decent

#

any mroe than that and i feel like it's too much

#

actually taht reminds me, i remember asking linus if they had something at the sale if they had something

#

🤔

#

can't remember what it was though

#

they were also selling ram for alright prices but i wasn't too interested at the time

low sorrel
#

what sale lol

#

im good bro wtf

frank cypress
pallid marsh
#

Or splurge on the high end harbor freight model

pallid marsh
steel stream
#

@edgy laurel

low sorrel
#

ONE LEGO SET IS 650 dollars

steel stream
#

It’s almost 8300 pieces

low sorrel
#

so expensive

fervent elm
#

7 cents per piece

south shuttle
#

don’t like lego since they started putting different colored parts inside builds

shell void
#

it's very expensive to setup unique molds for individual lego pieces

#

if they dont plan on keeping the set in production for a long time then it has to be expensive to recoup cost

south shuttle
low sorrel
#

simply only make mass produced sets

steel stream
wise bear
south shuttle
#

they just make the sets less and less reusable

low sorrel
wise bear
shell void
#

my fam was too poor for themed sets when i was a kid

#

i just have a bucket of random basic pieces of various colors

low sorrel
#

real

south shuttle
#

because instead of filling a set that’s grey, white or black with same parts as outside, they decided to put like orange, purple, green bricks inside

#

where you don’t see

merry stirrup
#

i was just too poor for legos

low sorrel
#

I didn't even know lego came in sets until i was like 8

south shuttle
#

but someone even where you do see

steel stream
south shuttle
#

like when you have rooms

steel stream
#

A lot of sets

shell void
#

i had more fun playing like that anyway tbh

steel stream
#

My uncle is a crazy collector though, buys two of every set he gets, one to preserve and the other to build

south shuttle
shell void
#

think of something, make it, play with it, destroy it, and put it back in the bucket

steel stream
low sorrel
#

can you even still buy basic lego anymore

steel stream
#

No more joy and whimsy

south shuttle
steel stream
#

I must use the kragle on all my sets

low sorrel
#

the hell

south shuttle
#

if i would buy lego i’d go off brand

#

it’s all just abs plastic

steel stream
south shuttle
#

it’s fun when it breaks

low sorrel
south shuttle
steel stream
devout ridge
#

Lego has suprisingly really tight tolerances

#

That's why offbrand lego always kinda sucks

steel stream
wise bear
devout ridge
steel stream
#

Agreed

low sorrel
devout ridge
#

They added in looser tolerances to the design, they didn't reduce the tolerances

#

IE making the hole a little bigger, not making the tolerance on the hole wider

south shuttle
south shuttle
#

good luck breaking your nails

devout ridge
#

Weak

#

Also, brick separator

merry stirrup
#

almost like there’s a tool for it specifically

south shuttle
# devout ridge Weak

wym weak 😭 my nails literally get destroyed and the bricks had dents in them

low sorrel
#

ngl i never played with much lego as a kid

#

i was a playdoh kid

turbid locust
#

That explains a lot

merry stirrup
#

probably ate a bunch

low sorrel
#

fuck off

merry stirrup
#

3060

low sorrel
spiral quarry
#

Grew up on legos lol.

merry stirrup
#

my mom has a better gpu than you that’s all i’m saying

low sorrel
#

oh and hot wheels

devout ridge
#

I grew up on legos and snap circuits

south shuttle
#

i’ve also had these

spiral quarry
#

Still have it in the closet in a box so all creative freedom if I am willing to sort the pieces out.

merry stirrup
#

for the foreseeable future

low sorrel
#

what gpu does she have

merry stirrup
#

a 3070

south shuttle
low sorrel
south shuttle
#

if you stuck a red knob onto a metal rod, there was a 30% chance it would never come off

#

like literally

#

two pliers, i asked my mom to help and it refused to separate

low sorrel
#

@turbid locust hot wheels > lego

south shuttle
#

tried hammer as well lol it moved a little and that’s it

#

no idea how it could get stuck that badly even

turbid locust
arctic bronze
arctic bronze
#

We got what we could

south shuttle
low sorrel
#

actually this shit was peak

arctic bronze
south shuttle
#

i think it happened with older bricks as the plastic ages

low sorrel
#

and the battery started smoking

arctic bronze
low sorrel
#

and then i was sad

south shuttle
#

by themselves

#

oh you meant that yeah

arctic bronze
south shuttle
#

that would work

#

but what i mean is they’re sometimes pain in the ass to separate

low sorrel
#

and damn that shit is expensive

arctic bronze
south shuttle
#

i used needles

arctic bronze
south shuttle
#

then it was easy with nails

arctic bronze
south shuttle
#

at the time we didn’t have anything else other than needles

low sorrel
south shuttle
#

now i can use stuff like a slitted screwdriver

pallid marsh
arctic bronze
south shuttle
#

oh well maybe i could’ve used cans but i was affaid of cutting myself

arctic bronze
low sorrel
pallid marsh
arctic bronze
low sorrel
steel stream
arctic bronze
steel stream
#

and it's races without kids or smth

pallid marsh
#

Oh I thought it was a build your own then race in tournaments

arctic bronze
#

Its an awesome feeling to own your own gokart or minibike and being able to fly at like 50mph

steel stream
#

it's a pre determined track with karts given

#

24 hrs of lemons would also be fine though

pallid marsh
steel stream
#

that's pretty sweet

#

I wish I had a garage so I could do all sorts of dumb things

pallid marsh
#

Rent a storage unit 😆

arctic bronze
low sorrel
wraith steeple
steel stream
pallid marsh
low sorrel
vestal granite
#

its just a lemon, what could it cost, $10?

low sorrel
#

Everyone cheats on the first part

vestal granite
#

yeah what about sales tax

pallid marsh
low sorrel
arctic bronze
low sorrel
#

Bribery is allowed under the rules

vestal granite
#

sell me your car and then ill sell itb ack to u for $500

arctic bronze
vestal granite
low sorrel
arctic bronze
pallid marsh
arctic bronze
pallid marsh
#

Only safety is what you are wearing

arctic bronze
#

You can build them to meet it, but most custom ones normally dont unless ur building it specifically for racing

vestal granite
#

just wear a helmet and leather clothes and youll be fine prorbably

low sorrel
#

The LS is probably bigger then the entire go kart lol

arctic bronze
vestal granite
#

make it a half-track and put a claw on it

low sorrel
pallid marsh
arctic bronze
wise bear
#

lets ucking goooooo

pallid marsh
#

You didnt download the free copy?

wise bear
#

no wtf i bought it months ago

pallid marsh
#

You pre ordered a game?!

wise bear
#

well yeah its forza

arctic bronze
wise bear
pallid marsh
pallid marsh
#

Fuck ai

wise bear
#

or 1/4 of my boot drive

#

or 1/12 of my overall storage popcat

#

I think i mathed that right

brisk jolt
wise bear
#

500 of 6000 would be 1/12 right

pallid marsh
#

Yes

wise bear
#

yay i mathed

pallid marsh
#

12 512gb sdds

wise bear
#

I also bought a new keeb

pallid marsh
#

What anime board is it

wise bear
pallid marsh
#

ayaGasp a non weeb board impossible

wise bear
#

I honestly don't like the anime stuff

#

anime, cool

anime weeb merch, 99% lame

hoary hatch
#

A Logitech low profile board without laser ablated ABS keycaps? I am shocked

pallid marsh
#

The weeb model is cheaper huh

wise bear
#

and i bought the white one instead

#

💅

brisk jolt
#

with the sole exception of buildable model kits

pallid marsh
#

Oh not that weeby

wise bear
#

lightspeed = dope tbh

arctic bronze
wise bear
#

yeah its very minimalistic

pallid marsh
wise bear
#

I wanted a wireless solution so I can just grab the keeb and mouse and go to the tv den across the hall

#

lightspeed is actually insanely performant

pallid marsh
#

I want keyboard tv remote

wise bear
#

I did some jankery for my tv wiring

pallid marsh
#

Hmm

wise bear
#

fiber hdmi, 2 usb extenders with retimers, ethernet

pallid marsh
pallid marsh
arctic bronze
wise bear
pallid marsh
#

Phishing wire is infuriating

wise bear
#

also considering I have no attic space

#

its ceiling drywall, framing, insulation, more framing, and then roofing

#

no gappage

pallid marsh
#

Crawl space ?

wise bear
#

yeah but I'm not armoring things just to put holes in the floors

#

I'll do that in my new house

pallid marsh
#

Steal copper pipe and use that as free armoring

wraith steeple
wise bear
#

Been looking at land and researching home manufacturers

pallid marsh
topaz veldt
#

overhead today

wise bear
#

Lookin' at 1000sqft on 2-4 acres

wise bear
wise bear
wraith steeple
wise bear
#

If anything I'll be going with them because they have a local branch and do custom stuff

frank cypress
wise bear
#

Because I could easily have my detatched garage and cabin

pallid marsh
topaz veldt
#

No SM fiber to the shed no care

pallid marsh
wise bear
#

No it'll be more of a cabin shell than a shed

#

and yes there will be fiber ran to the house. that's gonna be mandatory.

#

I've already budgeted 10 grand for that

pallid marsh
#

What about that good old natural gas

topaz veldt
#

shed pull

wise bear
#

natural gas will also be another large consideration

#

because I'm gonna be considering more remote forested areas or the high desert in eastern oregon

#

so it'd be nice to have a backup generator that can run on NG or propane

#

also dual-fuel water heating and hvac

pallid marsh
#

Our natural gas saved us a few cold winters nights when our power or heater went out since we have gas fireplaces

steel stream
#

they just installed a bunch in my home county

wraith steeple
#

I wonder if SH has them

topaz veldt
#

dude you're getting a dell

pallid marsh
#

My local Lowe's had flock for like 2 years or more

steel stream
wraith steeple
pallid marsh
steel stream
topaz veldt
steel stream
wraith steeple
steel stream
#

yup, luckily I am only on boil warning, but that's crazy

#

downtown Auburn Hills was flooding

#

and having a 42" pipe burst is nuts

#

idk how that happens

topaz veldt
#

thats a lot of water

#

your shit is gonna be brown/sediment for a while

steel stream
wraith steeple
topaz veldt
#

man oh man

steel stream
frank cypress
topaz veldt
frank cypress
#

that's what, a casual $3mil?

pallid marsh
topaz veldt
merry stirrup
#

meow

devout ridge
#

I love using my UPS as a heated foot rest

steel stream
#

just gotta put padding on it

devout ridge
#

no

#

raw dogging feat on the UPS

viral iron
#

how noticable is purple blacks on a QD oled.
i like my room with a big of ambiet light
I see comparisons on youtube and it looks pretty bad but comments say its not as noticable irl than on camera.

steel stream
#

I ran one for a bit and could tell it was there

viral iron
#

i'd like a 4k 240hz but they dont make a new one with woled, so do i just wait for a new panel to come out.

steel stream
#

id say so

#

tandem WOLED should come 4k 240Hz soon, and that would be peak

pallid marsh
merry stirrup
#

you would be

steel stream
#

Coopa might just be gollum

viral iron
#

think ill just wait then

steel stream
#

yeah that's what I would do, unless you find a good deal on QDOLED

viral iron
#

Price isn't really an issue.

#

I just want whats best for my use case.

#

These monitors all eventually go on sale anyways.

merry stirrup
#

weird logic

#

however i get it

pure garnet
#

did asus only make like 5 z790 apex encores

merry stirrup
#

like the name suggests yeah

#

“encore” they had no reason to make a bunch of them, the board was a refresh for specifically ocers

low sorrel
#

Was not expecting @frank cypress to look like that

frank cypress
pure garnet
frank cypress
#

muehehehehehe

steel stream
merry stirrup
#

yes because they blew up. different reasons LOL

steel stream
#

should have gotten a TC2 meetup selfie smh

pure garnet
#

define blew up this is news to me

merry stirrup
#

iirc they put a cap or something the wrong way on the boards and they partially blew up

#

it was either z690 or z790

pure garnet
#

😭

frank cypress
#

fuck the thing im glad about not dealing with that PC anymore is that it's lowk kinda fucking heavy

merry stirrup
frank cypress
#

it was way heavier when it had the second rad but fuck my back is too old for that shit

pure garnet
#

buying a z690 apex to struggle getting 7200mt on a 14900k

merry stirrup
#

😭

frank cypress
#

plus all of my watercooling stuff

steel stream
#

2080 Ti?

frank cypress
#

4070

merry stirrup
steel stream
#

oh holy shit

frank cypress
#

5950x/x570 godlike/4070/1600w + all the watercooling shit

steel stream
#

Jerry has a usable GPU for his display now

#

damnnnnnnn

merry stirrup
#

might display 4K idk

steel stream
frank cypress
#

the whole gang is on ampere or newer now

#

🔥

brisk jolt
#

did he get something other than a 3060

steel stream
devout ridge
#

3060 ti

steel stream
#

bro has made it

devout ridge
#

Lol it would be really funny if he got a 3060 ti

frank cypress
steel stream
#

4070 is what I consider to be the bare minimum for 4K

low sorrel
frank cypress
steel stream
#

lift it with your mind

frank cypress
#

good luck 🫡

merry stirrup
frank cypress
#

fuck ass case fr

frank cypress
#

back to an all intel household though 🔥

#

no more hotglue cpus

brisk jolt
steel stream
brisk jolt
#

oh shit jerry has a gpu faster than my slowest one now

#

this is unacceptable

merry stirrup
#

haven’t paid ebay pricing for hw in so long i’m spoiled af

pallid marsh
steel stream
merry stirrup
#

i can bully his shit 4070

pure garnet
steel stream
#

@frank cypress did you sign the 4070 for jerry

frank cypress
#

no 😔

steel stream
#

RIP

frank cypress
#

but kyoko didn't sign it either

pallid marsh
#

How much was the 4070

merry stirrup
#

6$

frank cypress
#

$450 but then ups bent me over and fucked me

pure garnet
#

floppa mac and i shipping the same crappy motherboard cross country multiple times

pallid marsh
frank cypress
#

so we don't talk about the end price

frank cypress
#

yeah

steel stream
merry stirrup
#

so far yeah

frank cypress
steel stream
#

so in TC2 land it's a collectors item

merry stirrup
#

i want you guys to sign things when they go to me tho

frank cypress
#

well biggie signed the 6700xt? he sold to iono iirc

merry stirrup
steel stream
merry stirrup
#

oc’s fine on mem and has a good core

merry stirrup
steel stream
#

I gotta start practicing the akn signature

merry stirrup
frank cypress
#

well biggie might've drawn a phallic object on the gpu instead of signing it, i don't remember

merry stirrup
#

LOL

merry stirrup
#

@turbid locust see were special

steel stream
#

it's also radeon so it's value is like -300$

merry stirrup
#

true

frank cypress
#

fr

merry stirrup
#

pay me to take it off you

frank cypress
#

last i heard iono has a 4070 from random or something

merry stirrup
#

and to think i almost bought a 9070xt

steel stream
#

I'll buy AMD products just to send videos of it taking a sledgehammer

merry stirrup
#

i’ve figured out the amd method though so i won’t

merry stirrup
pure garnet
frank cypress
#

man i miss random posting shit like tossing GPUs out of a window or washing it in the sink

merry stirrup
#

(drivers)

steel stream
merry stirrup
#

never forget ✋😔

low sorrel
#

@frank cypress how the hell do I open the case

turbid locust
frank cypress
merry stirrup
frank cypress
#

then you can slide off the glass

merry stirrup
#

that’s close enough

frank cypress
#

don't look in the back, it's an utter mess

turbid locust
steel stream
#

Mr 7900XTX over here

frank cypress
#

power cable is in the box of custom loop shit

wraith steeple
#

Not as iconic as 5nail breaking his ram modulesCB_kermit_lmao

pallid marsh
#

@low sorrel when are you getting a real 4k gpu with 16gb of vram

merry stirrup
pure garnet
merry stirrup
#

so bad i swapped back to a 3080 from it

frank cypress
#

LMAOOOO I just realized

#

he still has the same amount of vram

merry stirrup
#

LOL

spiral quarry
turbid locust
pallid marsh
merry stirrup
#

mac when are we going to a meet together

#

i must meet uncle mac

pallid marsh
steel stream
frank cypress
merry stirrup
turbid locust
frank cypress
#

btw the case is a utter piece of shit 👍

frank zealot
wraith steeple
pallid marsh
frank cypress
#

i hated it the entire time i had it and wanted to upgrade to a proper o11 the entire time i had it

merry stirrup
turbid locust
frank cypress
merry stirrup
frank cypress
#

well, spec wise

merry stirrup
#

you, yoko, ennui, and akn i gotta see you guys once

turbid locust
steel stream
#

we will see where I end up after college

merry stirrup
#

my bedroom

pallid marsh
frank cypress
steel stream
pallid marsh
#

Massive debt with no jobs hiring?

wraith steeple
#

Everything gives you debtDANger

steel stream
#

guys will my masters in creative writing pay off in the long run

pallid marsh
#

Could help you get a job as a substitute teacher

merry stirrup
frank cypress
#

oh ofc ofc

steel stream
#

in debt till my 60s

steel stream
pallid marsh
#

Wonder when I will get into debt thinkpad

merry stirrup
steel stream
merry stirrup
steel stream
#

mow the lawn too

merry stirrup
#

shii we’ll get that non existant basement

steel stream
#

dig it out ourselves

merry stirrup
#

boutta show up on mac’s door
step like a lost puppy

turbid locust
#

Floppa is there a world where my H24M does really dogshit tRFC like 180ns

merry stirrup
#

if you get unlucky yeah - but it’s to my knowledge that trfc is based off electrical design characteristics of the IC so it shouldn’t vary that much

#

consider heat with anything RFC related perhaps

steel stream
turbid locust
#

When I tested at 177ns and max tREFI it failed mega fast

turbid locust
merry stirrup
#

interesting

#

what volts?

wraith steeple
#

I should visit family back home at some point. ||Luckily the biggest hurdle has been taken care of as the previous regime, I would be jailed/disappeared if I were to land at the airport. Just a matter of when that day will come.||

turbid locust
#

Loose everything else

merry stirrup
#

yeah wow maybe you just have unlucky dimms

pure garnet
#

im going to break my monitor

merry stirrup
#

i swar

pure garnet
#

the 7800x3d error'd again

merry stirrup
#

😭

steel stream
turbid locust
steel stream
#

also this kid in high school in one of my classes had that as a stim and abused that shit

pure garnet
#

i have tried in order:
cleaning the dimms
reinstalling the dimms
changing the dimm order
vddio
vddp
vdd
loose memtryit timings

#

the chip just exploded in the box i guess?

steel stream
#

like an alt with a 2 second cooldown he just spammed it

merry stirrup
turbid locust
#

It’s just mad weird that the difference between 8400 running vs erroring in 5 mins no matter what was swapping ICs

steel stream
turbid locust
#

Shit would not run on H16A

wraith steeple
merry stirrup
turbid locust
#

yes but that much lighter?

merry stirrup
#

i expect 9266+ on h24m daily stable on my system

merry stirrup
turbid locust
#

yeah u right

pure garnet
turbid locust
#

fucc it we slam 1.55v VDDIO when we get home and try for 8600

#

actually I need to see if H24M works at 8400 with less VDDP

#

Buildzoid told me it was fine but 1.2V VDDP makes me moderately uncomfortable

pure garnet
#

im gonna one up bro with 8800 fr

merry stirrup
turbid locust
#

This is all because 5nail got 8300 going

merry stirrup
#

yeah i’d expect probably 1 ratio from h16a -> h24m

turbid locust
#

He’s on H16A running that so maybe he needs to swap too

#

Although he usually has better luck with H16A

merry stirrup
#

iirc his h24m is wacky

turbid locust
#

His ARL ran shittier with H24M

merry stirrup
#

isn’t he cudimm though? coulda been it

#

i dislike them heavily

#

iirc every score with cudimms is in bypass mode

turbid locust
#

With that being said my 270K liked H16A and my 265K liked H24M it made no sense lmao

turbid locust
merry stirrup
#

oh wowza

#

interesting idk then, probably pcb/training diff though

brisk jolt
cosmic gazelle
#

mac did you see my ultra gamer 4400 tune

turbid locust
#

naw

merry stirrup
#

it wouldn’t surprise me if the z890 apex was intended for h16a gskill just like the ocf is

turbid locust
#

true

merry stirrup
#

because yeah, the ocf sets terms automatically for gskill dimms always

frank cypress
#

hnmmm jerry is awfully quiet, i hope he got it figured out

merry stirrup
cosmic gazelle
#

i just copied some guys timings off reddit and set my own primaries and they worked

pure garnet
#

my apex is getting my gskil h24m udimm

turbid locust
cosmic gazelle
#

no

#

it was just to verify that overall system performance hadn’t suddenly taken a dump

merry stirrup
cosmic gazelle
#

the cinebench wasn’t really relevant it was just the screenshot i had

cosmic gazelle
#

i’ve only ever gotten around 23k on this chip

shell void
merry stirrup
#

what’s on it? tower cooler?

cosmic gazelle
#

old abused 280

merry stirrup
#

probably the same then

#

lot more mass ig

cosmic gazelle
#

i have a 3080 so upgrading my cpu cooling would be a complete waste of money rn

merry stirrup
#

one would have to agree

shell void
#

a phantom spirit would probably do better, but if your aio isnt loud then it doesnt really matter

#

missing out on a few percent of multithread performance is irrelevant

cosmic gazelle
#

yeah

merry stirrup
#

that’s what i never understood

#

people will run cb then ask if their cpu is performing right for games

#

like dawg 😭

frank cypress
cosmic gazelle
#

i ran a 5800x under this aio for like 2 years with broken airflow pattern and it ran at like 90+c constantly

so i’m assuming the condition of this cooler is not exactly optimal

#

the water hit over 50c regularly

frank cypress
#

i use it for that cause that's literally what i use my pc for sometimes but it's not actually relevant for most people out there

merry stirrup
#

5800x is a very heat dense chip

merry stirrup
#

i’m sure*

pure garnet
#

shoutout before i learned how to stress test that i just ran my 5800x3d at like -50 or some shit

merry stirrup
#

source - asetek lol

cosmic gazelle
#

yeah but just saying it’s not operating at 100% and also is just an older cold plate design

merry stirrup
#

yeah

pure garnet
#

didn't even check with r23 or anything i just opened my game

cosmic gazelle
#

also i can’t verify it didn’t go over 60, very well could have

pure garnet
#

and cranked it till it crashed

steel stream
frank cypress
#

the evil urge

cosmic gazelle
#

my cpu hits like 30% usage and 60-70 watts in almost any game i play so it’s not gonna matter until i upgrade my gpu at some point

merry stirrup
#

67

steel stream
viral iron
frank cypress
merry stirrup
frank cypress
#

i can't do ceiling cause i have shitty asbestos popcorn ceiling

merry stirrup
frank cypress
#

ok idk if it actually has asbestos but it is popcorn

steel stream
viral iron
wraith steeple
cosmic gazelle
# merry stirrup 67

the most power i could get it to draw regardless of undervolt or whatever is 145-150 watts in cinebench, i dont know what non cooling limited chips hit but its fine for me

frank cypress
#

which is why i've been going with projectors 😔

merry stirrup
merry stirrup
#

ya

shell void
#

a projector is one of the only types of display that i havent had in my house before

frank cypress
shell void
#

ceiling projection seems awesome for lying down in bed but i also have that popcorn nightmare ceiling

viral iron
#

Lets play league of legends.

steel stream
steel stream
#

I've got a flat ceiling lucky, but I just do TV at the end of the bed method

frank cypress
steel stream
frank cypress
#

ohhhh 🤔

pure garnet
#

i have a flat ceiling

shell void
#

ouuuu shiiii 🫃

pure garnet
#

i'll add it tothe list

steel stream
merry stirrup
#

i’d like to add smart sensors to my home

low sorrel
#

@frank cypress where are the screws for mounting the radiator to the case

merry stirrup
#

like door open closed
window open closed stuff like that

frank cypress
steel stream
#

two TVs in da room

frank cypress
#

i think those small stubby screws are for the rad

pure garnet
#

the only homewide upgrade im doing is faster wifi points at some point

turbid locust
frank cypress
#

and the long screws are the ones with the fan alr

steel stream
low sorrel
pure garnet
#

even with a wired backhaul (which nukes my sisters speeds) we only get 500/500 over wifi vs the gigabit we have

steel stream
merry stirrup
frank cypress
frank cypress
#

i mean you could do two screws per fan lol

#

just use two diagonal screws lol

merry stirrup
frank cypress
#

it'll be fine

steel stream
frank cypress
merry stirrup
#

my mom does have android though does this matter

low sorrel
#

Ah yad your loop has an air bubble

frank cypress
steel stream
low sorrel
steel stream
frank cypress
steel stream
#

my favorite thing about my matter lights is that they turn off and on when I leave the house

frank cypress
#

or spilling it everywhere

merry stirrup
#

this is simple and smart

#

i assume it just connects to your phone every once and a while to see if you’re there

frank cypress
#

the pump is at the bottom anyways so it's not like that'll die cause of it either

steel stream
merry stirrup
#

do i need one?

#

or is it diyable

frank cypress
#

oop dinner

icy mortar
#

uhh I assume my 850W PSU would implode if I added a 3060, right? (also dont worry, I know I wont get more FPS in games or anything like that)

steel stream
merry stirrup
#

special radio signals and whatnot

steel stream
#

i legit just found this

merry stirrup
#

okie okie i’ll bookmark that

#

yeah i’m gonna do storage on the box and then buy all that stuff

steel stream
#

oh hmm I am also learning a lot

merry stirrup
#

cause the ultimate goal is also surveillance but it can wait

steel stream
#

yeah I really just wanted my lights + Siri integration

#

not having to go into some 3rd party app to turn off my lights when I could just use siri is peak

merry stirrup
#

yeah there’s some freaky people here no lie but it’s alright

steel stream
merry stirrup
steel stream
#

damn that bad

merry stirrup
#

😭yeah bro

low sorrel
#

The second rad is probably going to be just for show lmao

#

I cba to drain it right now

turbid berry
merry stirrup
#

jerry are you delaying ddr5 for the foreseeable future?

shell void
#

brother akn im using the taxbook pro for something other than taxes right now, this is an unprecedented and momentous occasion

merry stirrup
#

most of my online aliases have something to do with floppa

fringe vigil
merry stirrup
#

i just like the cat not roblox

shell void
#

(im just using it to watch youtube and text in here)

merry stirrup
#

youtube on the crackbook? why

#

don’t you have a million better displays in your home

shell void
#

i was autonomously presented with an itch to update the taxbook, and then use it in bed

merry stirrup
#

interesting

steel stream
#

oh I updated my iPhone today

merry stirrup
#

that is the upside of laptops for me i have no use for one otherwise

steel stream
#

now apple maps has ads

merry stirrup
shell void
steel stream
merry stirrup
steel stream
shell void
#

if i didnt have an iphone 17 pro max then i would also be on 18.7.829e1weudshas or whatever the latest patch for that is

#

i have my 13 pro max on that, and i think it looks nicer

merry stirrup
#

yeah that’s what i’m on

steel stream
merry stirrup
#

liquid ass

shell void
#

i dont think thatll ever happen, we'll just have this until the next redesign

steel stream
#

liquid glass is nice and stuff for the wallpaper, camera app

shell void
#

it doesnt make me mad or anything, im not a raging anti-26er

steel stream
#

liquid glass is actually good on TV os though

merry stirrup
shell void
#

i just think that the previous ui design was better, especially the more squarish corners

merry stirrup
#

12pm, thing is ancient antiquated tech

steel stream
shell void
merry stirrup
#

likely

shell void
#

18.7.tenmillion is very polished

merry stirrup
#

i have a 13 i’m going to repair but it’ll probably be used as a camera

#

(the webcam clearly needs upgrading)

turbid locust
#

I will upgrade every 4 years as god intended

merry stirrup
pure garnet
#

i only upgraded early to change sizes

merry stirrup
#

bro i just wait for someone in my family to not need a phone anymore realistically

#

not a mobile computing kinda guy

#

like 95% of my screen time is a at a real desktop like god intended

pure garnet
#

i used to buy a new phone every 6 months but now i stopped caring

turbid locust
#

Same that’s why I just wait 4 years

merry stirrup
#

tc1 is awful

spiral quarry
#

👀

steel stream
merry stirrup
#

it’s not even that i think all people are “addicted” to their pgones

#

i just don’t have a large use case for computers not at home

#

if i want to read an article im not doing that on my phone i dont hate myself or my eyes

steel stream
#

I just try and use it for staying in contact with people now that’s about it

#

Texts + phone calls, occasional email

#

And then just generic phone stuff

shell void
#

we had the same sort of design and controls for a long time

spiral quarry
#

How you handling with battery life on it?

#

Lol I still see people complaining about it being terrible, but was comparing it from ios 18 and both are unchanged on my end

steel stream
spiral quarry
#

At least with my 16 and for a bit I tested it on the 12 I use to main.

shell void
#

i didnt realize that we had the same design for that long until i just went back and looked at each version

steel stream
shell void
steel stream
#

My 16 pro is still doing great

#

I charge about every 1.5 days

shell void
#

my 13 pro max on ios 18 was dead by the time that i got home from work, i was used to charging it mid-day

steel stream
#

To 80%

turbid locust
#

I charge mine every day but to 80% max

merry stirrup
#

i charge mine

turbid locust
#

Just over a year of use now, still 100% battery health

shell void
#

i charge mine during lunch, and while i sleep

merry stirrup
spiral quarry
#

Dropped to 97% for me lol. I don't care otherwise

steel stream
merry stirrup
#

that 12% is crucial for more reels

steel stream
turbid locust
#

My 12PM dropped from 100% to 79% in the first few months and stayed there for the next 4 years. Idk. I think it was defective.

merry stirrup
#

im not even gonna show or say just know its cooked

steel stream
merry stirrup
#

i replaced it when i got it 3 years ago but now the health down again

spiral quarry
#

I got some other shortcut they analysis to a bigger detail but not bad for the 12.

steel stream
#

There’s already a fuck ass mosquito in my house man

shell void
steel stream
steel stream
#

I’ve never seen that before

merry stirrup
#

he yearns for monolithic cpus and no such thing as infinity wires

spiral quarry
topaz veldt
#

@edgy laurel mf just ripped overhead running no lights

merry stirrup
#

i gotta learn from uncs before to stretch before i go into work

spiral quarry
#

Gives you a bigger read out on the charger used, battery temps, and a logged history of mah drops over the months.

merry stirrup
#

my back hurtin

#

doesnt help that i probably look like a bridge goblin while building puter or fixing puter

topaz veldt
merry stirrup
#

nah its not the lifting i just have terrible posture

#

i have to not do that

#

heaviest computer ill ever build is probably 80 pounds and i definitely got that

steel stream
merry stirrup
#

noted

steel stream
#

I had terrible back pain for a bit and that helped

#

Back extensions + ab crunch

merry stirrup
#

lock in season

steel stream
#

I gotta get back on the grind, I took the week after finals and this week off from the gym

shell void
#

repost but i’m mildly excited about this board potentially having copper heatsinks

#

i hope it looks cool

steel stream
#

I love the look of copper so hopefully it looks good

topaz veldt
#

I got my unc shoes on

steel stream
merry stirrup
#

moccasins are peak

steel stream
#

I’ve got a pair and they are nice

topaz veldt
#

Cozy outdoors

merry stirrup
#

i like my feet warm

#

i have hardwood floors so theyre always cold so mocassins would be peak

steel stream
merry stirrup
#

and i can walk outside in them which is even better

steel stream
#

I’ve got an indoor and an outdoor pair but I just never wear the outdoor ones

merry stirrup
#

lol

#

neat, probably fart

#

if a floppa had to guess its going to be some like h16a downbin but not cutdown or perhaps like cutdown h24m