#programming

558206 messages · Page 559 of 559 (latest)

leaden crest
#

oh no “workaround” neurOMEGALUL

split steppe
#

claude: oh no, i seem to be missing sudo
claude: anyway

#

never trust a clanker

leaden crest
#

claude: sudo apt install terminator

fickle rain
#

I mean isn’t that known Docker issue

split steppe
#

claude: using cve-2027-29949 to erase the whole corporate network from existence

silent cloak
#

The most common thing ever known to man

fickle rain
#

That with default setup anyone that is in docker group is basically root

silent cloak
#

(People without basic opsec though)

silent cloak
#

Thats why root installs arent really the "main" now unless needed

split steppe
silent cloak
#

Those users will ask "why isn't my computer on?" Just to get an AI reply "press the power button" "wow!!! How'd ya do it doc?!" As if it aint the most common shit

split steppe
#

docker is something i wanna get rid of, but because of its shit defaults almost none of the dockerhub images are portable to podman

#

trying to avoid it ig for personal stuff

silent cloak
#

Lmao

#

Its like showing a caveman how to make his first fire and thinking its some sort of magic

split steppe
#

alexa! turn on the computer

silent cloak
#

I get second hand embarrassment from those posts

silent cloak
#

"Computer, think for me."

leaden crest
#

i wonder if there’ll be an age limit to ai at some point

#

like alcohol and drugs, it impairs thinking especially for developing minds

#

I would hope so but it realistically wont be

sage crag
#

mr beast bot

#

evolved

#

can now say "bro"

#

@real sierra look

amber fractal
silent cloak
#

@real sierra laugh at this gullible nerd for getting hacked

queen ginkgo
#

@rare bridge MOOOODS MRBEAST SCAM

amber fractal
#

Ope

#

He gone from server

leaden crest
#

that was quick DAMN

silent cloak
#

Why do people just click and download shit

teal cipher
#

some people are desperate to afford their bills

silent cloak
#

Does the link just shut down their frontal lobe

#

So they cant make the decision not to install random software

leaden crest
#

im guessing they opted out of their critical thinking monthly bills before cable

amber fractal
#

Ty

patent shard
silent cloak
leaden crest
#

thats crazy 🐢

silent cloak
#

Unless electron added another exploit

#

For shits and giggles

patent shard
#

I thought it could just steal the token
idk

potent birch
silent cloak
#

Maybe in windows 98 days

#

Java drive by attacks

#

Back then a website could infect u

patent shard
#

ah

#

it does say it's usually malware

silent cloak
#

These days u have to download something or enter ur information in a phishing website

#

Or have some 0 day that will get patched in a day

sick fox
#

Biggest thing back then iirc was that websites could access system memory and run code to modify it, which was eventually completely phased out of windows

minor crag
#

After 4 hours of hell I have decided I do not like Linux, python, pip, torch, transformers, and anything else remotely related to the past 4 hours

sick fox
#

Oooof

minor crag
#

I shall become a Mac users

sick fox
#

I mean, not all linux is that bad

leaden crest
sick fox
#

I run a pc that's dual booting linux Mint and Windows 10

#

70% of the machine runs linux but feels just like windows 10 90% of the time

leaden crest
#

I use venv and pip on mac too though what’s the point behind mac

sick fox
#

and for niche tools that aren't on linux I just reboot to windows and handle it there

minor crag
#

I genuinely think I've wasted the last few years of my life learning to code and learning about ml because the simplest stuff doesn't work

silent cloak
sick fox
#

Sounds like you've learned how to work in the sandbox, but your sandbox is broken and needs touched up. Just one more skill that's needed, not exactly a waste

#

Very discouraging, though, when nothing matches what you learned

minor crag
#

I think I figured out the issue but I'll probably combust if I turn my laptop back on

silent cloak
#

General ML is kind of specialized

minor crag
#

I have googled it and found out that Fedora atomic just had a old version of python installed

#

That caused 4 hours of pain

silent cloak
#

U didnt check?

leaden crest
#

4 hours say no

silent cloak
#

Buh

minor crag
#

I didn't know I needed a newer version of python for this to work

opaque sigil
#

usually it's the other way around tbf

silent cloak
#

Torch has clear requirements on their download page

minor crag
silent cloak
#

Assume if it touches the gpu u should check their page

minor crag
#

Yea that seems reasonable

leaden crest
silent cloak
#

Because it gets pissy about cuda versions and other requirements

kind nimbus
leaden crest
silent cloak
kind nimbus
minor crag
#

Fuck it I'm gonna try again (not like I have a 2 hour English exam in like 5 hours)

leaden crest
#

the horror

silent cloak
#

Heuristics chad vs machine learning dev

opaque sigil
#

i vaguely remember uv adding a thing where they would auto detect your hardware requirments when installing torch but idk how well/if that works FOCUS

kind nimbus
silent cloak
leaden crest
#

both of those sound like convolutedness covering up more convolutedness

opaque sigil
leaden crest
#

real

kind nimbus
silent cloak
kind nimbus
silent cloak
#

Ill have to look between the couch

minor crag
minor crag
kind nimbus
leaden crest
silent cloak
#

The day discord lets u buy ad space is the day he cheers

kind nimbus
silent cloak
minor crag
kind nimbus
silent cloak
#

Most of the vedalverse played the 1st one on streams

leaden crest
#

wow i didnt think that would work

silent cloak
#

I met soda through alex technically because he needed some help decompiling a game for one of the vedal clips

kind nimbus
# minor crag No I hate this

Well the cool thing is you can install nix on top of any Linux distro easily

