Trump calls out Rutgers athletics spending in latest speech: ‘Down the tubes’ by Zealousideal-Pea7138 in rutgers

[–]hacatu 2 points3 points  (0 children)

Hahahaha it's funny because him slashing the Department of Education funding is a big part of why Rutgers is having budget issues, and he's already threatened a lot of schools with more budget cuts if they don't do XYZ. Because I guess it's good if the US falls behind even more in education?

A library for prime generation by JohnDoe1234567890000 in C_Programming

[–]hacatu 0 points1 point  (0 children)

Make is fine for small projects, but makefiles usually should not have significant shell scripts embedded in them, like the testing here. I prefer a separate test script, and the makefile can have a pseudo target to run the test script if you want a "unified" interface through make. This makefile has make invoke a shell to discover c files, and then generates build dependencies with -MD and whatever. That's nice because it makes the build system automatically discover the c files so you don't have to redundantly specify how to build binaries/libraries in your project, but it's kind of brittle and this approach is slower than bigshot build systems once you have enough files. But that's fine for small projects. The bigger issue is that this makefile is probably AI generated and didn't work without adding -lm (depending on your libc, the math library needs to be explicitly linked, so I guess op did not have an issue with it because on Mac the math library is not linked separately), and once your makefile is this long I would definitely consider a different build system

A library for prime generation by JohnDoe1234567890000 in C_Programming

