#programming

1 messages · Page 171 of 1

nocturne olive
#

I think at some point I set the living room PC on kernel 6.11 or something, I forgor

#

But that one offers drivers up to 580

fast pagoda
#

mint has 6.11 HWE available

#

yeah 580 is the most up to date nvidia driver

#

there's no proprietary version since they swapped to all open

#

well, for ubuntu and descendents

nocturne olive
fast pagoda
#

mm you are right i think (idk where i heard that then unless i saw the part where they were dropping support for pre-1600 series GPUs) cuz now im seeing that both are still supported although im also seeing people confused saying they thought proprietary was cooked as well lol

#

oh it was because drivers after 550 are supposed to be at feature parity, same performance/features enabled in open and proprietary drivers for versions after

#

apt-get install linux-generic-hwe-24.04 doesn't work for you? ive seen mixed reports saying 22.1 is too old and also that it worked for people saying they were on 22.1

#

apt-get install linux-generic-hwe-24.04 is 6.11

nocturne olive
#

From what I'm aware Mint 22.1 is latest stable

fast pagoda
#

im not sure if it requires this repo but the ppa:cappelikan/ppa repo for apt has like all the kernel packages so might need to sudo add-apt-repository ppa:cappelikan/ppa && sudo apt update && sudo apt upgrade -y

#

befoore doing apt-get install linux-generic-hwe-24.04

#

i thought i saw 22.2 coming out

nocturne olive
#

I don't think I'm currently looking to upgrade my kernel anyway, until Mint does a new release

fast pagoda
#

oh it's in beta

nocturne olive
#

Yeah only beta for 22.2

fast pagoda
#

i dunno how you would be stuck on 6.8 when 6.11 has seemingly been around for mint for a while from everything im finding and i know you did apt update & upgrade

#

if you have like btrfs with snapper saving snapshots or anything even remotely similar configured upgrading your kernel is non-risky other than you might need to select the previous kernel at boot to revert if something goes horrendously wrong

nocturne olive
fast pagoda
nocturne olive
#

Silly

fast pagoda
#

everyone has different priorities but that would drive me insane

#

if only at this point because nvidia has left you behind with their drivers

nocturne olive
#

If it crashes again in the same way I'll try upgrading kernels and drivers

fast pagoda
#

but that's why im not on debian distros i suppose

you could always also just reinstall your current nvidia driver as well

sudo apt purge 'nvidia-*' -y
sudo apt autoremove --purge -y
sudo apt install nvidia-driver-550 -y
#

could be more specific on nvidia package name so you dont yeet nvidia common

nocturne olive
#

As I said, if I keep getting crashes I'll do something about it
For now I have no clue if the crash is reproducible

fast pagoda
#

yeah that was more of an "alternative to try before kernel upgrade if you really dont wanna do that if it does end up crashing again"

#

i get such crazy fomo all the time with everything it's crazy

#

before this conversation i was like damn im so behind i really should ruin my life by installing 6.17-rc4

nocturne olive
#

Well, either way, I just want a stable and fast system

fast pagoda
#

this may be the most ancient piece of running software in the world

fast pagoda
#

if only i had it

nocturne olive
#

Anyway, how's the website?

fast pagoda
#

well, virtualbox fucking hates me, so the winSCP config is just me hand crafting one - no idea how that will go, should work but who knows, removed all the file browser stuff to another branch, got new neuro and evil favicons & set that up to swap on theme change, thought about how to display the prompt about configuring scp & ran into decision paralysis and ended up doing other stuff

#

i think virtualbox was exploding because of having qemu present as well though

#

did get windows running to the installer in qemu but qemu's support for secureboot ............... leaves something to be desired and it keeps not seeing it

nocturne olive
#

It would be beneficial to test in a VM, as people have been having quite a lot of trouble getting the right settings

fast pagoda
#

right exactly why i wanted to do it lol

#

but wowzers has that been a pain so far

#

filezilla config is functional for sure though but filezilla is significantly more reviled than i realized till i started looking into winscp, people were huge mad about filezilla bundling sloppa in their installer or something

hollow spruce
nocturne olive
#

Yeah apparently it's kinda adware

hollow spruce
#

This os is very light

fast pagoda
#

it certainly appears light

#

i saw a youtube video about it once

#

fits on one(1) floppy or something

fast pagoda
#

it was like a checkbox to install sponsored bs or something

nocturne olive
#

And that's why people say to use WinSCP

fast pagoda
#

ive never understood getting assmad about installers offering up a bunch of crappa but again i guess im just used to it
i feel like every installer used to have it for any free stuff on windows

#

as long as you don't just turbo hit enter through installers and then get pissed when it installed something stupid then i dont see the issue if it's what they decided to do to fund their website or w/e it's meant to pay for

#

last time i got mad about an installer was when sourceforge tried to bundle some extremely dogwater adware installer that wasn't even an installer, it was like a middleman program that they tried to force you to download when you hit download on anything hosted there

#

and then THAT would download the real installer

#

which was so transparently pointless that it triggered users at large rather than just the stallman tier stalwarts for FOSS like these things tend to upset more than anything

#

not that it's a bad thing to have principles but usually most people just don't care

hollow spruce
#

l.asm:10: error: instruction not supported in 16-bit mode
l.asm:11: error: instruction not supported in 16-bit mode
l.asm:12: error: instruction not supported in 16-bit mode
l.asm:13: error: instruction not supported in 16-bit mode
l.asm:17: error: instruction not supported in 16-bit mode
l.asm:18: error: instruction not supported in 16-bit mode

#

How supposed to do

fast pagoda
#

16 bit mode we aint getting outta the 90s with this one

hollow spruce
#

Nasm l.asm

#

~ $ nasm -f elf l.asm -o hello.o
l.asm:10: error: instruction not supported in 32-bit mode
l.asm:11: error: instruction not supported in 32-bit mode
l.asm:12: error: instruction not supported in 32-bit mode
l.asm:13: error: instruction not supported in 32-bit mode
l.asm:17: error: instruction not supported in 32-bit mode
l.asm:18: error: instruction not supported in 32-bit mode