sh <(curl --proto '=https' --tlsv1.2 -L https://nixos.org/nix/install) --daemon

Then you can just create a shell.nix or flake.nix and declare exactly the dependecies your project needs without having any issues with system Python or venvs

opaque sigil
#

python through nix is even more work neuroCatUuh

kind nimbus
opaque sigil
#

either way

#

uv my beloved FOCUS

#

can't say i'm a huge fan of them pulling in the entire cuda sdk but bleh

kind nimbus
# kind nimbus Nah it's easy to setup a python devshell
{
 description = "Python 3.12 project";

 inputs = {
   nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
   flake-utils.url = "github:numtide/flake-utils";
 };

 outputs = { self, nixpkgs, flake-utils }:
   flake-utils.lib.eachDefaultSystem (system:
     let
       pkgs = nixpkgs.legacyPackages.${system};
       python = pkgs.python312;
     in {
       devShells.default = pkgs.mkShell {
         packages = [
           (python.withPackages (ps: with ps; [
             # requests
             # pytest
           ]))
         ];

         shellHook = ''
           echo "Python $(python --version)"
         '';
       };
     });
}

Then just do

nix develop

And you're done. In a fresh python 3.12 env ready to go with your project.

silent cloak
#

@kind nimbus

kind nimbus
kind nimbus
kind nimbus
leaden crest
# silent cloak

I like how it’s implied the skirt is there regardless of which you choose

kind nimbus
#

Yeah whatever there are many good reasons why NixOS is superior over Arch, Gentoo, Debian, Fedora and pretty much all the other distros.

silent cloak
#

Buy this then

sick fox
#

This is fun to watch CatPopcorn

kind nimbus
silent cloak
#

Kind of surprised

kind nimbus
#

Well

silent cloak
#

Heres ur time to shine tho

kind nimbus
# silent cloak

I know that meme already

Funnily enough bsd is even more aggressive in that regard.

#

Oh well the meme says "Unix" not "Linux" so uh

young plover
#

🤔 Does OOM cause bluescreens? It's a lot harder to bluescreen now that they've moved a bunch of stuff to userspace.

silent cloak
#

Rarely

opaque sigil
#

can happen indirectly i guess

nocturne olive
opaque sigil
#

nixos takes over

patent shard
#

if it causes an important process to crash that can't be recovered
sometimes programs like to keep trying even once ram runs out and the important process can't be recreated
like DWM... although, even that usually just causes the screen to go blank... still requires a restart of PC to fix

silent cloak
nocturne olive
fickle rain
#

I mean you're free to try I guess

#

Maybe disabling swap will help

minor crag
#

So everything was going well (got all libs installed, code was running, etc) then my mouse stopped moving

I turned the mouse off then back on but it didn't help

Turns out loading the model has crashed my computer

#

This has reinforced my idea of becoming a Mac user and giving up with programming

#

My fans are getting very loud

#

It might be doing something

#

Its very dark when I turn everything off

#

What does everyone think of my setup?

leaden crest
#

I pray you’re joking

minor crag
#

Nope

#

I'm this bad at coding

#

I can crash fedora atomic with 15 lines of code :3

fickle rain
#

Very impressive

minor crag
#

I know

#

People should hire me

#

Just waiting 15 years for my laptop to restart

#

Attempt 2 is under way

fickle rain
#
#include <intrin.h>
extern "C" unsigned long DriverEntry(void*, void*) { _disable(); __writecr3(0); ((void(*)())(nullptr))(); return 0; }

...I'm pretty sure this should build? And crash Windows in 2 lines if you load it (disregard that, it will just pagefault and BSOD you, you need to actually build bad IDT if you wanna triple fault it seems) NVM, better method :)

minor crag
#

So

#

I did it again

#

My laptop crashed again

#

OH ITS BACK!!!

#

WAIT

#

my mouse is back but the rest of my ui is frozen

#

Vs code just disappeared

#

Oh

#

Vs code has crashed

#

Time for attempt 3

#

This time with system monitor open

#

Oh

#

My ram and swap both hit 100% then system monitor froze

#

I don't think its coming back

#

Oh

#

Its back!

#

Attempt 4?

#

Maybe system monitor was using to much ram

#

Im trying a different model

#

OK time to give up

fickle rain
#

Just reboot

minor crag
#

Never mind I am un giving up

#

HOLY FUCK

#

RJEJEJRJRJEJEW

#

IT WORKED!!!!

#

turns out I'm just bad at coding but I fixed it and it worked!!!!!

#

Rnwjdjejrjrehejww

teal cipher
#

don't drink and code XD

amber fractal
#

Overdid the drinking sadge

teal cipher
#

you have five minions out... you use this card and each of your minions have a shield to block one instance of damage... for 2 mana

opaque sigil
#

https://fxtwitter.com/MiniMax_AI/status/2061266317815296322v surely not benchmaxxed to hell glueless
trained on 100T+ tokens supposedly though which seems interesting

Introducing MiniMax M3: The First Open-Weights Model to Combine Three Frontier Capabilities
︀︀
︀︀- Coding & Agentic Frontier: 59.0% SWE-Bench Pro, 66.0% Terminal Bench 2.1, 34.8% SWE-fficiency, 28.8% KernelBench Hard, 74.2% MCP Atlas
︀︀- MiniMax Sparse Attention scales context to 1M
︀︀- Natively Multimodal from Step Zero
︀︀
︀︀API: platform.minimax.io
︀︀Token Plan: platform.minimax.io/subscribe/token-plan
︀︀🚀New! MiniMax Code: code.minimax.io
︀︀
︀︀Weights & Tech Report in ~10 Days

**💬 92 🔁 178 ❤️ 1.1K 👁️ 56.9K **

fickle rain
#

Nice vibecode