#programming

1 messages · Page 454 of 1

olive sable
mighty thorn
olive sable
#

i think im not reaching 200W with my 5950x cuz of thermal headroom

#

it gets to 85C and the thermal throttle limit is 90

#

i shoudl set the fan curve more aggresive probably

#

and i might also just have worse silicon lottery

fast pagoda
#

so i imagine 5950x is even worse

#

although i did have the dying aio for a long time

olive sable
#

i dont have that many issues with temps

fast pagoda
#

it's not like it throttled per say it just lived at 90c

olive sable
#

only when im using all cores does it reach 85C

#

im ussing a noctua nh-d15

#

i think PBO increases voltage a bunch, which might just make temps worse. so i should probably change that a bit

#

or get an AIO

fast pagoda
#

it doesnt raise it that much

#

it does raise it sometimes

#

but what it does do is target a temp

opaque sigil
#

i doubt you'd gain much from replacing a nh-d15 with an aio

fast pagoda
#

so it pushes it as much as possible within the temp you set

olive sable
#

i chose the highest one. "enhanced 4" so i imagine that one has the highest voltage too

jagged turtle
#

how to fix jsdoc?

fast pagoda
#

it still wont really push voltage that high at full load

#

should still be keeping it around 1.2, maybe a sparse load without all cores might see a core or 2 hit 1.5

minor sail
fast pagoda
jagged turtle
fast pagoda
#

are you inlining a lot

opaque sigil
#

you want @link for linking to a symbol

cunning rock
jagged turtle
fast pagoda
#

post terraria serotonin depletion

opaque sigil
olive sable
#

welp. ill try cpu stuff later, imma play some satisfactory for the first time in months

fast pagoda
#

vscode being janky shitting out an undefined

opaque sigil
#

what is RCEAction.validators.async even, might not be a type

fast pagoda
#

yeah that one didnt render right

#

async is reserved

#

perhaps

opaque sigil
#

wait you're right

#

it can't possibly be a type since async is a reserved keyword FOCUS

fast pagoda
#

also it's not doing the list

#

cuz

#

you need a blank line after the first bullet point

jagged turtle
# opaque sigil what is `RCEAction.validators.async` even, might not be a type
import type { Action } from 'neuro-game-sdk'

export interface RCEAction<T, E> extends Action {
    // other stuff
    validators?: {
        /** 
         * Synchronous validators that will block execution of the rest of the thread.
         * As this delays the action result to Neuro, any promises must resolve quickly so as to be effectively synchronous speed-wise. 
         * 
         * Tip: If you supply validators that ensure certain items are not nullable, you may be able to assert that they are a non-nullable value for:
         * - {@link RCEAction.validators.async asynchronous validators},
         * - {@link RCEAction.promptGenerator generating the Copilot-mode prompt},
         * - {@link RCEAction.preview preview effects}, and/or
         * - {@link RCEAction.handler handling the action}.
         */
        sync?: ((context: RCEContext<T, E>) => ActionValidationResult | Promise<ActionValidationResult>)[],
        /**
         * Asynchronous validators that will be ran in parallel to each other.
         * These will be executed after an action result, so it's perfect for long-running validators.
         * 
         * Async validators will time out (and consequently fail) after 1 second (1000ms). It is planned that this value will be adjustable in the future.
         */
        async?: ((context: RCEContext<T, E>) => Promise<ActionValidationResult>)[];
    }
}
fast pagoda
#

in the tooltip you need to have an empty *

jagged turtle
opaque sigil
#

does

type AsyncValidators = RCEAction["validators"]["async"];

and then linking to that work FOCUS

#

tbh

#

i've given up on jsdoc for the most part, too much work for such a half-broken system

fast pagoda
#

yea it breaks like

opaque sigil
#

you have an lsp go use it

fast pagoda
#

i mean

#

it's nice

#

when work

jagged turtle
#

lmao nope

jagged turtle
#

this is already using typescript so type annotations are there

jagged turtle
#

linking to RCEActions.validators works but go even just one level deeper and oh no! it can't work!

fast pagoda
#

it always fking breaks the deeper you try to resolve

#

replace language server with a full fat instance of claude opus to burn record amounts of compute and money

jagged turtle
#

how about just make the jsdoc spec better

fast pagoda
#

cant do that

jagged turtle
#

(get claude to do that as well)

fast pagoda
#

jarvis

#

im begging you

#

do not mess this up

opaque sigil
#
interface RCEValidators<T, E> {
    /**
     * Synchronous validators that will block execution of the rest of the thread.
     * As this delays the action result to Neuro, any promises must resolve quickly so as to be effectively synchronous speed-wise.
     *
     * Tip: If you supply validators that ensure certain items are not nullable, you may be able to assert that they are a non-nullable value for:
     * - {@link RCEValidators.async asynchronous validators},
     * - {@link RCEAction.promptGenerator generating the Copilot-mode prompt},
     * - {@link RCEAction.preview preview effects}, and/or
     * - {@link RCEAction.handler handling the action}.
     */
    sync?: ((
        context: RCEContext<T, E>,
    ) => ActionValidationResult | Promise<ActionValidationResult>)[];