#

Atleast 64bit support

#

🛠️
ld: hello.o: Relocations in generic ELF (EM: 62)
ld: hello.o: error adding symbols: file in wrong format

#

Fixing

fast pagoda
#

compiling assembly is exceedingly outside of what i know but also i looked up the os again and they have several compilers but most prominently mentioned is fasm so is it intended to target fasm? Totally clueless here

#

both have same syntax it seems but idk apparently fasm is easier

#

there's also a yasm out there glueless

hollow spruce
#

.data
Msg: .ascii "no idea !\n"
len = . - msg

.text:
.global _l
-l
mov x8, #64
mov x0, #1
ldr x1, =msg
mov x2, #len
svc #0

fast pagoda
#

that's essentially about as useful as what i said there so yeah pretty much

hollow spruce
#

No way I will exit system that required one 😂

sage crag
amber fractal
#

Trying to avoid using the owncast admin UI and it is not working well. Apparently the config file has been removed from existence.

hollow spruce
tender river
#

good meowning neuroNyan

hollow spruce
#

Yo

#

Im doing wrong
I will use a .s instead of asm

tender river
#

file extension doesnt really matter

hollow spruce
#

Def is complete in code

#

Now time to call systems exit

tender river
maiden geyser
#

luv me some

tender river
#

neshush doesnt have this one evilSmug

sage crag
tender river
#

awawawawa i was cooking but some huge insect flew into the kitchen

#

can it please leave neuroSadge

tender river
#

i'd be happy if a bird flew in and ate it yes

#

i hope it flew away by now and i can continue cooking

olive sable
#

Ah yes, my parcel is on its way. <img class= ...
Minamhm

#

Idk if there's any important data there so i blocked it anyways

amber fractal
#

mhm we love base64

sage crag
#

base1

olive sable
#

My parcel tracking number is somwhere in that embed failure fuckup, so i dont want to leak it

sage crag
olive sable
#

Otherwise yall would know where i get my groceries KEKW

amber fractal
# sage crag base1

Ah yes, where you count to 10 and the symbol happens to be A for some reason

olive sable
#

I got banned from playing uno at my middleschool today
Since i graduated 2 months ago im not insured anymore so they dont want me there neurOMEGALUL

amber fractal
sage crag
#

10 in base 16 => 16

#

olive sable
#

Base has to be a natural number excluding 0, what if we didnt follow that rule ReallyInnocent

amber fractal
sage crag
#

if you define bases in terms of logarithms and exponents you can use any arbitrary base

olive sable
#

Base pi neuroHypers

#

Anyways i have to cycle home now, ill be back in an hour

tender river
#

dt

amber fractal
# amber fractal Now with a brand new expansion

Still can't believe how broken the cards from that one are.
-# Context, this version adds a rule of if you have 25 cards in hand you are gone
-# (There is a mechanic that lets you survive this once, but it's a pregame choice and you could double a draw stack once instead)

trim valve
#

I got my vive cosmos "working" again

#

it is only mildly broken

#