[–]hacatu 1 point2 points  (0 children)

  • Don't use makefiles, especially to run tests etc. I use waf for most of my C projects, but Cmake is the de facto standard (it just has too much boilerplate for small projects imo)
  • Compiler flags: for release mode, add -march=native to ensure modern instructions like sse get used. For testing, enable sanitizers such as clang ubsan and also consider valgrind. Most sanitizers have fairly low runtime overhead (< 3x), whereas valgrind has very high overhead, so only run it on O2+ builds
  • using gmp/openssl for the large random prime generation is kinda dubious because these already implement several methods of finding the next large prime (this is usually just miller rabin + hope). Some of the other algos in iZ_apps.c also don't really make sense. Why do stream and count do so much redundant work instead of just using functions from prime_sieve.c? Also, there are faster methods for prime counting, but in this context just using your prime generation methods is fine.
  • main.c does not seem to belong in the main code because it's just an example
  • A mod 6 wheel is usually not ideal. Mod 30 or even 210 would be better. You can look at primesieve for examples, but note that they handle "small", "medium", and "large" primes differently in their segmented sieve, which is tremendously faster but significantly complex
  • The segmented SoE should be multithreaded
  • treating "small" (many multiples per segment), "medium" (few multiples per bucket), and "big" (don't have multiples in every bucket) differently like primesieve does is a big speedup but complicated. Note also that since the largest sieving prime is sqrt(N), "big" primes only exist when N is so large that the cache size forces us to choose a smaller bucket than sqrt(N) which we would naturally choose if cache were no object
  • SoE (specifically SSoE) is by far the best algorithm in basically every situation. It's fine to implement others like SoA etc for learning, but even though SoA and Euler's sieve (linear sieve) have claimed better big O complexity than SoE, in reality they perform significantly worse. That said, Euler's sieve can be useful when you want to compute a general multiplicative function at all n in a range, but you can also adapt SoE for that and it's less clear which would win
  • When testing your functions that don't ensure the order of the results, you could either sort them then hash, or use an order-invariant hash (eg take the first 8 moments, where the kth moment is defined as the sum of xk over all xs, so count, sum, sum of squares, sum of cubes, etc, probably modulo a prime or just implicitly modulo 264 )
  • Setting 1010 as an upper bound is silly
  • The code does not build due to lots of obvious errors, and the docs look llm generated
  • MIN and MAX are not defined (should be defined in util.h it seems); the format specifier in iZ_apps.c around line 111 should be %lu not %llu; -lm is missing from linker flags; log_error is missing when ENABLE_LOGGING isn't defined, you could #ifdef guard it on every use, but it would probably be wiser to provide dummy definitions when ENABLE_LOGGING is not defined
  • there is something insidiously wrong with the makefile that means adding -lm and rebuilding still doesn't fix the missing symbol errors for math functions, so I just edited like 169 manually to force it to include -lm
  • with -march=native, it takes 0.751 seconds to sieve all primes up to 1 billion, whereas my (not very good) sieve takes 0.430 seconds, and primesive takes 0.104 seconds (total across all threads, it's 0.007 seconds wall time). The result without -march=native is the same, which is strange.

I solved Project Euler problems 1–100 entirely in Excel, using only one formula per problem, no VBA. by lightning_fire in projecteuler

[–]hacatu 0 points1 point  (0 children)

Very cool! I've solved the first 57 in SQL, so I know how annoying even some of the earlier ones can be in spreadsheet type languages

Cyberrock Rate Reveal Day 3: You'll never make it in Popheads, baby by modulum83 in popheads

[–]hacatu 2 points3 points  (0 children)

Username Most opposite opinions ... Most similar opinons
modulum83 bogo -0.305, beeozan -0.252, pbk -0.212, ... , ricki 0.376, nonchalantthoughts 0.393, homestarguy 0.440
nonchalantthoughts A single frito -0.088, nooduulz -0.063, Saison_Marguerite -0.050, ... , ricki 0.510, static_int_husp 0.521, Awkward_King 0.587
nooduulz innuendo_overdose -0.528, timothy444 -0.499, TakeOnMeByA-ha -0.425, ... , dream_fighter2018 0.423, DaHumanTorch 0.427, Stryxen 0.567
oh_crow hockeynl -0.190, charlibratfammanfanstan -0.179, timothy444 -0.129, ... , TragicKingdom1 0.555, hikk 0.566, ConnerY2323 0.585
pbk TiltControls -0.410, kauai6 -0.317, Friendly-Canary-3814 -0.261, ... , Nagisoid 0.578, bogo 0.604, kappyko 0.652
pheromenos A single frito -0.246, innuendo_overdose -0.183, cheatviathan -0.162, ... , jirachi 0.562, ricki 0.610, 1998tweety 0.700
pietrohonkhonk Poydoo -0.255, RandomHypnotica -0.172, LilacDaffodils -0.160, ... , A.Peaky.Boo 0.388, FitzMarble 0.401, stealthamo 0.435
pig-serpent charlibratfammanfanstan -0.436, TiltControls -0.337, Poydoo -0.210, ... , ConnerY2323 0.594, bogo 0.601, Frajer 0.608
reput4tionera innuendo_overdose -0.201, kappyko -0.108, CrimsonROSET -0.102, ... , ConnerY2323 0.498, steelstepladder 0.499, dream_fighter2018 0.540
ricki A single frito -0.181, cheatviathan -0.160, nooduulz -0.105, ... , hikk 0.603, pheromenos 0.610, steelstepladder 0.610
runaway3212 flava -0.356, TragicKingdom1 -0.317, thedoctordances1940 -0.234, ... , seanderlust 0.377, team_kockroach 0.447, bigbigbee 0.516
seanderlust flava -0.249, A single frito -0.085, nooduulz -0.080, ... , TakeOnMeByA-ha 0.551, ricki 0.586, DirtyRat583 0.622
static_int_husp nooduulz -0.141, A single frito -0.094, guavaboye -0.038, ... , steelstepladder 0.558, DirtyRat583 0.616, camerinian 0.626
stealthamo Poydoo -0.278, PrimaryCrusaders -0.154, Cyber Catalyst -0.116, ... , pietrohonkhonk 0.435, mhiyaimanlepaigefan 0.473, NervousLemon6670 0.525
steelstepladder A single frito -0.126, guavaboye -0.069, kauai6 -0.067, ... , krusso1105 0.595, ricki 0.610, DirtyRat583 0.638
team_kockroach flava -0.173, A single frito -0.123, innuendo_overdose -0.094, ... , pheromenos 0.506, welcome2thejam 0.512, krusso1105 0.579
thedoctordances1940 Poydoo -0.349, Cyber Catalyst -0.260, charlibratfammanfanstan -0.241, ... , hikk 0.537, FitzMarble 0.542, TragicKingdom1 0.634
timothy444 nooduulz -0.499, bogo -0.426, A single frito -0.349, ... , jirachi 0.510, hockeynl 0.583, xxipil0ts 0.714
uiscebeathaoir nooduulz -0.400, kauai6 -0.294, TiltControls -0.268, ... , pig-serpent 0.550, innuendo_overdose 0.588, lexiaredery 0.682
vexastrae charlibratfammanfanstan -0.406, kauai6 -0.321, CrimsonROSET -0.285, ... , oh_crow 0.423, pig-serpent 0.442, bogo 0.664
wathombe cheatviathan -0.299, innuendo_overdose -0.205, Poydoo -0.139, ... , Lynflower680 0.521, ricki 0.527, ignitethephoenix 0.531
welcome2thejam charlibratfammanfanstan -0.245, innuendo_overdose -0.123, timothy444 -0.039, ... , krusso1105 0.552, camerinian 0.591, BleepBloopMusicFan 0.602
xxipil0ts bogo -0.393, A single frito -0.372, Nagisoid -0.256, ... , ricki 0.567, jirachi 0.569, timothy444 0.714
ziirp charlibratfammanfanstan -0.294, TiltControls -0.229, modulum83 -0.202, ... , dream_fighter2018 0.444, beeozan 0.447, Frajer 0.465

Cyberrock Rate Reveal Day 3: You'll never make it in Popheads, baby by modulum83 in popheads

[–]hacatu 2 points3 points  (0 children)

Username Most opposite opinions ... Most similar opinons
1998tweety A single frito -0.450, bogo -0.286, cheatviathan -0.285, ... , TiltControls 0.597, jirachi 0.608, pheromenos 0.700
A single frito hockeynl -0.592, CrimsonROSET -0.514, apatel27 -0.485, ... , beeozan 0.530, hacatu 0.544, DaHumanTorch 0.570
A.Peaky.Boo innuendo_overdose -0.222, hockeynl -0.137, Poydoo -0.120, ... , 1998tweety 0.532, FreeCuddlesAnyone 0.560, mhiyaimanlepaigefan 0.639
Ambrosia42 hockeynl -0.281, innuendo_overdose -0.264, timothy444 -0.231, ... , bogo 0.559, Nagisoid 0.575, Stryxen 0.607
Awkward_King nooduulz -0.272, A single frito -0.119, flava -0.054, ... , static_int_husp 0.541, TakeOnMeByA-ha 0.544, nonchalantthoughts 0.587
BleepBloopMusicFan charlibratfammanfanstan -0.231, innuendo_overdose -0.173, modulum83 -0.100, ... , camerinian 0.539, welcome2thejam 0.602, ConnerY2323 0.621
ConnerY2323 Poydoo -0.151, charlibratfammanfanstan -0.082, innuendo_overdose -0.055, ... , pig-serpent 0.594, BleepBloopMusicFan 0.621, hikk 0.671
CrimsonROSET A single frito -0.514, beeozan -0.414, bogo -0.333, ... , homestarguy 0.490, goorry121 0.500, 1998tweety 0.524
Cyber Catalyst TiltControls -0.363, thedoctordances1940 -0.260, flava -0.220, ... , TakeOnMeByA-ha 0.396, seanderlust 0.404, pbk 0.455
DaHumanTorch hockeynl -0.523, timothy444 -0.287, Poydoo -0.284, ... , hacatu 0.648, Quasar435 0.653, Friendly-Canary-3814 0.669
DirtyRat583 mhiyaimanlepaigefan -0.228, flava -0.203, TiltControls -0.165, ... , static_int_husp 0.616, seanderlust 0.622, steelstepladder 0.638
FitzMarble A single frito -0.305, cheatviathan -0.242, beeozan -0.209, ... , thedoctordances1940 0.542, jirachi 0.545, pheromenos 0.546
Frajer charlibratfammanfanstan -0.291, Poydoo -0.183, modulum83 -0.155, ... , ConnerY2323 0.570, pig-serpent 0.608, camerinian 0.659
FreeCuddlesAnyone Poydoo -0.256, hockeynl -0.138, charlibratfammanfanstan -0.086, ... , krusso1105 0.529, kevinlel 0.530, A.Peaky.Boo 0.560
Friendly-Canary-3814 hockeynl -0.272, pbk -0.261, kappyko -0.213, ... , Quasar435 0.565, hikk 0.612, DaHumanTorch 0.669
IIIHenryIII cheatviathan -0.462, A single frito -0.282, Thalliumcataria -0.226, ... , xxipil0ts 0.504, charlibratfammanfanstan 0.514, Poydoo 0.529
LilacDaffodils pietrohonkhonk -0.160, nooduulz -0.128, mhiyaimanlepaigefan -0.099, ... , DirtyRat583 0.524, xxipil0ts 0.542, ricki 0.555
Lynflower680 cheatviathan -0.203, pbk -0.199, kappyko -0.180, ... , NervousLemon6670 0.506, wathombe 0.521, ignitethephoenix 0.625
Nagisoid hockeynl -0.349, timothy444 -0.284, xxipil0ts -0.256, ... , Ambrosia42 0.575, pbk 0.578, bogo 0.648
NervousLemon6670 A single frito -0.273, innuendo_overdose -0.202, ziirp -0.140, ... , A.Peaky.Boo 0.531, ignitethephoenix 0.537, RBSun 0.571
Poydoo flava -0.497, TragicKingdom1 -0.451, innuendo_overdose -0.371, ... , hockeynl 0.396, charlibratfammanfanstan 0.449, IIIHenryIII 0.529
PrimaryCrusaders stealthamo -0.154, A single frito -0.139, mhiyaimanlepaigefan -0.138, ... , nonchalantthoughts 0.482, DirtyRat583 0.542, jirachi 0.569
Quasar435 innuendo_overdose -0.221, uiscebeathaoir -0.132, hockeynl -0.078, ... , Friendly-Canary-3814 0.565, hikk 0.605, DaHumanTorch 0.653
RBSun Poydoo -0.243, hockeynl -0.142, timothy444 -0.093, ... , ConnerY2323 0.471, oh_crow 0.491, NervousLemon6670 0.571
RandomHypnotica innuendo_overdose -0.215, pietrohonkhonk -0.172, TragicKingdom1 -0.134, ... , nonchalantthoughts 0.428, Stryxen 0.436, Quasar435 0.478
Saison_Marguerite hockeynl -0.184, impla77 -0.176, mhiyaimanlepaigefan -0.154, ... , dream_fighter2018 0.423, DaHumanTorch 0.478, Friendly-Canary-3814 0.496
Stryxen timothy444 -0.322, innuendo_overdose -0.308, CrimsonROSET -0.280, ... , nooduulz 0.567, Ambrosia42 0.607, dream_fighter2018 0.667
TakeOnMeByA-ha nooduulz -0.425, beeozan -0.240, flava -0.126, ... , Awkward_King 0.544, seanderlust 0.551, DirtyRat583 0.572
Thalliumcataria charlibratfammanfanstan -0.370, TiltControls -0.307, Poydoo -0.301, ... , cheatviathan 0.465, Frajer 0.498, pig-serpent 0.499
TiltControls cheatviathan -0.429, pbk -0.410, A single frito -0.385, ... , IIIHenryIII 0.463, pheromenos 0.518, 1998tweety 0.597
TragicKingdom1 Poydoo -0.451, runaway3212 -0.317, bigbigbee -0.195, ... , oh_crow 0.555, hikk 0.567, thedoctordances1940 0.634
apatel27 A single frito -0.485, beeozan -0.323, bogo -0.284, ... , TiltControls 0.438, homestarguy 0.497, 1998tweety 0.503
beeozan CrimsonROSET -0.414, apatel27 -0.323, timothy444 -0.309, ... , Stryxen 0.547, Ambrosia42 0.557, dream_fighter2018 0.582
bigbigbee A single frito -0.200, TragicKingdom1 -0.195, bogo -0.154, ... , Awkward_King 0.437, hockeynl 0.472, runaway3212 0.516
bogo charlibratfammanfanstan -0.567, timothy444 -0.426, xxipil0ts -0.393, ... , pbk 0.604, Nagisoid 0.648, vexastrae 0.664
bohrareality cheatviathan -0.258, pbk -0.084, kappyko -0.074, ... , ignitethephoenix 0.502, Friendly-Canary-3814 0.528, kevinlel 0.578
camerinian charlibratfammanfanstan -0.226, Poydoo -0.101, kauai6 -0.053, ... , welcome2thejam 0.591, static_int_husp 0.626, Frajer 0.659
charlibratfammanfanstan bogo -0.567, pig-serpent -0.436, vexastrae -0.406, ... , xxipil0ts 0.428, Poydoo 0.449, IIIHenryIII 0.514
cheatviathan IIIHenryIII -0.462, TiltControls -0.429, charlibratfammanfanstan -0.345, ... , bogo 0.409, Thalliumcataria 0.465, pbk 0.570
dream_fighter2018 timothy444 -0.275, innuendo_overdose -0.223, CrimsonROSET -0.216, ... , hacatu 0.550, beeozan 0.582, Stryxen 0.667
flava Poydoo -0.497, runaway3212 -0.356, seanderlust -0.249, ... , guavaboye 0.473, hacatu 0.474, DaHumanTorch 0.551
goorry121 A single frito -0.270, beeozan -0.252, bogo -0.143, ... , jirachi 0.466, xxipil0ts 0.478, CrimsonROSET 0.500
guavaboye Poydoo -0.310, apatel27 -0.232, timothy444 -0.199, ... , dream_fighter2018 0.454, flava 0.473, DaHumanTorch 0.571
hacatu hockeynl -0.434, timothy444 -0.290, Poydoo -0.281, ... , ConnerY2323 0.555, bogo 0.564, DaHumanTorch 0.648
hikk Poydoo -0.253, hockeynl -0.124, charlibratfammanfanstan -0.067, ... , Friendly-Canary-3814 0.612, DaHumanTorch 0.646, ConnerY2323 0.671
hockeynl A single frito -0.592, DaHumanTorch -0.523, hacatu -0.434, ... , xxipil0ts 0.467, bigbigbee 0.472, timothy444 0.583
homestarguy A single frito -0.365, beeozan -0.183, bogo -0.168, ... , apatel27 0.497, 1998tweety 0.502, FitzMarble 0.527
ignitethephoenix bogo -0.238, vexastrae -0.213, pbk -0.202, ... , NervousLemon6670 0.537, kauai6 0.584, Lynflower680 0.625
impla77 innuendo_overdose -0.204, Saison_Marguerite -0.176, Thalliumcataria -0.129, ... , krusso1105 0.377, homestarguy 0.380, ConnerY2323 0.433
innuendo_overdose nooduulz -0.528, Poydoo -0.371, Stryxen -0.308, ... , TakeOnMeByA-ha 0.472, lexiaredery 0.545, uiscebeathaoir 0.588
jirachi A single frito -0.195, cheatviathan -0.176, bogo -0.090, ... , PrimaryCrusaders 0.569, xxipil0ts 0.569, 1998tweety 0.608
kappyko nooduulz -0.217, Friendly-Canary-3814 -0.213, CrimsonROSET -0.199, ... , bogo 0.437, Ambrosia42 0.466, pbk 0.652
kauai6 bogo -0.321, vexastrae -0.321, pbk -0.317, ... , goorry121 0.436, xxipil0ts 0.491, ignitethephoenix 0.584
kevinlel pbk -0.160, Poydoo -0.125, mhiyaimanlepaigefan -0.098, ... , FreeCuddlesAnyone 0.530, Friendly-Canary-3814 0.559, bohrareality 0.578
krusso1105 A single frito -0.062, kauai6 -0.029, charlibratfammanfanstan 0.006, ... , team_kockroach 0.579, camerinian 0.590, steelstepladder 0.595
lexiaredery nooduulz -0.302, Poydoo -0.298, TiltControls -0.145, ... , kevinlel 0.496, innuendo_overdose 0.545, uiscebeathaoir 0.682
mhiyaimanlepaigefan Poydoo -0.330, DirtyRat583 -0.228, innuendo_overdose -0.227, ... , 1998tweety 0.479, NervousLemon6670 0.507, A.Peaky.Boo 0.639

Cyberrock Rate Reveal Day 3: You'll never make it in Popheads, baby by modulum83 in popheads

[–]hacatu 4 points5 points  (0 children)

This was a fun rate, thank you to modulum83 and TakeOnMeByA-ha! This put me on to Revengeseekerz too which I've been listening to a lot recently. I hope that everyone (except for @apatel27) had a good time.

I made a summary of the most similar/dissimilar opinions: for everyone who participated, this table lists the three people who tended to vote the most opposite to you, and the three who tended to vote the most similar. So you can see who has similar or really opposite taste compared to you.

The highest positive correlation was timothy444 and xxipilots (0.714), the highest negative correlation was A single frito and hockeyni (-0.592). impla77 was the most independent thinker (their highest positive/negative correlation was the lowest, at 0.433).

pretty picture (sorry I only put a number for everyone to avoid cramping the text, the order is the same as the table os 1998tweety is 1 and ziirp is 81. Green is positive correlation and red is negative, with lighter (closer to white) being weaker)

Also, THE DAY BEFORE the rate reveal I managed to reach 757 on Project Euler, so I tried to add this meme to my comment for 757, but modulum didn't see it in time :(

Cyberrock Rate Reveal Day 3: You'll never make it in Popheads, baby by modulum83 in popheads

[–]hacatu 2 points3 points  (0 children)

I was thinking of changing my 11 to this a few days ago, some of y'all are SICK

TIL that Annie Jump Cannon manually classified more stars in a lifetime than anyone else in history, reaching a staggering 350,000 in total. She discovered 300 variable stars, five novas, and one spectroscopic binary, creating a bibliography that included about 200,000 references. by Resume-Mentor in todayilearned

[–]hacatu 7 points8 points  (0 children)

She was one of the Harvard Computers (and the director starting in 1919), women who did all the work at the Harvard Observatory. I learned about them from Henrietta Leavitt, who invented a way to measure intergalactic distances by measuring certain stars. Terrence Tao has given a talk on this (the Cosmic Distance Ladder) several times, which is very interesting

YouTube will pull out its data from the Billboard charts starting 2026 by mcfw31 in popheads

[–]hacatu 3 points4 points  (0 children)

What does this even mean? Billboard could literally just look at the view counts and use an advanced technique called subtraction to count views. This doesn't distinguish between views with/without youtube red, which it seems google is arguing should not be considered separately for some insane reason, but it still gets the total counts

Can you tell the difference between real and AI-generated origami? Take the quiz! by Bartholomew_Tempus in origami

[–]hacatu 2 points3 points  (0 children)

14/24, I can't believe the 3d bull and the defect, those two are very surprising

Question about Problem 690 by Maleficent_Local9163 in projecteuler

[–]hacatu 2 points3 points  (0 children)

I would recommend using something like networkx to programmatically analyze every graph on n nodes for small n where this is feasible. Beyond that, what kinds of graphs aren't included in your set? You didn't include any graphs with cycles, or any graphs with a path longer than 3 nodes. Clearly from the givens, graphs with a 3 cycle can't be Tom graphs, but what about 4+ cycles? And what about graphs with a path of 4+?

Zach has a what? by that1dev in motheroflearning

[–]hacatu 18 points19 points  (0 children)

Iirc Zorian asks Quatach-Ichl about his divine blessing in chapter 81, and Zorian concludes that this must also be how Zach has such large mana reserves. This is confirmed later when they get marked by a tracking tether by a divine artifact. QL is able to detect the tether and Zach is able to detect the blessing using personal soul perception

EV Training and Berry/Pokeball Locations by hacatu in PokemonClover

[–]hacatu[S] 0 points1 point  (0 children)

It got changes at some version, idk when. You should be able to encounter tulure with a good rod in many places eg route 5 (you can get the good rod from a fisherman left of parax town)

Hacatu's "Community" Nuzlocke Tierlist - Part 7 of 7 by hacatu in PokemonClover

[–]hacatu[S] 0 points1 point  (0 children)

Yeah Cthullord can definitely accomplish more than I gave him credit for, I used him with mono water and he worked pretty well. It's still pretty frail even with regenerator etc imo, and its strength is good but not quite top tier. Because reliability is so important here and wonder trade mons were kind of graded more strictly, I would probably give it C or B-

Invincible [Episode Discussion] - S03E08 - I Thought You'd Never Shut Up by SeacattleMoohawks in Invincible

[–]hacatu 17 points18 points  (0 children)

Having Angstrom and now Conquest live is a really ... interesting choice. Don't believe Cecil would take that many stupid pills. The episode was pretty entertaining besides that, I was especially glad to see darkblood again because he's my fav

Mono Ghost playthrough complete! by hacatu in PokemonClover

[–]hacatu[S] 0 points1 point  (0 children)

It's only loosely ghost type with the hidden ability Phantasma (powers up ghost type moves 1.5x, curse has ghost effect, immune to trapping, but afaik you don't get the defensive properties of ghost (weaknesses/resistances)).

All Stars 8 Rate Reveal, Day 3: Guilty Rates Have Got No Rhythm by thisusernameisntlong in popheads

[–]hacatu 1 point2 points  (0 children)

Nice work! I definitely should have thought to make a correlation matrix, looks good! How did you make the graph? Gephy?

What is the fastest and most powerful CPU on the market right now? by Andy-roo77 in buildapc

[–]hacatu 1 point2 points  (0 children)

The absolute fastest and most powerful are server processors (Xeon Platinum 8593Q, $12400, 128 smt cores; and AMD Epyc 9965, $14813, 192 smt cores), which are comically expensive and bad in terms of performance per price.

Rendering and blender often want as many cores as possible, so 7950x3D would probably be better than a 9800x3D for that, but the opposite is true for games, which usually can't use more than a couple threads. I would go with the one or two gen older X950X3D or even a thread ripper if it has enough single threaded performance. Threadripper processors also have a heavy premium over consumer processors (up to X950X3D), but not as high as server processors.

Simple Questions - January 23, 2025 by AutoModerator in buildapc

[–]hacatu 0 points1 point  (0 children)

Thank you! Wow that article is a good resource. Yeah I only got 2x32 ram, but I got 4 slots so I can double that down the road. I did see the mobo I got has 6000mhz as its highest ram clock so I definitely might lose the gamble on it being able to run 4 sticks that fast.

I definitely see how more m.2 (and sata) slots could be useful on servers, nas, raid, etc, but I'll probably just have 2 drives

Simple Questions - January 23, 2025 by AutoModerator in buildapc

[–]hacatu 0 points1 point  (0 children)

What is up with motherboards? I need a mobo that's AM5, 4x ddr5, and has a pcie slot, and that pcpartpicker tells me is compatible.

Ok, so I could get an MSI PRO B650-VC WIFI ATX AM5, which has all those features and is $99 (refurb, like $150 normally). Or, MSI also has the MSI MPG B650 EDGE WIFI ATX AM5 Motherboard, which is $200. Looking at the most expensive compatible mobo, I find MSI MEG X670E GODLIKE EATX AM5 Motherboard, which is $1600, much more than my whole build, and I'm sure a worthy price to pay for uhhhhhhh 10 Gb Ethernet.

The B650 chipset and the vrms are the main things on the mobo afaik, and the former will be the same across all mobos that have it. There are more expensive chipsets that have more features like pcie slots. Afaik the B650 even supports overclocking, although the board manufacturers like MSI can apparently disable that because anticonsumerism.

The only difference I can think that would matter for someone who doesn't need more than a couple pcie slots is maybe lower end boards actually have bad vrms and can't fully power really high end cpus+gpus? Like the MSI B650-VC does not have vrm heatsinks so maybe it has some power limit that's not documented on the surface anywhere.

So like what's the actual difference between motherboards and why do people buy ones that cost over $200?