    /**
     * Asynchronous validators that will be ran in parallel to each other.
     * These will be executed after an action result, so it's perfect for long-running validators.
     *
     * Async validators will time out (and consequently fail) after 1 second (1000ms). It is planned that this value will be adjustable in the future.
     */
    async?: ((context: RCEContext<T, E>) => Promise<ActionValidationResult>)[];
}

export interface RCEAction<T, E> extends Action {
    validators?: RCEValidators<T, E>;
    promptGenerator?: (context: RCEContext<T, E>) => string;
    preview?: (context: RCEContext<T, E>) => any;
    handler: (context: RCEContext<T, E>) => void | Promise<void>;
}

something like this is probably your best bet i guess (ignore the hallucinated types)

minor sail
#

maybe try linking using @link RCEAction#validators#async ?

#

dunno if using a hash makes it any better

jagged turtle
#

hashes definitely don't work if array syntax don't work

jagged turtle
opaque sigil
#

too much effort FOCUS

fast pagoda
#

what if you just un-nest it removing the link completely

opaque sigil
#

moving them into their own type to remove one level of nesting fixes it yeah

fast pagoda
#
/**
 * ...
 * Tip: If you supply validators that ensure certain items are not nullable, you may be able to assert that they are a non-nullable value for:
 * - `RCEAction.validators.async` asynchronous validators,
 * - `RCEAction.promptGenerator` generating the Copilot-mode prompt,
 * - `RCEAction.preview` preview effects, and/or
 * - `RCEAction.handler` handling the action.
 */
jagged turtle
opaque sigil
#

that kind of defeats the whole purpose

fast pagoda
#

yeah but it at least doesnt explod

opaque sigil
#

white underscore neuroPogHD

fast pagoda
#

we do a little trolling

opaque sigil
#

i wish zed supported clicking on breadcrumbs to quickly open nearby files neuroSadge

fast pagoda
#

hot preloaded files near you

olive sable
jagged turtle
fast pagoda
#

i have to restart every time

#

i should play 1.2

olive sable
#

i have cloud storage apparrently

#

thats crazy

fast pagoda
#

dimensional depot?

opaque sigil
#

speaking of cloud storage, the $20 google ai plan comes with 5TB now apparently FOCUS

fast pagoda
#

my beloved

fast pagoda
olive sable
#

last save was from april 14 2025 AINTNOWAY

#

i havent played for a year

#

was probably still on windows then

fast pagoda
#

it's been like 2 for me

#

i actually havent played since before 1.0

#

i tried to start in 1.0 and got decision paralysis

jagged turtle
fast pagoda
#

he said hallucinated so llm moment perhaps

opaque sigil
#

idk i just let copilot fill in the blanks

#

tab go brr

fast pagoda
#

copilot done ATE the game sdk already so

olive sable
fast pagoda
#

it's such a commitment to play lmao

amber fractal
#