(it doesn't detect my headset unless I connect a usb A -> C cable to its internal port and restart it, which for whatever reason makes it happy)

hollow spruce
#

Edit : How much get marks in ure school or college tell me please

trim valve
#

I got decent marks :3

hollow spruce
#

Good

hollow spruce
#

Mine was 0/25 marks

sage crag
#

maybe 3

rigid snow
#

i get passing ones

#

bare minimum

sage crag
rigid snow
#

i don’t understand what they’re asking though

#

like what grades? or how many subjects

hollow spruce
#

They thought this will judge people

sage crag
arctic bane
#

89% average marks for me in college

sage crag
hollow spruce
sage crag
#

elementary, watson

#

nyan nyan

tender river
#

ьущц ькз

#

meow mrp

sage crag
unreal field
#

Any word on NeuroSynth progress?

nocturne olive
#

Today there was a new model, version NS-B-3.1
Turns out 5 instances of A#5 is not sufficient to learn A#5

rigid snow
#

that seems stupid, there’s no falsetto or anything it’s not a human… why can’t it be A5 +1st or something why does a single pitch have to be learned explicitly

nocturne olive
#

If there's not enough data about a specific pitch, the model just fails it for some reason
The highest pitch that succeeds has liike 20 instances in the data or something

nocturne olive
#

No, A#5

sage crag
nocturne olive
#

A#5 is a pitch

sage crag
hollow spruce
#

Some how compile takes more time it should

#

Very rare case

rigid snow
nocturne olive
sage crag
#

oo ee oo

rigid snow
hollow spruce
#

What voice range we should do

hollow spruce
#

(1.3 is good )

nocturne olive
rigid snow
#

yeah sure, but you do still have her covers as data right?

#

or is it 100% rvc

unreal field
#

So, uh, are there any conditions for me to work with you on a NeuroSynth cover?

nocturne olive
rigid snow
#

also “natural” in this context makes little sense

nocturne olive
hollow spruce
unreal field
nocturne olive
#

I mean MIDI, SVP, UST, USTX, VSQ and VSQX to name a few all work

#

For MIDI there are some specific rules

unreal field
hollow spruce
#

Musical Instrument Digital Interface, is a technical standard that allows electronic musical instruments

unreal field
#

I worked with MIDI before

nocturne olive
#

You must keep the MIDI notes such that they currespond to words or phonemes in a natural structure, such that following them you could sing the song in such a way that each note only contains one word or continues the previous note's word to a different pitch
You must make it such that there is only ever 1 note per track present, for harmonics use different tracks for harmonics
Keep the same type of harmonic to their own track, rather than smashing all mixing units to one track, for example if you have background noises and a main vocal, even if they don't play at the same time, as mixing them differently is required

rigid snow
#

singing chords NeuroPoggers

nocturne olive
#

Singing chords is an example of where you need multiple tracks, as you need the main pitch, the low harmonic and the high harmonic

rigid snow
#

the joke is you can’t

#

harmonics are separate tracks as you said

sage crag
#

pomodoro timer

sage crag
rigid snow
#

not humanly possible neuroSadge

rigid snow
#

not human

sage crag
#

beep boop

nocturne olive
#

It would also be a pain to implement multiple note sequences at once in the pitch bending engine, so it just doesn't exist

sage crag
#

erfi

tender river
rigid snow
#

📺

hollow spruce
tender river
unreal field
rigid snow
#

that’s crazy

#

i don’t think it can

nocturne olive
unreal field
sage crag
#

sory

nocturne olive
#

Note, ensure you do not go beyond something like G5, as that is where NS's range hard-caps due to data reasons

sage crag
#

supplement with eliv voice

sage crag
nocturne olive
nocturne olive
rigid snow
#

musical instrument digital interface polyphonic expression

rigid snow
#

idk if superbox’s software understands them though

nocturne olive
#

I am not aware if NS's inference engine knows to pull that

#

Oh great this is finally fully counted up

sage crag
#

the sun the moon the stars

tender river
gleaming harness
#

I wonder if it's possible to let neuro simulate a wii remote

sage crag
tender river
rigid snow
#

real time analog data llm output

sage crag
#

nermleaf

olive sable
#

New package has arrived neuroHypers
I love spending money

sage crag
#

send it to me

rigid snow
#

send it to her

sage crag
#

enub konii need

rigid snow
#

with a keyboard

hollow spruce
#

Also sent with bubble wrap

tender river
#

vedal just loves losing money

nocturne olive
sage crag
#

lämp

tender river
#

awa

hollow spruce
nocturne olive
gleaming harness
nocturne olive
#

Again, just simulating the inputs of a Wii remote is too much for an LLM

rigid snow
hollow spruce
#

Neuro need some training from user

nocturne olive
rigid snow
#

i can send you 10 bucks

gleaming harness
nocturne olive
#

No

gleaming harness
#

Without neuro directly simulating it

hollow spruce
#

Hmm

nocturne olive
#

Too much outputs required too quickly

rigid snow
nocturne olive
#

I don't usually do cryptocurrencies, I prefer real money

rigid snow
#

well i'm sanctioned

#

so

gleaming harness
nocturne olive
# rigid snow so

If you want to give me money in a currency such as that you will have to instruct me on how I can store that currency

hollow spruce
trim valve
#

you're gonna have to be wayy more specific than that unfortunately

rigid snow
#

nobody will gaf about $10 but sure

trim valve
#

like I'd imagine a couple games could work but a lot of the wii relies on real time inputs that don't map well to the neuro api

nocturne olive
rigid snow
gleaming harness
trim valve
#

interfacing with a controller is easy, making it in any way usable for playing the game is not

nocturne olive
gleaming harness
trim valve
#

that feels like you'd just make the problem infinitely harder

rigid snow
#

it is

hollow spruce
#

Raspberry pie

trim valve
#

the problem is not letting neuro use a wii remote

nocturne olive
trim valve
#

the problem is neuro has no idea what a remote is used for

#

nor the ability to play any games with it

#

you'd have to make a mod for a specific game that maps what's on screen to a simple set of actions for neuro

gleaming harness
#

Giving neuro access to dolphin emulator and the built in dolphin emulated controller

#

Then neuro just needs to know how to use a mouse

trim valve
#

"just"

nocturne olive
#

That is also too abstract for her

gleaming harness
#

Its a mouse

nocturne olive
#

Well she can't use a mouse

trim valve
#

neuro does not do real time gaming afaik

nocturne olive
#

LLMs are incapable of things other than text processing

hollow spruce
#

WII WILL BAN SOON

rigid snow
#

not the hooking up to dolphin part

trim valve
#

the whole api works on basically glorified llm prompting as far as I can tell

nocturne olive
trim valve
#

yeah?

nocturne olive
#

Oop

#

Wrong reply

#

Sorry

fast pagoda
#

werent many images turns out

was only 14.8g in the end

rigid snow
#

oh me? yeah

fast pagoda
sage crag
nocturne olive
trim valve
#

glueless can we have neuro play wii monopoly

gleaming harness
#

Ok what if neuro just said what she wanted to do (ie: open this game move the nunchuck joystick forward) and a homebrew app did it

rigid snow
gleaming harness
#

Like those "twitch plays pokemon streams" but with more commands

trim valve
#

yes that would fundamentally work

#

but the issue is, what wii games have the same pacing as an original pokemon game?

unreal field
nocturne olive
rigid snow
#

bitcoin is trash for small amounts btw

nocturne olive
unreal field
nocturne olive
rigid snow
nocturne olive
gleaming harness
gleaming harness
hollow spruce
#

NeuroSynth
Soon it will install

olive sable
nocturne olive
trim valve
#

the only even slightly popular game I can imagine working is like mario galaxy, with neuro playing as the 2nd character who exclusively does like star collecting or something?
even then you'd have to do some level of making it playable with neuro

trim valve
#

ig it would just be like a few of the streams with a neuro mod where she's basically just watching with a bit more context for the game

nocturne olive
fast pagoda
#

aassdbordger

#

reeeeeeeeee wikiteam3 doesnt actually include the restore functionality to the local wiki you have to manually do that

#

welp that'll be a tomorrow thing

olive sable
tender river
#

send it

fast pagoda
#

free stuff

olive sable
#

You wouldnt be able to use it

fast pagoda
#

can i have it

olive sable
#

I dont want your adress so no

fast pagoda
#

i can set up a drop

olive sable
#

No thanks

fast pagoda
#

i have henchmen

gleaming harness
# nocturne olive Something something asperger syndrome or whatever

I'm in the process of getting tested for autism
The doctor at this point is saying that I have signs of autism but they... I got distracted after that and can't remember the rest of what he said, I can say that his monitor is extremely outdated, and so is his version of windows

rigid snow
# nocturne olive Then something different like Monero? Or whatever it's called

my favorite ones are polygon and solana for small amounts, but idk. monero is fine too afaik, but its too difficult to use properly. btc and eth are too expensive. bitcoin cash (bch) is probably fine too i haven't used it in like 5 years though and don't remember shit. any closeted crypto enthusiasts willing to help me out here

nocturne olive
gleaming harness
olive sable
#

The people responsible for my money had cctv cameras connected to a crt from 1987 or something. Yellow discoulored 11" crt

gleaming harness
#

Might have been 16

fast pagoda
rigid snow
#

w10 from 2018 vedalCry

fast pagoda
#

i mean the whole blockchain was like hundreds of gigs and the stupid thing was NOT quick about it but still

gleaming harness
#

I am praying that I doesn't have malware

#

He

#

Okay now I remember why I didn't mind apple autocorrect

rigid snow
gleaming harness
#

Because it wasn't a backstabbing psycho unlike my Samsung phone's autocorrect

fast pagoda
#

yeah it just hurts the network and isnt properly secure if you do that route

nocturne olive
fast pagoda
#

Feather is good for monero

rigid snow
#

i can't do monero

fast pagoda
#

i reread it and realized he was talking about other coins rather than random wallet guis

#

ope

#

just use dogecoin 4Head mooning any day now

#

🚀 🗣️ 🚀 🗣️ 🚀 🗣️ 🚀 🗣️ 🚀 🗣️ 🚀 🗣️ 🚀 🗣️

gleaming harness
#

My dad used to have a bunch of bitcoin, and he sold it RIGHT BEFORE IT BECAME WORTH ALOT OF MONEY

fast pagoda
#

i purchased a few things with whole ass btc when it was under $100

nocturne olive
gleaming harness
#

He still has his hardwallet

fast pagoda
#

im pretty sure a flash drive that i am not sure of the whereabouts of has btc on it so that's wonderfful

#

used to mine in a pool before GPU became impossibru

rigid snow
fast pagoda
#

everyone has some variant of that tale at some point

#

my parents considered slapping like 10grand into apple stock right before jobs came back in the 90s and didn't

#

whoops!

#

i did buy nvidia when it was under $20

#

so i'm doing alright on that

#

wish i had bought it at like

#

2015 price tho

gleaming harness
#

Worst idea I have ever had
Crypto currency that you can only buy $0.01 worth at a time, no more, no less, but it will stay worth $0.01, so if you buy 1 for $0.01 and 1 then becomes worth $10 then your 1 of the Cryptocurrency becomes 0.001

fast pagoda
#

what is the upside though

nocturne olive
#

I guess it's stable

gleaming harness
fast pagoda
#

damn, didnt see this was an ultrakill gif

#

it's over

rigid snow
gleaming harness
fast pagoda
nocturne olive
fast pagoda
#

still not that much

#

not a bad bonus tho

#

assuming i literally ever sell the shit which i havent

#

unrealized funny money neuroHypers

gleaming harness
#

I JUST REALISED THE USERNAME IN THE PICTURE

#

time to crop it out!

noble zodiac
#

surly nothing bad will ever happen to the nvidia stock price NeuroClueless

fast pagoda
#

they did the 10-1 stock split after too so assuming i sold now i'll have a nice stinky ~60k of profit from it but i'm the greediest man in the world

gleaming harness
fast pagoda
#

so instead ill watch it disappear with great stress

rigid snow
# nocturne olive Well, anyway, how about this part?

i don't know vedalCry i feel like i'm taking responsibility and am subconsciously avoiding that
i also don't know what you have in terms of fiat off-ramps (exchange for real money) in finland or the world in general
the best way would be for you to learn about it yourself but i value your time and don't want to make you spend it on useless crypto shit

fast pagoda
#

web3.0 brah

#

i wonder how the explorers guild or whatever is doing

#

building their worldwide community featuring .... newsletters that are autogenerated

rigid snow
nocturne olive
#

Sure, 10$ is absolutely worth some waiting when I'm completely broke

rigid snow
#

one thing you should know and be prepared for is you'll probably have to do KYC when you register an exchange account

fast pagoda
#

just use btc or eth or even like usdc if it's urgent and you want the best chance of it actually being supported + dont care if the FBI can figure out who you are (in finland)

rigid snow
#

btc? not for $10 vedalCry

fast pagoda
#

i mean it's capable of sending $10 but the fees and fluctuation mean it's not practical

rigid snow
#

eth gas too high

#

too

fast pagoda
#

usdc?

#

xrp is fairly stable

rigid snow
# fast pagoda usdc?

it's a erc20 token, i'm talking about the ethereum network in general, fees too high

fast pagoda
#

verify your identity in some way basically

nocturne olive
#

So log in with a bank account or something?

rigid snow
fast pagoda
#

for fraud reasons they need to know more than just abank account yeah usually you need to use an actual ID with photo verification and possibly more if they're ultra sus of you

fast pagoda
#

idk if u have access tho if sanctioned

#

base fees are way lower

#

supports usdc and pretty much anything eth chain

rigid snow
#

why wouldn't i have access to a chain, how do you expect sanctions to be enforced

#

or is it something different

#

that you mean

fast pagoda
#

i have literally no idea what restrictions they implement
i just know base is a coinbase thing that might be hard to access in some way depending on what exchanges you're currently able to use (without great pain)

rigid snow
#

in terms of eth networks as i said i like polygon

nocturne olive
rigid snow
#

oh do you not have a uhh

#

like a phone

nocturne olive
#

I have a phone that kinda sucks

#

I don't particularly like using it

rigid snow
#

damn

fast pagoda
#

perkele................

nocturne olive
#

Whuh, why swear?

fast pagoda
#

using solana you could be this AI generated woman on her phone verifying your id

rigid snow
#

swear = peak humor

fast pagoda
rigid snow
#

i use solana, i'm basically her

fast pagoda
#

because of paragon

#

that and usso taunta are like the 2 finnish phrases i recognize instantly

#

well, taunttaa

#

or something

#

Lich king 25hc HYPERPOGGERS

nocturne olive
#

That does not look like Finnish, more like Estonian

rigid snow
rigid snow
fast pagoda
# nocturne olive That does not look like Finnish, more like Estonian

im probably misspelling the shit out of it

paragon was one of the best raiding guilds in the world when they were around and they were almost exclusively finnish

usso was the player's name, one of the players was yelling at him to taunt (which pulls aggro from an enemy forcibly to the player who taunts)

taunttaa is probably just taunt stated with a heavy finnish person's accent rather than a real finnish word

nocturne olive
#

Oh true, that is just a Finnishfied version of that other word

fast pagoda
#

and it was le epic because usso was a hunter (not a person normally taunting the lich king) but the tank was going to die no matter what because he was enraged with 1% health unless this hunter forced the boss to run across the entire platform

#

they quit playing in 2016 after not being able to find enough extremely sweaty finns to be in the world first contention

quit instead of opening applications up to people who aren't finnish

#

RIP paragon sadgejam pour one out

nocturne olive
#

That's crazy

fast pagoda
#

thank you for coming to my ted talk

olive sable
#

I have figured out why my laptop sucked

fast pagoda
#

cooling

olive sable
#

The intel graphics command center was overwritting my power plans

fast pagoda
#

ahahaha

olive sable
#

So it was set to balanced while on battery, and balanced when plugged in

#

Which i dont want

fast pagoda
#

you dont wanna save over 2 whole watts for 95% less performance why not

#

the datacenters need that power dawg

olive sable
#

Also this power plan shit is so assssssss.
Gigabyte control center has one, intel graphics command center has one, windows 11 has one, nvidia probably also has one

fast pagoda
olive sable
opaque sigil
#

Honestly one of the better use cases

fast pagoda
#

yeah actually kinda cool

tender river
#

ermfish

fast pagoda
#

apparently it'll de-weed crops better than a hand crew of like 75 people doing it by hand

nocturne olive
#

@rigid snow So what now then?

tender river
fast pagoda
#

it has 32 lasers 240w each
dont get under there i dont think it'd be a fun place to be

tender river
#

it depends

fast pagoda
#

they claim 99% accurate and like 10k+ weeds/hr

tender river
#

are you a weed

fast pagoda
#

im

#

...not sure

#

how do i tell

tender river
#

you can try standing under that lazer

#

if it hits you there's a 99% chance you are

tender river
fast pagoda
#

maybe that's why i can't into vim

#

dont think weeds are typically known for their high intellect

#

or learning capabilities

#

or finger dexterity

#

or sentience

#

just like me

#

damn

tender river
fast pagoda
#

the solana homunculus is still staring at me

rigid snow
#

it's the string that starts with 0x

nocturne olive
#

Well let's see then I guess

opaque sigil
noble zodiac
#

when a 11mb dataset warns you about it being very big and then the readme says:

(make sure you have at least four (4) megabytes of free space per disk of Moby product for HD diskettes, two (2) megabytes of free space for DD diskettes.)

olive sable
#

I turned my tv off, which made the av receiver turn off cuz simplink, which made my laptop disconnect. then i turned the tv back on, which made the avr turn back on, which made my laptop connect and then immediatly bluescreen KEKW

fast pagoda
rigid snow
noble zodiac
#

tbf the readme is dated to 27 June 93 so it checks out

#

really shows what 30 years does. A newer version is a barely comprehensible xml custom format. This one is just csv ascii

fast pagoda
#

average internet was probably 14.4k in 93 so that 11 mb would probably be like a 16 hour download if trying to transmit over the internetz

#

unless you were big ballin on a t1 or something

noble zodiac
#

at least the english language didn't change too much in 30 years to really matter. Especially not in a good way

fast pagoda
#

bruh wym ? the language is cooked? that's cap

#

was gonna say more but i hated it

noble zodiac
#

I mean.... I checked synonyms for "good" in the latest version and got

(s) instagood likely to get many upvotes on Instagram

fast pagoda
#

the latest version

#

lol

noble zodiac
#

latest version of the dataset

fast pagoda
#

devs really phoning it in with the more recent patches fr fr ong

dusk sierra
#

Is there a way to release a flutter app on Github that can be downloaded and installed on iOS?

fast pagoda
#

sideloading ios

#

doubt

hollow spruce
#

Jailbreak ios ?

#

Or <iostream>

fast pagoda
#

i think you as the developer can install an app on your phone for like a week and then they disable it or something

#

apple moment

#

from xcode

#

if xcode supports flutter which i have no idea

dusk sierra
#

should I build the .ipa version and publish it there? I work on windows, so I have no idea

fast pagoda
#

could run the turbo crappy web flutter maybe

hollow spruce
#

Apples is locked side load
(Now fucking android also restricted now )

#

Duepoly is. Shit

fast pagoda
#

i didnt see if they released more about that but i figured it might just end up harder to enable sideloading than it is right now

#

isn't it already disabled without developer options by default rn

hollow spruce
#

Nai I can't install app from github

fast pagoda
#

wut i have a few guess ill never delete them till im certain it can be brought back

hollow spruce
#

What Ure android version

fast pagoda
#

16

#

pixel phone

hollow spruce
#

Don't enable (advance protection) please

lapis wraith
#

Whut? Sideloading is disabled on android 16?

hollow spruce
opaque sigil
#

Realistically what will probably end up is you'll have to sign and maybe build the apk yourself

hollow spruce
#

Google is testing this feature

opaque sigil
#

Should be able to do it on device too unless they fuck with perms

hollow spruce
#

I hate most

lapis wraith
#

If google disables sideloading completly... welp. Maybe will be time to install a new os on my phone xdd

fast pagoda
#

yeah ifigured itd move towards just verifying who you are so that they can throw you under the bus if you do something stupid with your registered side loaded app

#

copyright and whatnot

dusk sierra
#

So unless I publish it on the app store, the user will have to build it himself? Sucks

fast pagoda
#

for ios they cant even do that, not longer than 7 days from what i was seeing

hollow spruce
#

I sent too many requests to disable my fucking advance protection

dusk sierra
#

meh

opaque sigil
lapis wraith
dusk sierra
#

I love android and will never change to apple, and this just reinsforce my statement

fast pagoda
#

im reading the page for advance protection and i'm pretty sure they offered me this when i updated

opaque sigil
#

Nobody said anything about them stopping sideloading neuroCry

#

They just have to be signed by a verified account

fast pagoda
#

and i figured it was some malware that would just ruin my life so nah

rigid snow
lapis wraith
dusk sierra
hollow spruce
#

Just I need mound my phone as root mode
Then then all wasted phone will use as raspberry pie

opaque sigil
olive sable
#

my laptop is trippinng bruh, wtf is this 2880x480 resolution? this is supposed t be a 4k tv

opaque sigil
#

Nice

fast pagoda
#

any malware "protection", anticheat whatever that actually tangibly stops me from doing wtf i want on the device as far as what's installed is actively malicious malware itself and worse because it's usually forced whereas installing something incredibly dumb on the phone yourself is optional, as far as i'm concerned

lapis wraith
fast pagoda
#

it's less malware and more piracy enabling stuff

#

id imagine

olive sable
fast pagoda
#

that theyre enabling that is

#

or targeting

opaque sigil
#

Who knows

#

Malware is the "official" reason

fast pagoda
olive sable
#

Nope

#

Its windows issues

fast pagoda
#

nah bro i see it right there

#

it says 2 on it if you missed it

#

that's ur corsair xceneon edge brah

opaque sigil
#

It's most likely just the display advertising this resolution because who knows

#

Maybe one of the engineers was bored and said why not

fast pagoda
#

didnt you already have issues with this tv's resolution like a couple weeks ago

#

i feel like this happened before

olive sable
fast pagoda
#

lol i ran that wallpaper for so long

hollow spruce
olive sable
#

The ps5 seems to do 4k fine on this, its only my laptop and tablet that seem to fuck up

fast pagoda
#

did you ever get another cable to try with the higher bandwidth (not that it should particularly matter for that resolution but perhaps with the cable length and laptop parts it's unhappy with the signal in some way causing issues in what res it's reporting to them

olive sable
#

This is a diffrent cable

fast pagoda
#

but is it still 1.4 or w/e

olive sable
#

Fuck it ill try the ps5 cable

fast pagoda
#

oh yeah that's a thing one can do

#

that's crazy

olive sable
#

Even with ps5 cable its not really working. Maybe 4k 10bit is asking too much?

olive sable
#

Its a 49ub850v

#

So hdmi 2.0 im pretty sure

hollow spruce
fast pagoda
#

neurOMEGALUL im sure it's fine and i do not give a shit about tvs in general but this made me laugh hard searching that

olive sable
#

It was free okay

#

I got it from a family member, and it does 3D

fast pagoda
#

free is always good cant complain about that

hollow spruce
olive sable
#

I have discovered something interesting

fast pagoda
#
  • @hollow spruce
#

to themself

olive sable
#

4:2:42 60hz 4k 10bit, no video out. I try to unplug the cable and halfway i get video MyHonestReaction

#

My honest conclusion is that i hate laptops

#

In linux i can just hardcode the res in the config now that i think about it ReallyInnocent

fast pagoda
#

id be deeply concerned about my entire life doing that

#

would feel like everything would explode at random

#

even if it wouldnt

opaque sigil
#

In linux you can overwrite the edid too Gladge

#

frick you samsung and nvidia

fast pagoda
#

i have a samsung monitor that hasn't given me trouble with resolutions on nvidia cards thankfully

#

is it specific ones or something

hollow spruce
fast pagoda
#

xorg issue?

olive sable
opaque sigil
#

It's the very specific g7 I have that has an issue where 10 bit colour mode ends up stretching the inage

fast pagoda
#

lol

olive sable
fast pagoda
#

that is very specific

opaque sigil
#

Extended display identification something

fast pagoda
#

data

opaque sigil
#

It's a standard for displays to advertise their capabilities

hollow spruce
#

I hope my green card approved in USA if do then I will transfer to usa

opaque sigil
#

On windows and xorg it's a non issue since you can set it to only do 8 bit

fast pagoda
olive sable
#

Ok i got it to work

#

But only on hdmi port 3

#

Which doesnt have arc

sage crag
fast pagoda
sage crag
#

it doesnt work even if i modify the edid

olive sable
#

I think ill do 4k60 8bit to keep arc

#

I do like having audio

fast pagoda
#

i assume your cable is dp 2.1

#

i think you're meant to have the upgraded cable for anything like in the 4k 200+ hz range, 1.4 wont do it

hollow spruce
#

That very tricky situation

#

We can't use dp port in tv

sage crag
#

it doesnt report freesync res properly and it causes amd driver to misrecognise it

sage crag
#

its just a driver skill issue

fast pagoda
#

r u wayland

if so i blame wayland

or xorg

if so i blame xorg

job done

olive sable
#

Hmm.
Ycbcr_444 limits me to 30hz eventho it shouldnt cuz hdmi2.0.
Does arc lower the bandwith spec?

opaque wharf
#

No, the encoding is limiting the bandwidth

sage crag
#

maybe also try ycbcr424

olive sable
#

I would use dp if this tv and avr both had it

olive sable
sage crag
opaque wharf
olive sable
#

Doesnt work no

#

Seems like 420 is the easiest and rgb is the hardest one?

fast pagoda
#

hehehe

hollow spruce
#

We can use gpmi cable

fast pagoda
#

oh cool my 3225qf supports 10bit

#

i have not intentionally enabled it but maybe it's using it

#

kde graphically seems to just have an hdr toggle and i assume that enables 10bit mode if needed but it doesnt really say

#

off to etc

hollow spruce
#

What is gpmi

GPMI is a new, high-bandwidth AV interface standard from China that offers significantly more speed and power than Thunderbolt 4 or 5, designed for commercial and high-performance applications, whereas Thunderbolt is a widely adopted Western standard offering broad consumer device compatibility with high speeds but less raw power and bandwidth compared to GPMI's enterprise-focused variants. GPMI Type-C supports 96 Gbps and 240W, while its Type-B variant doubles these to 192 Gbps and 480W, surpassing HDMI 2.1, DisplayPort 2.1, Thunderbolt 4, and even Thunderbolt 5's stated capabilities

sage crag
#

hello?

olive sable
#

Hello neuroWaveA

sage crag
olive sable
#

I know

sage crag
olive sable
#

Hmmm. Maybe i need a diffrent cable from the avr to the tv hmm

fast pagoda
#

bottleneck found

sage crag
#

erfi

olive sable
#

Im beginning to think they should label cable versions

fast pagoda
#

good caables (and many meh ones) do

hollow spruce
#

What do u prefer gpmi or displayport cable
If it is available?

olive sable
#

Mine just say "high speed hdmi cable awm style"

fast pagoda
#

kek

#

id use gpmi

#

if it existed here

olive sable
sage crag
#

nya

fast pagoda
#

why am i still awake

#

bed time

olive sable
#

The weirdest part of this tv has to be the gap btween the lcd and the backlight

nocturne olive
olive sable
#

Well, they all day that

#

Even the hdmi 2.1 cables

nocturne olive
#

I have an "ultra-high-speed" cable for my HDMI needs

#

That is actually fast enough for 4K60

olive sable
#

If i ever had ants here this tv would be doomed

#

Ignore the finger on microphone sounds lmao, i should have edited that out

rigid snow
#

there's like almost 1cm between the lcd layer and the backlight

olive sable
#

Its not too bad if you dont get close, but for 4 player mario kart its kinda bad

#

Anyways i have decided i will use 4k60 10bit 422, and i will forsake arc in favour for toslink

rigid snow
#

my mousepad's rubber layer disintegrated into my desk, great

#

now my desk is stained with black goo

olive sable
#

Guess ill do 8 bit

opaque wharf
#

Labelling cable should be done for USB-C too

olive sable
#

True

#

Wait a minute, this avr has multiple hdmi out.
I can just set one to the 10 bit port and 1 to the hdcp port

#

I would use a 3rd one for arc but im running out of cables here

sage crag
#

cabol

opaque wharf
#

I forgot that gr/ml is the same as kg/l

#

A sign for more coffee

opaque sigil
#

i'd judge you for having coffee at midnight but that's when i have mine too

#

i lost like an hour today trying to debug why arch didn't like my campus wifi and the reason was there was a space after the path for the certificate neuroCry

#

why are you making me pick a path through dolphin and then just add a random space

rigid snow
opaque wharf
#

Path sanitization is hard, please understand

trim valve
olive sable
#

Ok i set up:
4k60, 10bit, 4:2:2, no hdcp2.2
4k30, 8bit, RGB, yes hdcp2.2

#

This is the way its gonna have to be till i get a better tv

#

Netflix is 24fps anyways i think

sage crag
#

@wind merlin @tender river lisp

wind merlin
sage crag
#

you may have to wait a while

wind merlin
#

minyangasp neuro hair water bucket

sage crag
#

elie

olive sable
#

Hdcp is making me go insane

opaque sigil
#

valid honestly

amber fractal
#

Good luck (keeping your sanity)

olive sable
#

I figured out i can do netflix 4k if i dont use the avr

#

But that means no dolby atmos

tender river
sage crag
wind merlin
sage crag
#

ok now you two talk about lisps

tender river
#

lisp mhm

#

parentheses

wind merlin
#

I got automodded for using a bunch of parentheses miniHmm

tender river
#

om

stark needle
wind merlin
#

Literally 1984

tender river
#

automod can only use regex

#

they should update it to support arbitrary context free grammers smh

wind merlin
#

Anyways uh
I've gone completely sane following the make a lisp guide neuroDeadge

tender river
wind merlin
#

Korone (konii) told me mhm

#

Very cool evilHyperYay

tender river
wind merlin
tender river
#

its not a bad idea

#

but when you write a gc in rust you have to use indices instead of pointers

#

indices into a global arena that you pass mutably everywhere

wind merlin
#

I don't think I'll add a gc
I just want to get it over with and start working on something else

tender river
#

mark and sweep is super easy to implement but understandable honestly

wind merlin
#

Me rn
So sleepy

tender river
#

you can just sleep
probably

wind merlin
#

Yeah I could but i still want to make some more progress on my lisp
That or set up nvim to have stuff for elixir

wind merlin
tender river
#

yes yes you should listen to me (i have never used a single BEAM language in my life)

wind merlin
tender river
wind merlin
#

Yk what then
I won't check it out evilGiggle

wind merlin
#

AAA the morbs

#

Welp

sage crag
#

erf

wind merlin
#

I'm being bullied neuroDeadge

tender river
#

you sshouldnt disregard my opinions just like that, they hold a lot of weight as an aspiring cult leader

wind merlin
rigid snow
#

oom?? i have 32gb of ram what the fuck is vscode doing

tender river
opaque sigil
#

running out of memory neuroPogHD

tender river
#

default vscode lsps are written in js i wonder if they're hosted in the same process or externally

wind merlin
#

miniInspect did you try including your whole project root directory + build files in your rust project using include_bytes?

opaque sigil
#

they're external processes usually

#

i sure love clangd eating like 16gb of my memory neuroPogHD

tender river
#

awa i suppose vscode would crash with oom even if some other process is the one that caused the oom

rigid snow
#

with two installed packages

wind merlin
opaque sigil
#

the clients are in js

tender river
#

it does but microsoft wrote some for json and html and stuff

wind merlin
rigid snow
#

they also wrote the js one neuroTroll

tender river
#

erf

#

i'll believe microsoft docs

#

this could be a big mistake

#

but luckily an inconsequential one

opaque sigil
#

i wish people used json schema files more

rigid snow
rare bramble
sage crag
# sage crag
poll_question_text

*nub

victor_answer_votes

6

total_votes

7

victor_answer_id

1

victor_answer_text

e

victor_answer_emoji_id

1163912230585237655

victor_answer_emoji_name

enub

tender river
#

e

sage crag
#

nub

tender river
#

too many pink usernames nesusing

#

i didnt even notice anyone past konii

opaque wharf
tender river
#

mpv evilStare

#

i actually made my own config that completely replaces the default mpv config

#

just so i can refer to it if i forgot some keybindings

astral trellis
tender river
#

just said

opaque wharf
#

The unholy email regex

olive sable
#

I have received my first noise complaint neurOMEGALUL

tender river
olive sable
#

When we watched starwars it was way louder so idk why now

stray dragon
#

i guess they liked starwars

olive sable
#

i also asked my parents to install soundproofing and they said no, and now they gonna complain to me???

opaque wharf
#

I give the root partition 128 GB, and 50% of it is pacman cache evilWheeze

tender river
#

i give the root partition 2gb

#

and 268kb of it is used

opaque wharf
#

Dang, that's one slim system

tender river
#

no its just a slim root

nocturne olive
#

I gave root a 4TB drive

rigid snow
olive sable
#

ye idk

#

i think the windows here just arent very soundproof

rigid snow
#

and i live in a building, like one with flats

#

like i have neighbours above, below, and to the sides

olive sable
#

the theatre room has 1.5m*10m of windows, so a lot of noise escapes fro there

rigid snow
olive sable
#

im looking at detroit become human again. and it literaly does have soft shadows

#

this is soft shadows

rigid snow
#

how is soft shadows a good thing

olive sable
#

it depends

#

imo they're not great, but its better than aliased shadows

#

and for materials like glass it does make sense to have the edges of the non-glass shadow softer

#

afaik all techniques to do softshadows are more expensive than just throwing the actual shadow as calculated onto the scene, so its both using performance and not even that good looking

rigid snow
#

they should blur depending on the ratio of how far the subject is to the light source and to the surface

#

it'll get out of hand quickly with how much you'll need to blur but

#

you can probably make something alright looking while capping

#

that's what a 5090 is for mhm

#

1080p realistic shadow 60fps gaming

olive sable
#

the technique im most familiar with does have higher resolution shadows closer to the lightsource

rigid snow
#

well that's the reverse of what i'm saying

#

exact opposite

silent cloak
#

Just bake smh

olive sable
#

nah

rigid snow
silent cloak
#

🔥

olive sable
#

baking is good for static elements of the scene, but you wouldnt want to be caught alive with your main character baked

rigid snow
olive sable
silent cloak
#

Adds more options to the table considering you don't need to do it real-time for everything

olive sable
silent cloak
#

(Unless ur a modern day unreal engine dev)

olive sable
#

i havent dont lighting in probably a year

olive sable
rigid snow
silent cloak
#

Based

#

There is a Minecraft optimization mod that just removes light calculations

rigid snow
olive sable
rigid snow
olive sable
#

its not really that you choose to render at higher res, that jsut happens with further stuff bein smaller

#

when doing non-parallel

rigid snow
#

right

olive sable
rigid snow
silent cloak
rigid snow
olive sable
olive sable
rigid snow
#

but it wouldn't be since its ortho

#

or am i missing something

olive sable
#

that is if you render it ortho yes

#

hmmmm

#

now thats interesting

silent cloak
olive sable
#

inverse square low has very litle effect this far away from the sun no?

#

since the rays are practicly already as good as parallel

rigid snow
#

it's basically because the sun is a disk. imagine you're the floor, the further away you are from the thing that blocks the sun the more of the sun you see at a time

olive sable
#

its cuz the sun is big in width NeurOhISee the blur on the left side is cuz only light from the left side is able to reach it

rigid snow
#

yeah basically what i said, the object partially blocks it

silent cloak
olive sable
#

nah bro has the scientific name ready

silent cloak
#

People mostly know about umbra

#

Because it sounds cool

rigid snow
#

i dropped physics when optics started. probably for the better. the fuck is a penumbra sounds made up

olive sable
#

so in my current version of the engine i calculate basically only the umbra, and then fake the rest by multi-sampling a 3x3 grid around the selected pixel.
multi sampling is expensive tho so it would be good to not fake it in place for a cheaper option

olive sable
#

if it was just 2 single lightsources you could render them both and do an OR, but the sun is basicly made of lightsources

#

rendering 2 would be cheap cuz you can do them in parallel btw, but 256 would be expensive

silent cloak
#

Raytracing or similar pathing is probably as close as u could get regarding accuracy

#

There are guaranteed to be approximations to get it cheaper though out there

olive sable
#

realt-time raytracing ussualy does the opposite approach of going from the eye to the light-source and averaging those results

silent cloak
#

Uncharted 4 had some good white pages about getting an approximation of the effect

#

Using capsule or cone based shadows

fast pagoda
#

are shadows 2d ? how about when in the shape of a triangle rendered at 100k fps

olive sable
#

it depends

#

for what im using they are technically 2D renders, but the image data itself stores depth from the camera as the colour brightness, so in a way its 3D

silent cloak
#

People have made them in other engines

olive sable
hoary lion
#

Awa

rough bloom
#

awa

tender river
#

awa ✅

icy mango
#

awa

stray dragon
#

awa

hollow spruce
#

....
.....
.......
..........
..............

Output

hollow spruce
#

Bye meet Tommorow

rigid snow
rigid snow
#

yall will be fine

#

i sideload on ios

#

it's not hard

tender river
#

i will indeed be fine

rigid snow
#

you don't even use android

tender river
uneven pulsar
#

awa

tender river
#

glueless

rigid snow
#

glueful

stark needle
#

Chat guess where i appliedevilDIESOFCRINGE

rigid snow
#

fluent design language

#

a certain software corporation headquartered in redmond wa

rigid snow
#

bwaashington

nocturne olive
#

I just made NS work on GPU again yay

stark needle
#

🙏 😭

tight tinsel
#

"he says hes going to choose a white pc case bcs black gonna absorb more heat and overheat more"

#

erm...

opaque sigil
rigid snow
#

well if it's in the sun it will

#

it's not entirely stupid