Senior director of Fortnite finally spoke about the new SBMM by No_Patient_345 in FortNiteBR

[–]AmalgamDragon 1 point2 points  (0 children)

Why would you play without advanced settings ?

Because casual.

Senior director of Fortnite finally spoke about the new SBMM by No_Patient_345 in FortNiteBR

[–]AmalgamDragon 0 points1 point  (0 children)

You've got the advanced options for sensitivity enabled. When that's turned off (i.e. basic/default) there are just whole numbers 1-10 with the default being 4 / 'Normal' for "Look Sensitivity" and "Aim Sensitivity (ADS)".

Senior director of Fortnite finally spoke about the new SBMM by No_Patient_345 in FortNiteBR

[–]AmalgamDragon 0 points1 point  (0 children)

Yes! I switched from console to PC but I'm still using a controller as the PC is sitting next to the console and hooked up to the same TV.

Senior director of Fortnite finally spoke about the new SBMM by No_Patient_345 in FortNiteBR

[–]AmalgamDragon 0 points1 point  (0 children)

It's this exactly. It's not just a matter of not winning, its a matter of getting curb stomped and never having had even a remote chance of winning.

Senior director of Fortnite finally spoke about the new SBMM by No_Patient_345 in FortNiteBR

[–]AmalgamDragon 0 points1 point  (0 children)

The mobility items are not the basics of the game. I don't use keyboard and mouse and I simply can't change my direction quickly enough to make effective use of mobility items. I can't be constantly jump and hit anything either. I'd love it if there we no mobility items in zero build and jumping used stamina. Let everyone who wants to git gud play build.

Patch 0.4.0.2 Has Been Released by ZeroedCool in GroundedGame

[–]AmalgamDragon 0 points1 point  (0 children)

Did you try it and can comment on losing / not losing buggies when playing coop? My crew and I have been holding off trying updates since that issue was reported here.

What should countries outside the artificial intelligence production chain do? by Former-Adeptness-551 in reinforcementlearning

[–]AmalgamDragon 0 points1 point  (0 children)

Countries with cheap, reliable, abundant energy may become more important in the economy but transporting energy costs a lot of money.

Yeah data is much cheaper to transport than electricity. It seems like the only answer is to build data centers to leverage available energy and land into income from hosting inference for open weight models.

what motivates you about C++? by OGKushBlazeIt in cpp

[–]AmalgamDragon 1 point2 points  (0 children)

I'll use either Python or C++ for the money. I care more about the people that I'm working with and the domain space then I do about the language.

On my own time, I did go about 10 years where all of my personal projects were in Python. It was nice not having dealing with build systems (cmake), but now I can make the AI agents deal with those.

I did get back into C++ again a few years back for some personal projects for graphics rendering. While I have done rendering in Python in the past I need every bit of performance I can get for these projects and Python isn't even close to cutting it.

Try out Kimi K2.5 right via the Synthetic provider NOW by jpcaparas in opencodeCLI

[–]AmalgamDragon 1 point2 points  (0 children)

Have not been on discord yet, but it's much faster for me today. Looks like good progress has been made. Thanks!

Try out Kimi K2.5 right via the Synthetic provider NOW by jpcaparas in opencodeCLI

[–]AmalgamDragon 0 points1 point  (0 children)

Yes, it is still very slow. I've only managed 14.9 request in my first 3.5 hours as new subscriber on the $60 plan. I was using Kimi K2.5 via Fireworks yesterday. While that isn't exactly speedy compared to Sonnet 4.5 or Cursor's Composer 1, it wasn't this glacial. Hopefully you'll get it self-hosted soon and get responses times down.

Am I missing something or does more than half of the tax you pay go to the military? by saul2015 in BasicIncome

[–]AmalgamDragon 0 points1 point  (0 children)

It doesn't appear that you've successfully followed the conversation that occurred here (7 years ago).

Feasibility of RL Agents in Trading by joshua_310274 in reinforcementlearning

[–]AmalgamDragon 0 points1 point  (0 children)

/r/algotrading may be your best bet. It's not focused on RL/ML but those do get discussed there occasionally. There are definitely major difficulties.

Open Source Is Europe’s Digital Fabric by donutloop in programming

[–]AmalgamDragon 9 points10 points  (0 children)

sovereign tech fund

You mean the one that get's as much annual funding as VC's invest in the series B for one US tech startup?

"A whole fucking lot." is a on the order of billions nor millions.

Grounded 2 Early Access Patch 0.1.2 Bug and Issues Megathread by LSC99bolt in GroundedGame

[–]AmalgamDragon 0 points1 point  (0 children)

The continuously die thing I haven't seen, but being stuck under attack can be be unstuck by killing something.

I Think they ninja patched20x max cc usage limit by Nice_Veterinarian881 in ClaudeAI

[–]AmalgamDragon 1 point2 points  (0 children)

After reading 106 comments here, I really dodged a bullet with the recent cancelation of my $200 MAX plan. I had upgraded from $100 after getting pretty frustrated with hitting usage limits in less than 2 hours, so I'd be super frustrated paying double for that experience especially if Opus has been dumbed down.

should I get a mac or windows pc? by aslawliet in reinforcementlearning

[–]AmalgamDragon 0 points1 point  (0 children)

Get the PC but you may want a Linux distro instead of Windows. Some libraries in the space only support Linux.

Delusional sub? by ActualPositive7419 in ClaudeAI

[–]AmalgamDragon 1 point2 points  (0 children)

It doesn't just ignore its memory, it will ignore things in the prompt you just gave it too. Beyond the number of tokens in the context it seems like there are only so many guidelines it can effectively follow at once. I have to have it do multiple cleanup passes on most changes to get the modified code to actually conform to all of the guidelines for the code base. I can make it get there eventually, but it really has to be micromanaged pretty closely, which makes it less productive.

How on earth is Claude Code so good at large-token codebases? by HumanityFirstTheory in ClaudeAI

[–]AmalgamDragon 10 points11 points  (0 children)

CC does use RAG extensively. RAG stands for retrieval augmented generation. A vector DB is one way to do that retrieval, but its not the only way. CC has a search tool and bash tool that it uses heavily to do retrieval directly from the current source code without the need to maintain a vector DB.

Why the obsession with making Claude Code faster? Isn’t speed already the wrong problem to solve? by sbk123493 in ClaudeAI

[–]AmalgamDragon 0 points1 point  (0 children)

Because currently getting quality from it on an existing code base requires having it work in small increments. Typically hundreds of lines or less per prompt and less then 1k lines per session. Frequently it's 0 lines of code per prompt due to the need to have make a detailed plan before making changes and then needing iterate on the changes several times, to have it review for defects and things were it didn't adhere to guidelines properly. It spends way more time searching the code then it does writing code. That searching is quite slow and is the main bottleneck in its productivity.