Hello chat (I really should rename this to #baking)

jagged turtle
olive sable
#

so i got 20 double containers full of iron ingots

opaque sigil
jagged turtle
fast pagoda
#

context7 mcp + this is chefkiss

opaque sigil
#

yea

olive sable
#

ive been running around for half an hour trying to find where i make aluminium

#

some of these 3D models look sick as fuck tho

#

alien power augmentator is peak design

fast pagoda
#

cant remember how far in this was but i do remember getting hardstuck on phase4 because i kept expanding turbofuel and making hyperloop cannons

olive sable
#

WHAT

#

my actory is not nearly as far

#

i got liek 120 hours of playtime

fast pagoda
#

i think this was at least 300

olive sable
#

you have actual buidligns and shit

fast pagoda
#

yea i went with amazon colours cuz i was rping an amazon colony for some reason

#

bezos plz sponsor

kind nimbus
fast pagoda
#

after a certain point putting stuff together in satisfactory becomes a sort of demented version of block programming

olive sable
fast pagoda
#

i was at i think about 100 MW of power consumption

#

wait is that right

#

one second

#

100,000 MW

olive sable
#

im at 200MW consumption, with 3700 max consumption

fast pagoda
#

yea i found a screenshot of my power from like right when i started turbofuel land and it was at this

olive sable
#

oh

#

i unlocked mk5 conveyor belts

#

which means my excractor is not fully saturated

#

so i have to redesign it eventually

fast pagoda
#

hell on MASSAGE-2(A-B)b

#

i think i got brain damage at some point from this because i went from 100k MW pre-nuclear in satisfactory, psychosis, started absolutely GRINDIGN microsoft solitaire klondike for some reason, and then neurosama from there

olive sable
#

still havent found my aluminium stuff

#

im starting to think it doesn't exist and i dreamt it

#

oh its made from bauxite for some reason

#

ok i found it okp

fast pagoda
#

brain damage took me out by the time i was at control rods

and now im scared to start again because i have all this shit to live up to

#

so instead i will start 100000 shitty projects that do nothing

olive sable
fast pagoda
#

maybe sam altman was a factory enjoyer and that's how wee got here

amber fractal
#

I am happy to say, we have teleportation, the programming text is now red when autismu is selected.

fast pagoda
#

i like how that sort of thing is a big nono on the client but in browser it's like

#

oh whale

amber fractal
#

for context for why this is important, these do not live in the same tree anywhere

fast pagoda
#

quantum DOM entanglement

amber fractal
#

the top text has no way of knowing what channel is currently selected; there is exactly one thing

#

out of all of the client that has a change

#

that is the highlight

#

it happens to go though an a tag which contains the channel

#

which can be matched

kind nimbus
#

I just got CoD4 Remastered working on Linux

Somehow it only worked with Proton version 9.0-4 and not the newer ones mhh

fast pagoda
#

tried to navigate to amazon and ended up with this and confused why it wasnt going to amazon

amber fractal
kind nimbus
fast pagoda
#

nice

amber fractal
fast pagoda
#

good work glorious eggroll

kind nimbus
# fast pagoda nice

yea somehow 9.0-4 worked and i did not even have to wait hours for shader compiling

#

Game runs at 400 fps on max settings lol

amber fractal
#

all I need to do is hopefully get the overrides to disable themselves when inactive, and fix up some of the text, then I should be good.

#

then that css for renaming channels will be done

fast pagoda
#

The build saver have arrive

#

These mighty cpus are the same model that was in this box previously and hopefully should let me run bios update

#

An absolutely back breaking $17 shipped for both of them kekw

amber fractal
#

For now this is wrong placement, because for some reason the other one refuses to be compressed in the same way; but first is disabling custom behavior on non custom channels

#

also known as

olive sable
fast pagoda
#

It's satisfying but not satisfactory

amber fractal
#

I am going to kill the css if documentation

#

it was just staight up wrong

#

in the syntax needed

amber fractal
#

After what feels like at least 10 attempts that all should have worked but didn't, one now properly works

#

now just need to fix the offset

#

I also really need a better method of setting this up

#

I dislike how I have to copy so many lines to do small edits and 2 sources of truth on properties

#
/* channel rewriter */

@property --custom-channel-name {
  syntax: "bool";
  inherits: true;
  initial-value: false;
}

@property --custom-channel-name {
  syntax: "*";
  inherits: true;
  initial-value: inherit;
}

@property --custom-channel-desc {
  syntax: "*";
  inherits: true;
  initial-value: initial;
}

/* programming */
div.content__5e434:has(li.containerDefault_c69b6d.selected_c69b6d a[href="/channels/574720535888396288/1071784467036913664"] div.name__2ea32.overflow_b0dfc2) {
  --custom-channel: true;
  --custom-channel-name: "baking";
  --custom-channel-desc: "konii say konii do";
}

/* Remove, then Replace */
/* Sidebar */

a[href="/channels/574720535888396288/1071784467036913664"] div.name__2ea32.overflow_b0dfc2 {
  text-indent: -9999px;
  line-height: 0;
  visibility: hidden;
}

a[href="/channels/574720535888396288/1071784467036913664"] div.name__2ea32.overflow_b0dfc2::after {
  visibility: visible;
  display: block;
  line-height: initial;
  text-indent: 0;
  content: "baking";
}

/* Top bar */

@container style(--custom-channel: true) {
  section.title_f75fb0 h1 {
    text-indent: -9999px;
    line-height: 0;
    visibility: hidden;
  }

  /* borked, does not compress */
  section.title_f75fb0 div.topic__6ec1a span {
    text-indent: -9999px;
    line-height: 0;
    visibility: hidden;
  }
}

section.title_f75fb0 h1::after {
  visibility: visible;
  display: block;
  line-height: initial;
  text-indent: 0;
  content: var(--custom-channel-name);
}

section.title_f75fb0 div.topic__6ec1a span::after {
  visibility: visible;
  display: block;
  line-height: initial;
  text-indent: 0;
  content: var(--custom-channel-desc);
}

This is what I got at the moment, not entirely bug free still sadge

#

@ivory plinth

ivory plinth
glad path
#

im confused as to how this even happened

olive sable
#

seems to be z-fighting

glad path
#

its not

olive sable
#

oh

#

is that supposed to be an item?

glad path
#

its supposed to be this...

olive sable
amber fractal
#

that does look like a 3d view alright

olive sable
#

somethign went horendously wrong when trying to render that

#

vertex buffer issue

glad path
olive sable
#

memory issue i guess

amber fractal
#

issue has happened

olive sable
#

this is kerbal space program right?

amber fractal
#

that was what I first thought

olive sable
#

are you using the experimental vulkan back-end?

amber fractal
#

I'll come back to the css when I get any ideas

#

for my personal config I need to set a certian bot-playground to a more apporiate name

fast pagoda
#

Most dogshit apparatus

#

Do not recommend

glad path
olive sable
#

proton?

glad path
#

wine

olive sable
glad path
#

my wine install works quite well usuallytho

olive sable
#

the problem is the vertex buffer is corrupt

glad path
#

its just that one part lol

fast pagoda
#

if it's thru steam wouldn't it still go ahead and use proton

glad path
#

funny tho

#

im not on linux

olive sable
#

so windows?

glad path
#

no

#

mac

fast pagoda
#

BSD confirmed

glad path
#

yall out here forgetting about macos

fast pagoda
#

no i choose to ignore it

olive sable
#

vulkan woudlnt work anyways then. so its prob dx11 with translation layer

glad path
#

yes

#

i have 2 translation layers iirc

fast pagoda
#

moltenVK goes to metal

glad path
#

metal -> molten-vk -> dxvk i think?

fast pagoda
#

but why

olive sable
#

waht

glad path
#

idk

fast pagoda
#

dont they do the same thing

#

oh no

olive sable
#

so you're first doing direct x to vulkan, and then vulkan to metal?

fast pagoda
#

dxvk -> vulkan

#

then vulkan-> metal with moltanvk

#

lmao

glad path
#

metal to vulkan to direct x

fast pagoda
#

that's awful

glad path
#

blame apple

fast pagoda
#

im amazed it works at all

glad path
#

they're the ones who decided it would be a great idea to deprecate vulkan and opengl

fast pagoda
#

normal apple decision ngl

glad path
#

the only supported graphics platform is metal

olive sable
fast pagoda
#

it is how it works actually

#

dx to vulkan with dxvk then moltenvk vulkan to metal

olive sable
#

its converting the api calls

#

so ye

glad path
#

im surprised it works as well as it does too

#

like genuinely I haven't had a single game fail

olive sable
glad path
#

on my school laptop my wine setup is worse so I can't play some games

fast pagoda
#

the order is DirectX -> (DXVK) -> Vulkan -> (MoltenVK) -> Metal

olive sable
#

ye

#

thats what i said lol

fast pagoda
#

i guess you were saying that it's not the opposite way round but it's kinda just flipped

#

i see what you're saying tho

#

i thought you were asserting that vulkan gets skipped entirely

glad path
#

I can run KSP without wine somehow

#

despite it being literally like 11 years old

fast pagoda
#

that should make it easier torun in my mind

glad path
#

it actually has full mac support

#

no issues

amber fractal
glad path
#

the reason i was using wine is because parallax continued doesn't work on mac

#

since it uses modern opengl features

olive sable
#

i feel like a game being older makes it easier to run. it wont be using fancy new api features

fast pagoda
#

^ agree

fast pagoda
#

unless it gets TOO old i g

glad path
#

one of the mods i like doesn't have mac support

#

i looked at the forums

fast pagoda
#

query

#

why not just like

#

dual boot windblows

glad path
#

sillicon

#

can't

fast pagoda
#

oh no

opaque wharf
fast pagoda
glad path
#

proprietary hardware

fast pagoda
#

star trek: armada (2001) runs way easier on arch than it does on windows rn

glad path
#

proprietary hardware and proprietary graphics system

fast pagoda
#

it's apple

glad path
#

and proprietary os

fast pagoda
#

so yea

glad path
#

I do like macos a lot

fast pagoda
#

you WILL eat the crapple that tim apple feeds you

#

that'll be $2999

glad path
#

it's quite annoying that they dont allow anything other than metal

fast pagoda
#

minimum effort maximum money to save

olive sable
#

proprietary hardware sucks for new or expensive stuff.
but most of the time when its pretty old or if you can get it for cheap its pretty cool

glad path
fast pagoda
#

and there are definitely people out there who would argue up and down how it's a good thing actually

opaque wharf
fast pagoda
#

apple ram pricing has become merely ok now

glad path
#

like

fast pagoda
#

instead of egregiously money grabbing

glad path
#

its not a bad choice

opaque wharf
fast pagoda
#

you still end up with soldered ram

glad path
#

you can probably game on it, just dont expect top notch performance

fast pagoda
#

that goes without saying since mac

#

i mean

#

not that they arent fast in many respects

opaque wharf
fast pagoda
#

but i couldnt think of worse system to buy if you planned on playing any games or doing anything outside of apple ecosystem

glad path
#

the irony is that I usually get pretty good performance

fast pagoda
#

that part isnt too surprising after having been on linux for a while now

glad path
#

slightly worse on things that arent running natively

fast pagoda
#

windows games run about equally or faster on this system

#

which is SUPER funny

glad path
#

I have an m3 pro so asahi linux support hasn't quite reached me yet

fast pagoda
#

i saw that it looked semi promising soon(tm)

#

i was looking at how the compatibility was the other day when the neo came out

glad path
fast pagoda
#

they only had up to like

#

m2 with an actual installer

glad path
#

"In fact, the current state of M3 support is about where M1 support was when we released the first Arch Linux ARM based beta; keyboard, touchpad, WiFi, NVMe and USB3 are all working, albeit with some local patches to m1n1 and the Asahi kernel (yet to make their way into a pull request) required. So that must mean we will have a release ready soon, right?"
soon™

fast pagoda
#

the fact that apple even slightly helping asahi with the smallest of crumbs is headline news is sad

glad path
#

I don't have any particular excitement to upgrade to a newer OS

glad path
#

so i have until september before I will probably update a version up

#

then when they EOL sequoia a year after that asahi linux support will hopefully have reached the m3 pro

#

is any of the asahi stuff upstream in the proper linux kernel repo

amber fractal
#

They are trying, but it takes time

fast pagoda
#

pog it's working

#

mfw now i installed these and i must re-uninstall them and reinstall the other cpus skull

#

needed these literally to boot the system so it could update bios

amber fractal
glad path
#

what r u doing

olive sable
amber fractal
fast pagoda
#

and the board was using a mobo revision from before they were a thing

#

and so this would just bootloop

#

i could connect to the bmc management console

glad path
#

.-.

fast pagoda
#

these boards are meant to be remotely managed since they often run headless at least some of the time or just need ez management

#

so you can just connect to them on the network

#

i could get here but it didnt recognize its cpus and was loopinfg

#

tried to update bios thru this but it was too new of a bios for the updater there

#

and i needed cpus it recognized to work at all anyways

#

still waiting for many ram to appear in mail

amber fractal
#

when Optane

fast pagoda
#

in da mail

amber fractal
#

one day it'll arrive

fast pagoda
#

so right now the gpu and hdds are in this other rats nest

olive sable
#

so does PHOCKA work?

fast pagoda
#

havent gotten to that one yet

amber fractal
#

whenever one can find a kernel that it works with

fast pagoda
#

need more ram and anotehr psu to smash to pieces

#

and i mean this looks factory installed really

amber fractal
#

there is also gpu FOCUS

fast pagoda
#

i just want to see 704gb ram

#

12x16gb and 4x128

#

got plenty of slots to fill still

#

lot of 1

#

Bruhb

#

LUL

olive sable
fast pagoda
#

i think it was the right image

olive sable
#

THIS IS NEXT LEVEL

fast pagoda
#

truly it was

olive sable
glad path
fast pagoda
#

「E N E M Y C O M B A T A N T」

glad path
sonic scroll
#

Question to people that can code and speakmore then English:
How does coding in other languages work (Like Spanish).

olive sable
#

i just code in english

opaque wharf
#

Because I know even programmer here is not all fluent in english so I sometimes still code in Indonesia

kind nimbus
#

Spinach perhaps but most likely not Spanish

fast pagoda
amber fractal
#

I'd say this is more true the lower level you go as your fighting abstractions over actual definitions

#

I have no say on the matter though

fast pagoda
#

me either truly, that mainly comes from seeing chinese training stuff etc

frail wigeon
#

Currently rewriting the tangled mess of my bot's core logic. life

I don't even know what to say, just that it sucks and I regret wanting to do this. I don't know why I bundled so many systems together when the rest of my codebase is hyper-modular.

prime delta
#

Chat i didn't even download NODEJS last night

#

I went straight to bed

#

Maybe I'll do it tmr or something ahhaa...

#

But I have roomates now no way they won't see what I'm doing...

#

If they see the website I'm trying to backdoor.....

willow path
sage crag
#

wake up wake up

amber fractal
#

Good question

#

But the question I want to know, what is your magic considering magical girl and all? Maybe eepy

olive sable
#

cuz i didnt sleep

olive sable
#

that's konii's mom

amber fractal
#

I can see it

olive sable
olive sable
#

no more red bwaa

#

debunked

amber fractal
#

It depends on the lighting enub

olive sable
#

that is how lighting works

prime delta
#

Uhjmmm

prime delta
#

Does anybody use anything on iphone to inspect like you're on pc

olive sable
#

wdym "inspect"?

#

like task manager?

prime delta
#

The inspect thingymajig

#

You put on inspect and you change your robux to 1 million

amber fractal
prime delta
olive sable
#

oh

prime delta
#

Or put on inspect and get restricted videos

olive sable
#

you mean like inspect on a website

prime delta
#

Yea yea

olive sable
#

i think you're able to do that on a phone

prime delta
#

How

olive sable
#

idk if the apple web browser supports it tho

#

safari?

prime delta
#

I'll try anyways

amber fractal
#

I don't even recall ff supporting it

#

But I'll check anywayz

olive sable
#

firefox has it

#

100%

#

oh

#

my 7900xtx has arrived

#

i need to pick it up from the post place

prime delta
#

I'm downloading fitefox

amber fractal
#

Unless one means connect the keyboard and the bind works I'm not seeing it on android side

olive sable
amber fractal
#

Not that I'm against testing it

prime delta
olive sable
#

"Typing out view-source: manually before a URL works"

#

supposedly

#

yep it works

prime delta
#

where is that...

olive sable
#

the url bar

prime delta
#

Right before the slash?

olive sable
#

right before everytihng

#

before https

#

before www

#

before all

amber fractal
olive sable
#

true

#

tbh, please just use a laptop

amber fractal
#

Didn't have a USB keyboard on hand so can't test if the shortcut works

prime delta
#

What if they have an app

#

For a keyboard shortcut

amber fractal
#

I just remembered I have one

rigid snow
#

find a browser which doesn’t have that

#

don’t include it if you don’t want any web dev to support your browser

prime delta
#

Dude there's an inspect browser app for 30bucks

amber fractal
sage crag
#

wrr

rigid snow
#

safari mobile actually DOES have inspect element

#

funnily enough

prime delta
rigid snow
#

through a mac

#

only

prime delta
olive sable
olive sable
#

Oh

#

Ye firefox has the same when connecting to pc

#

But then you might aswell just use the pc unless it doesnt show up in the mobile emulation

rigid snow
#

haptics

prime delta
#

For my instsnce I might aswell go on my PC

#

And risk being shamed

olive sable
#

Shamed for what?

prime delta
olive sable
#

Pc is objectivly better for debugging

prime delta
#

Ahha...

#

I have roomates

sage crag
#

room ates

prime delta
#

GUYS I FOUND A DEBUG ANYWHERE APP

sage crag
amber fractal
olive sable
#

Now that konii is here

rigid snow
olive sable
rigid snow
#

flutter

#

🪈

sage crag
#

sometimes

olive sable
#

NOTED sometimes

sage crag
#

hair dye

olive sable
prime delta
#

Oh it's just euruda...

#

Guys when you're inspecting something

#

And it says NULL not an objecy

#

What do you do

maiden geyser
#

a barrel roll

prime delta
#

On PC there was this thing you could do

#

You click a little button and then you can take the thingy

prime delta
#

After an hour of fiddling around

#

The media is forbidden by administrative rules

red helm
#

this will surely fix itself NeuroClueless

#

consequences of a power outage

olive sable
#

7900xtx neuroHypers

#

She sent it in a fucking towel

#

What the hell am i supposed to do with that?

amber fractal
#

Free towel

olive sable
#

Now

prime delta
#

Its a nice towel man...

olive sable
#

Lets hope this works without needing to change my nixos config

amber fractal
olive sable
red helm
#

why is it in a towel lol

olive sable
#

Only thing she had on hand to package it i guess

amber fractal
#

Protecc GPU with its life

olive sable
#

7900xtx slightly bigger than 3090

#

1 more 8 pin port

#

But no sli

#

Erm

#

This 7900xtx has 2dp and 2 hdmi

open ether
#

Were you looking for more?

olive sable
#

i have 3 1440p180hz monitors

#

so i had hoped for 3 DP

#

ill use hdmi on one of them for now

#

ill prob put this 7900xtx in the theatre room pc eventually

rigid snow
olive sable
#

@nocturne olive

olive sable
rigid snow
#

standard is 1dp 3 hdmi sometimes 2/2

olive sable
#

isnt it the other way around?

rigid snow
#

never seen 3 do

olive sable
#

standart is 1 hdmi, and 3 DP

rigid snow
#

i don’t think so

#

but i may be wrong

#

towel is crazy though

#

infinite esd generator

#

in shipping

olive sable
prime delta
#

Uhhh

#

How do I override content

#

On my phone

#

The inspect thing

olive sable
#

wdym?

#

you change the client side

prime delta
#

When you go into sources

#

And you click on file

#

And it says override content

#

Does it also let you take blocked by administrator videos

olive sable
#

probably not

#

depends on how the website works

jagged turtle
#

what videos are we talking about

prime delta
#

Uhhh... Very normal videos..

#

ANYWAYS

olive sable
#

im getting the feeling they're not very normal videos

fickle rain
#

I think you should be watching such videos at home

#

Where there’s no administrator

prime delta
velvet crestBOT
#

You have unlocked new role

prime delta
#

Zood

#

WHERES THE

#

OVERRIDE CONTENT

olive sable
#

wdym with override?

#

you can replace the source on client side sure

jagged turtle
olive sable
#

what exactly are you trying to do?

#

you wont be able to override the video for other people

amber fractal
olive sable
#

changing gpu i need to change a lot of shit on my config to work again

rigid snow
#

the way to do things in a browser on mobile is with userscripts

#

write one/debug on a computer

rough bloom
olive sable
#

ye

#

mostly for hardware accel

#

and the power readings and such

rough bloom
#

oh right, the libva thing

#

usually there's not much config you need to do for AMD GPUs but yeah that kind of stuff will have to be changed neurolingSlep

olive sable
#

NVIDIA-... has faile...

#

i guess ill also have to remove cuda stuff for blender

rough bloom
#

Sam joining us in ROCm hell neuroHypers

#

at least NixOS usually has decent ROCm support

olive sable
#

its supposedly better than nvidia

rough bloom
#

just often a few minor versions behind

olive sable
#

or so ive heard

#

if the bugs or performance suck im switching back to the 3090

rough bloom
olive sable
#

wdym by that?

#

elaborate

rough bloom
#

I hope you made a copy of your NVIDIA NixOS config

olive sable
#

i shoudl do that

rough bloom
olive sable
#

safely stored on the discord servers

#

first time using an amd gpu iirc

#

besides integrated graphics on shitty laptops

rough bloom
olive sable
#

before i didnt have any encodign so thats cool to have now i guess.
i just wonder why specifically VP8 is unsupported for decode

#

AV1 neuroPoint

olive sable
#

i thought people said linux was worse on nvidia

rough bloom
#

it is

#

just ROCm is

#

not that good

#

it kinda works but generally just causes more trouble than CUDA does

#

usable though

olive sable
#

ROCm is used for what exactly?

#

isnt it litteraly anything?

rough bloom
#

GPGPU compute

#

Blender

olive sable
rough bloom
olive sable
#

i dont see the 7900xtx as a supported render device in blender

rough bloom
#

ye see what I mean neurOMEGALUL

#

first ROCm issue of the day

olive sable
#

i might jsut need to do another override

#

blender want hip or whatever

rough bloom
#

ye enable

olive sable
#

hipsupport

rough bloom
#

rocmSupport

olive sable
#

im gonna make my blender so hip

rough bloom
#

doesn't use rocmSupport as default

olive sable
#

"(blender.override {hipSupport = true;})" worked

rough bloom
#

ye, that or using blender-hip

olive sable
#

welp, lets do a quick stress-test

#

satisfactory

#

evilDentge needs to compiel new shaders

prime delta
#

Uhhh

#

I tried to put in a download button

#

But then everything broke in the script

#

And also I can't find the video file

olive sable
prime delta
#

I GUARANTEE YOU IF I DID IT ON PC

#

I COULD CLICK A BUTTON

#

AND ITD APPEAR ON NETWORK

olive sable
#

well

#

not really

prime delta
#

ITS ALWAYS LIKEEE THAYT

#

THE BUTTON BROO

#

THE THINGY

#

I FORGOTT THE NAMEE

#

was it override???

olive sable
#

if i file is behind a paywall or whatever, they're not gonna expsoe it in the inspect element

prime delta
#

I swear it was there

#

I'm tempted to open my laptop rn...

olive sable
#

use your laptop

prime delta
#

They won't see it right...

olive sable
#

idk

prime delta
#

Theyll just see a bunch of scripts...

#

And they'll be like nerd ahhaa...

olive sable
#

can yuo not like

#

turn the screen around?

prime delta
#

THATS SO SUSPICIOUS

olive sable
#

or do something better with your time?

prime delta
#

Tell that to vedal creating neuro

#

INNOVATION NEEXS OBSESSION

#

I'll do it...

#

I'll do it for knowledge...

olive sable
prime delta
#

Dude I don't know how to do it

#

I got one that wasnt blocked

#

???

#

But I try again and again and it's blocked

olive sable
jagged turtle
prime delta
#

It was something to do with the header bro

olive sable
prime delta
#

403 forbidden

#

I got it once but that wasn't downloadable

olive sable
#

that do be what happens when the file you;re trying to acces is forbidden

prime delta
#

sammmmm

olive sable
#

that is me

prime delta
#

Preaseee

#

Don't you understand these thingsss

olive sable
#

there's not much you can do about a file being restricted

#

the people that own the website put the file behind a lock

#

there's no way for you to acces it

prime delta
#

But it worked 7 months agooo

olive sable
prime delta
#

I remember ittt

#

I was downloading like crazy

#

But then my phone broke

olive sable
#

they might have upped their security

#

idk

#

what are you even trying to download?

prime delta
#

Uurggrghh

prime delta
#

Let's not ask questions that are useless...

olive sable
#

look, if its something you're not allowed to say in neurocord

#

you shouldnt even be talking about it like this

prime delta
#

its just a normallll VIDEEOOO

#

Its a Catt videooo

olive sable
#

i dont trust you at all

prime delta
#

When I try to use jd downloafer

#

It says host problem

#

0/1 online

#

I'm a genius

#

IM A GENIUS

#

I did it btw chat

#

You go into the source

olive sable
prime delta
#

There's a file there for the thingy

#

And you click override content

#

And you can go back to network

#

Open in new tab

#

And it'll show you the mp4

#

And then you can right click to save as

olive sable
#

going from 3090 to 7900xtx actualyl made a pretty big difference in satisfactory

#

went from 120-140fps to 180-200 fps

#

the testing environemnt wasnt the exact same, but still noticable difference

sage crag
olive sable
#

neuroWaveA hi konii

sage crag
olive sable
rough bloom
rigid snow
sage crag
prime delta
#

Aren't you guys gonna congratulate me...

#

I worked pretty hard ahaha...

sage crag
olive sable
prime delta
#

I DID

prime delta
#

I clicked override content on source and clicked on network again

#

It allows you to open in a new tab

#

Then bam you save video

olive sable
#

Ok but im not quite sure if what you did is good or bad

prime delta
olive sable
#

you're morally sound but unwilling to mention what type of video you stole downloaded?

rigid snow
#

it shouldn’t look like that and come anywhere close to 120 on a 3090

olive sable
#

thats fair

#

it uses unreal meow

jagged turtle
#

oh

rigid snow
#

ye ue slop

jagged turtle
#

that explains something

jagged turtle
#

ig

olive sable
#

from what i can tell they downloaded paywalled video files from a badly secured website

rigid snow
# rigid snow ye ue slop

but hey you have lumen!!! which the game is unplayable without if you use any artificial lighting and will tank your performance

olive sable
#

global illumination was off

rigid snow
#

????? 120??

olive sable
#

cuz the performance hit was crazy

#

120-140 ye

#

depending on what part of the map waslaoded in

rigid snow
#

bro i play with lumen on a 2060

rigid snow
#

i get like

olive sable
#

nope

rigid snow
#

30

olive sable
#

lmao

rigid snow
#

at worst

olive sable
#

iirc i had the settings on ultra

prime delta
#

Wait but I want to ask

#

If I clear cookies

#

Will the video dissapear

olive sable
#

did you download the file?

rigid snow
#

how can we answer that

jagged turtle
#

can someone send the evilDentge emote in chat without reacting rq

prime delta
#

I don't know what it is...

olive sable
rigid snow
#

mlntcandy (not called evilDentge)

prime delta
#

It had the incognito logo on it

#

Yea it's the video

jagged turtle
prime delta
#

But I don't think it's the original

olive sable
#

do you know what a file is?

prime delta
#

Uhhhhh

olive sable
#

he's too far gone

#

lmao

jagged turtle
#

process.exit(1)

#

--my braincells

olive sable
#

these iphone hackers dont know what a file is

prime delta
#

Ok let's say that if it will he deleted if I clear cookies

#

How would I save it

olive sable
#

do you even know what cookies are?

prime delta
#

Like uhh terrabox???

rigid snow
prime delta
olive sable
rigid snow
#

biscuits neuroBritish

olive sable
#

bro was mentioning stuff about getting the .mp4, but now he doesnt even know what a file is

#

knows mp4, doesnt know file

prime delta
maiden geyser
prime delta
#

I DONT THINK IT WAS AN MP4 bro

jagged turtle
#

AINTNEURWAY

nocturne olive
olive sable
prime delta
#

It was some weird ghost of the video

#

With the logo of the incognito tab I had open

nocturne olive
rigid snow
#

sometimes they don’t even pack the video in a container like mp4

prime delta
#

I was Lowkey in a HTML but that file isn't there, so I clicked save as video and that worked

rigid snow
prime delta
nocturne olive
prime delta
#

Wait I'll go check it later

#

When it's safe...

jagged turtle
#

idk man, why are you downloading videos behind a paywall

prime delta
#

WHY WOULDD I PAYYY

rigid snow
#

and why is it not safe to do now

prime delta
rigid snow
#

is the video sussy RedThingStandStare

jagged turtle
prime delta
#

Bcs I need to delete McAFEE first ahaha...

#

Its bloating my PC...

olive sable
jagged turtle
prime delta
#

I got the computer 3 years ago

nocturne olive
prime delta
#

It seemed like such a long process that I kept procrastinating uninstalling it

jagged turtle
olive sable
#

shipping is actually like 38. im doing the warranty cuz expensive item

rigid snow
prime delta
#

I can't even 560 euro graphic cards

#

This is why I need to learn how to bypass paywall

rigid snow
#

❌ deposit cash to a bank account
✅ convert cash into bank money

jagged turtle
#

👆

jagged turtle
prime delta
#

Guys how do people programm and debug on their phones

#

Its Lowkey so hard to type

nocturne olive
prime delta
rigid snow
prime delta
#

Like the anime guy

#

The battle programmer shirasei

olive sable
#

nobody uses a phone

prime delta
#

The anime guy does

jagged turtle
prime delta
#

He opens his flip phone and he types binary in like a maniac

olive sable
prime delta
jagged turtle
#

actually wait no not even a responsive web dev uses a phone for dev

prime delta
#

IF ANIME ISNT REAL THEN NEURO ISNT REAL

#

SCREWW YOUUU

olive sable
#

if you want to program in binary goodluck, youll need 2 months to make a hello world program

prime delta
rigid snow
#

for us

prime delta
#

That anime made me want to be a vedal too

jagged turtle
prime delta
#

Even though the mc is a little bit weird

jagged turtle
olive sable
#

id argue neuro is at least somewhat real

prime delta
#

Isn't that good

olive sable
#

on a level from 1 to 10 neuro is like 4 real

jagged turtle
#

holy glueless

prime delta
#

Print "laugh"

rigid snow
#

why do i sometimes feel like im the only one not jealous of vedal in the slightest

prime delta
#

end

olive sable
prime delta
jagged turtle
prime delta
jagged turtle
olive sable
jagged turtle
#

wait no it's there

#

me blindge

prime delta
#

You guys sound like the ai in Roblox studios

jagged turtle
#

aka it's 10:45pm

jagged turtle
#

why am I surprised

olive sable
#

ye they did recently

prime delta
#

They did it's pretty good

rigid snow
olive sable
#

true

prime delta
#

Well it's not good if you don't know how to code...

rigid snow
#

how he hasn’t burnt out is a mystery

jagged turtle
jagged turtle
prime delta
prime delta
#

Isn't vedal Lowkey cool

jagged turtle
#

number go up maybe?

prime delta
#

If I was a girl I would have a huge crush on vedal

olive sable
rigid snow
#

i mean sure but still

#

i’d be sick of neuro

rough bloom
olive sable
#

hi shuni

#

hsnu.ixe

jagged turtle
#

oml it's shuni

rough bloom
#

sam meow

olive sable
#

meow

jagged turtle
#

can you explain to this non-programmer somewhere above us what a file and filesystem is

prime delta
sage crag
#

@rough bloom

#

cheesi

jagged turtle
olive sable
#

welp. i have tried vrr on amd gpu. and its better but still bad

prime delta
#

One time a guy screenshotted my code on Roblox studio that I shared, and he laughed at me with his friends in call

#

All you programmers are mean