#🔌│tech

1 messages · Page 1102 of 1

fair gull
#

sounds like smth people would complain about

#

like my customers

reef patrol
#

No. MacOS is different enough from "Linux" today that you'd need significant recoding of it to make it run, let alone well.

#

eventfd syscall is Linux-specific, without good alternative on macOS
Apple does not support Vulkan, which is needed for DXVK
Apple deprecated OpenGL support, which is needed for WineD3D
macOS is missing support for Python 3 OOTB

#

And that's ignoring M1 models.

fair gull
#

vulkan is supported on mac

reef patrol
#

Year old reddit thread. 😄

fair gull
#

theres a metal thingy for vulkan

reef patrol
#

I'm going to bet you still need to recode the vulkan part to address metal specifically though.

fair gull
#

yep

#

while macos has its roots in a unix system it doesnt use linux kernel stuff like a normal distro

#

darwin kernel is mostly inhouse stuff tho

empty wren
#

Good for animation too, works almost out the box with Garry's mod

reef patrol
#

Anyhow - Nothing inherently preventing Proton from working on a Mac (except not having a lot of GPU power), but you'd need a separate fork and a dedicated amount of programming going into it to port it over and address any differences and performance loss/gains possible.

crisp granite
#

and Kubuntu is stuck at 33% installed

#

has been for half an hour at this point

wheat plume
#

O.o

crisp granite
#

fuckin finally

wheat plume
#

whats in the terminal output?

crisp granite
#

username and password time

wheat plume
#

aha

#

have you tried to connect to internet yet?

crisp granite
#

my name is ||double redacted||

empty wren
crisp granite
#

there, name, username, password and PC name done

#

gotta wait for that to load

ashen spindle
#

they are all the same word on my linux install dogekek even root password

reef patrol
#

enough 😄

#

Still waiting for M1 based systems to accept a 3090 external enclosure and that sort of thing.

crisp granite
#

I hate to break it to you, but the best way to game on an M1 Mac is parallels and win10 for arm

#

well, unless we're talking native mac releases

reef patrol
#

BACK IN MY DAY ALL MACS WERE GAMING MACHINES. REEEEEE...ZZZZZZ

crisp granite
#

calm your tits, duck man

empty wren
#

To be fair were they not at first

crisp granite
#

all macs can run metro exodus

#

which is like

#

the best game

#

ever

#

everererrest

#

yes

empty wren
#

I thought it was fallout new vegas

crisp granite
#

...

#

yes

#

which is why parallels is a must

fair gull
#

not the best

#

but also not completely garbage

crisp granite
#

win10 for ARM, then FNV

fair gull
#

for an arm based soc

#

running through a vm

reef patrol
#

Anyway - My point remains. As long as the M1 architecture is stuck with whatever is integrated with no ability to slot in a typical PCI-E GPU, then something like "Proton" isn't going to be a particularly high-interest project.

shadow minnow
fair gull
#

no bexin

#

compared to actual full gpus

empty wren
fair gull
#

the m1 gpu still eats dirt

shadow minnow
#

Sure but the thing is

crisp granite
#

that energy efficiency

shadow minnow
#

Many people have pretty bad GPUs or even iGPUs on other OS

crisp granite
#

could play all of metro exodus and DLC on a single charge

reef patrol
crisp granite
#

that's unheard of for gaming laptops

shadow minnow
#

And also imo m1 max may be better than GPU of average user though idk

fair gull
ashen spindle
#

yeah because it's also twice the price

#

so whats your point

fair gull
#

literally the bottom of the chart

shadow minnow
#

Yeah not normal m1

fair gull
#

bexin i mean the worst gpu in there

ashen spindle
#

you dont need to come out and point out the cases where m1 is good everytime someone shows a part where the m1 is bad lmao

fair gull
#

is better than m1

crisp granite
#

#waitform2

#

#bluemacbook

fair gull
#

no one says m1 isnt impressive

#

no one says it cant replace gpus decently

#

it just cant replace gaming gpus

reef patrol
shadow minnow
#

Yeah 😦

reef patrol
#

Or rather - It isn't atm.

shadow minnow
# shadow minnow Yeah 😦

Since OpenGL older support gone and can’t run most graphical languages, so can’t run many games on it 😦

crisp granite
#

tbh, an M-series mac seems like a solid alternative to a steam deck or other similar devices if you need to get shit done beyond gaming

shadow minnow
#

Unless you want to play one of most unsupported games dogekek

crisp granite
#

Bexin

#

Parallels

shadow minnow
#

Or use seus shaders with mc

crisp granite
#

win10 for ARM

#

dingus

shadow minnow
crisp granite
#

yep

#

better than nothing

shadow minnow
#

Sure

crisp granite
#

besides

#

Metro exodus got a native mac port

#

that's poggers

shadow minnow
#

But as soon as game is partially 32 bit
Or runs sth different than newer OpenGL
Can’t run

shadow minnow
fair gull
#

due to being arm based the efficiency of encoding and compiling is just through the roof

crisp granite
shadow minnow
#

Wait now I switched sides being the one criticizing m1 the most? dogekek

crisp granite
#

I do suggest you play it

#

pinch and I love it

#

best game

empty wren
#

Dlcs are great too

crisp granite
#

yus

#

Sam's Story especially

shadow minnow
#

But I can’t even run Rome 2 😦

crisp granite
#

although The Two Colonels was great as well

shadow minnow
#

I can play singleplayer battles but no campaign or multiplier 😦

#

Also no mc shaders through parallels either

#

Tbf atm don’t even have parallels since not paying for them since only game it could run was pc building sim from what I tried

empty wren
#

Building PCs on a macintoshmm

shadow minnow
#

Yeah felt like a war crime dogekek

wheat plume
#

oh wow, it found all the OSTs for the games i have installed, wtf

wheat plume
#

Interesting way to do an if statement

#

in qml

reef tundra
#

Have you ever heard about Conditional (ternary) operator?

wheat plume
#

no...

ashen spindle
#

that is nothing special and used in many languages for years

wheat plume
#

one line if...

#

this is very neat

reef tundra
#

In computer science, a ternary operator is an operator that takes three arguments.[1]

#

In computer science, a ternary operator is an operator that takes three arguments (or operands).[1] The arguments and result can be of different types. Many programming languages that use C-like syntax[4] feature a ternary operator, ?:, which defines a conditional expression. In some languages, this operator is referred to as the conditional operator.

In Python, the ternary conditional operator reads x if C else y. Python also supports ternary operations called array slicing, e.g. a[b:c] return an array where the first element is a[b] and last element is a[c-1].[5] OCaml expressions provide ternary operations against records, arrays, and strings: a.[b]<-c would mean the string a where index b has value c.[6]

The multiply–accumulate operation is another ternary operator.

Another example of a ternary operator is between, as used in SQL.

The Icon programming language has a "to-by" ternary operator: the expression 1 to 10 by 2 generates the odd integers from 1 through 9.

wheat plume
#

ooo C#

reef tundra
#

even fortran has it

wheat plume
#

TIL of this operator AND that its possible to do one line functions like this GetWeatherDisplay()

#

I WISH I KNEW THIS SHIT SOONER
SO NICE

ashen spindle
#

if you use VS syntax highlights it will show when you can refactor code to shorter statements

#

but syntactic sugar is just neat and should come after you know how to write code well and more importantly well readable

crimson wigeon
#

Nah obviously when you learn a new neat thing you have to apply it everywhere even when it don't make sense

fair gull
#

thats why i use ternaries exclusevily insread of long switch statements

ashen spindle
#

ok thats an actual crime to do that over switch expressions lmao

crimson wigeon
#

BuT i WaS tOlD sWiTcHeS aRe BaD

reef patrol
fair gull
ashen spindle
#

if you hate yourself go for it lmao

fair gull
#

i mean u can break ternaries up into lines

ashen spindle
#

yes but

fair gull
#

yikes

#

way too clean

#

also

#

starting days on sunday

#

what are u

#

murican?

ashen spindle
#

not me just a google image

#

also pattern matching in switches

crimson wigeon
#

Oh no that's too much fancy crap

ashen spindle
#

looks a bit weird there but has some very nice things you can do with it for clean cases

fair gull
#

thats what she said

hallow bramble
#

I'll always simp for C#

abstract cloud
#

whats the minimum actuation point for the wooting two he

reef patrol
# abstract cloud whats the minimum actuation point for the wooting two he

https://wooting.io/wooting_two_he

Excellent question! Scroll down and read/watch

A full-size gaming keyboard with magnet Lekker switches for analog input on each key. Adjust you actuation point from 0.1 to 4.0mm, experience analog movement in games, achieve the fastest possible input speed, and active developers to back it all up. This is the future of pc keyboards for gaming.

wheat plume
#

is the green meant to be off alignment on purpose?

empty wren
reef tundra
crisp granite
#

unfortunately yes

wheat plume
#

I love his reaction to pinch to zoom xd

empty wren
#

Rip battery

empty wren
#

Wow

empty wren
#

Why rip house city and country

crisp granite
reef tundra
empty wren
#

Probably two batteries

#

Might have a bit of graphene

#

And I believe the conversion happens at the brick

empty wren
#

Phone will last probably 1.5years if not less

#

Lol

#

100w

#

Was tested to be fine for like 2-3 years

#

Well again split batteries

#

Ect

reef tundra
#

That is not anywhere close to the current limits of batteries

empty wren
#

Just wish graphene batteries were abundant

#

Thinner

#

And more energy dense

#

Though at the very least good temperature managment

astral haven
#

everyone wishes for better batteries

reef tundra
#

More energy density = more angry pixies during the bonfire

astral haven
#

foom

empty wren
#

You could encase them in fire retardant

#

I would still expect a bit of damage

astral haven
#

i actually think eventually they will give up on making safe batteries and move to just containing them

reef tundra
#

Untill you get them exploding instead of spitting flames

empty wren
#

They are pretty safe

reef tundra
#

Pressure will build up

empty wren
#

If you handle them correctly

reef tundra
#

Eventually any material will yield

empty wren
#

Note 7 GTA mod

astral haven
empty wren
#

Screw tenor

crisp granite
#

Mage

#

you know what

empty wren
crisp granite
#

I'm pulling out all the stops

#

BOTH of your moms are extremely homosexual

#

and with that

#

I have won the argument

empty wren
#

Sorry but your argument is going incorrect

reef tundra
astral haven
#

nah

reef tundra
#

So you want to make the batteries also be able to hold high pressure gasses at thousands of bar at thousands of degrees dogekek goodluck

empty wren
#

There is a solution

#

No battery

reef tundra
#

Use anything other than sintered-plate nickel-cadmium cellsmm

astral haven
reef tundra
#

Fire has a poor reputation to give a shit once it is going

astral haven
#

again

#

containment

reef tundra
#

Same with li-ion batteries mm

#

Recycle it then

astral haven
#

lithium ion batteries generate their own gas

#

disposal is alot harder than recycling

#

recycling is the easy part
getting the material to the recycling center is the issue

#

the reason this is a problem is because someone has to pay for it

#

the recycling process is as effective as you want

#

you can get 100% its just not usually worth the money

#

lithium batteries usually can get all the lithium and cobalt back because it is worth
the problem is it costs alot to set up those facilities

#

and its rather dangerous to ship the stuff around lol

#

there already are (if you mean subsidies)

reef tundra
#

Recycling processes today recover approximately 25% to 96% of the materials of a lithium-ion battery cell

astral haven
#

but 100% of the lithium or cobalt

reef tundra
#

Pretty much everything except lithium will be extracted

#

Mined lithium is 5x cheaper

#

That is why

astral haven
#

the electrolyte is almost always considered disposable

reef tundra
#

Main drive for bothering to even recycle them in the first place is for the cobalt

astral haven
#

yup

#

but lithium is still rare earth technically

#

and while you are doing the chemistry to break off the cobalt, you have to extract the lithium anyways

reef tundra
#

Way to incentive recycling would be to subsidise the process or put heavy added taxes to mined lithium. 🤷 Atleast if we want to make the market prioritise recycling over mining

astral haven
#

yup

#

but that aint gonna happen

reef tundra
#

But the economy duh

#

Why don't the individuals go out there and individually solve the problem themselves as their personal responsibility. mm Marketing and financial will love this idea.

fair gull
#

amd or intel for gaming rn

zenith gale
#

depends

#

do you have a System already?

fair gull
#

oh no its a system for a customer but demand was non existant for over a year so i kinda didnt keep up

#

im eying a i5 or i7 of 12th gen

#

or a new amd ryzen 7

zenith gale
#

it depends, if you are going for intel i recommend going with ddr5 wich costs more but you dont need to. Also because of big.little some games do have issues. also does it consume a little bit more energy thus is harder to cool

#

but intel has Performance advantages

#

ddr5 does not majorly increases Performance

#

please correct me when im wrong

#

xd

reef tundra
#

AMD has way better performance to joules. But absolute best performace at any costs was still intel. But last time I looked into this was quite a while ago.

zenith gale
#

its something, i would agree on

halcyon moss
#

dont forget to add to motherboard to the costs

fair gull
#

ngl i completely forgot to check if mobo is ddr5 or 4

#

almost send out an incompatible combo

zenith gale
#

discord saved the World again

halcyon moss
#

hah

#

and also check if the mem is on the qualified list :p

fair gull
#

the ddr4 mem?

reef tundra
#

Doesnt it have its own keyed slot like ddr2,ddr3,ddr4 had?

fair gull
#

i just went with a safe ddr4 3000 combo

#

unless those arent supported by intel cpus

#

and or mobos

halcyon moss
#

thats why tyou check the list :p
i thought i bought a "safe option" for my laptop. it did not work

zenith gale
#

@reef tundra yes, but some mobos/cpus Support only lower speeds

wheat plume
#

Why it cut off the rest of the message?

reef tundra
#

80 character limit?

halcyon moss
#

lol @ really long

#

without code..

wheat plume
#

buffer size was 10

#

its now 200

halcyon moss
#

ah, you worked around the problem, but still have it :p

wheat plume
#

wut

reef tundra
#

buffer size of 10?

#

wut

wheat plume
halcyon moss
#

so tiny

reef tundra
#

mm add an extra byte for good luck

wheat plume
#

xd

crimson wigeon
#

Nah just casually allocate gigabytes in the stack what would possibly go wrong

#

You gotta be able to handle anything!

halcyon moss
#

im not saying that, but you could atleast fit a whole tcp packet in there :p

wheat plume
#

wow! so much data!

reef tundra
#

NACK

fair gull
#

buffersize 2e128 thanks

reef tundra
#

0xDEAD666B

halcyon moss
#

DEADBEEF

crimson wigeon
#

0xBADF00D

reef tundra
#

0xAAAAAAAAAAAAAAAAAAAAAAAAA

pale sigil
#

must be a large update cos its taking ages

reef patrol
#

Or just a lot of files getting backed up in case it fucks it up. dogekek

young pecan
pale sigil
#

only on major versions it does

#

it makes a copy of the OS

young pecan
#

Depends on the update specifically.

pale sigil
#

major version

wheat plume
#

Deleted 32GB of "Previous Windows Installs" Last night

young pecan
#

A lot of the time it’ll copy the files it’s changing and revert if anything fails during. Even with big updates.

#

Had a 7 gig update once that did that. Very impressive.

reef patrol
#

We're not talking a complete mirror of course.

young pecan
#

I should specify full mirrors. LUL

#

Imagine if every update did that.

#

Pain.

wheat plume
#

Wow, such useful.....

#

what args??!!??

halcyon moss
#

good error messages are hard

reef tundra
#

error: there is an error

#

Returned 0

crimson wigeon
#

Oops!

pale sigil
#

damn thatz pretty good

#

ipad is quite old

#

7+ years old

#

consdering mine is like 600+

#

not really

timid chasm
#

my surface pro 7 has...

#

8

#

oh no that was my old report

#

it's up to 11 now my bad

pale sigil
#

Hurts my soul

reef tundra
#

osiris is sus mm

shadow minnow
#

Used to have the same thing before they added auto categories lul

cursive summit
misty saffron
#

you simply cannot be this dumb

#

i refuse to believe people don’t realize you don’t need a blender

wheat plume
wheat plume
#

nice

ashen spindle
#

oh no, she has started to comment on her own posts

fair gull
#

that not how it works?

#

shit

reef tundra
#

what are you refering to with 'that'

fair gull
#

the commenting on ur own posts

#

like lana did

wheat plume
#

the image ddnt send

fair gull
#

nice excuse

wheat plume
#

retroLite!

fair gull
#

looks like a switch lite

wheat plume
#

yep!

fair gull
#

so wheres the special thing

wheat plume
#

but its a raspberry Pi compute model 4

fair gull
#

oh noe

#

its garbage then

ashen spindle
#

someone explain why I have to enter my password when I navigate to a folder in ubuntu

#

when I go there from a subfolder lmao

#

so I was already in a deeper access level

fair gull
#

so

ashen spindle
#

downloads/folder1/folder2

wheat plume
fair gull
#

the rundown is that its a retro console copying the worst control layout

#

and having a kinda shit screen

wheat plume
fair gull
#

gg

ashen spindle
#

mind you I did have to enter pw to open up folder2 and then it asked it again when I open folder1 lmao

wheat plume
#

did you manually create that user profile?

ashen spindle
#

I did it when I installed the OS

fair gull
#

easy fix rm -rf / --no-preserve-root

wheat plume
#

lol

ashen spindle
#

after I confirm manually building and fixing this .so file is fixing my issues I will yeet the os from my laptop

#

and till then I wont enter a single command more than I need before it fucks up something else

fair gull
#

ah my command wont fuck anything up

#

it yeets the os

ashen spindle
#

still can't believe updating a library breaks it to the point I need to do a clean install

#

though I imagine I have to be lucky for it to work as the folder structure I got after manually compiling differs from the one they offer for download

#

ffs why is this set up so horribly

fair gull
#

u can do it quin

#

i believe in ya

ashen spindle
#

25th confirmed to be the date the first batches of steam deck sell

#

can't wait to see the scalped prices dogekek

crimson wigeon
#

Oh no

ashen spindle
#

or that you can replace the storage for cheaper than the offering of valve and sell it even better

crimson wigeon
#

Or the exclusive virtual keyboard theme!!

reef tundra
#

You gotta put in something when marketing comes asking mm

#

Depends on definitions but it might be deflation then.

#

In any case, "$250" mm

shadow minnow
#

Ngl for a 250$ card such a price increase really sucks

fair gull
#

whats the easiest way to aquire polygon

#

the crypto

ashen spindle
#

get it on binance or coinbase probably the easiest

crisp granite
#

well...

#

with robinhood, the way it actually works is not how people expect

reef tundra
#

Fun when the marketing uses terms like security and decentralisation dogekek

ashen spindle
#

so you are saying crypto feel goofy then list bad side of stock trading? bit confusing

crisp granite
#

crypto is especially stupid

#

because...well

#

no safeguards

reef tundra
#

Atleast the authorities can completely freeze the markets to prevent the market from shitting itself

crisp granite
#

^^

reef tundra
#

Which it tends to do. A LOT

crisp granite
#

UMIR ftw

ashen spindle
#

yet it's easier to cut out middleman and even then the cuts are usually lower for crypto?

fair gull
#

like

#

i dont really care

#

im just dumping some money

#

and prob forgetting for like years

crisp granite
#

no...Tony, buy stock

#

don't be stupid and buy the latest shitcoin

reef tundra
#

mm Remember that those are the exception the rule not the trend

#

someone will have to pay 60k for a bitcoin and just sit with it

ashen spindle
#

imo binance is the easiest to use for your usecase

#

I'm not saying it has no issues and is perfect so by all means suggest him something else that isn't finding some random person to sell it to him privately

#

I think if the point is to put money and trade it likely gamble and take another look at it in 2 years so it just sits it doesnt matter if your bank or whoever knows about it easily

#

not like he's going to dump 6 digit sums

#

because thats only the point if you want to use it as alternative and not just view it as stocks with extreme swings

cursive summit
#

I see nobody posted this yet

fair gull
#

good

cursive summit
#

Steam Deck's finally on the horizon then

fair gull
#

give silicon valley your address

cursive summit
#

Don't think I've bought anything on steam in my years of using steam

#

I mostly redeem cheap keys lul

ashen spindle
#

didn't care when I made enough from TF2 golden weapons to pay for almost my entire library dogekek

#

sadly never got a golden pan, no instant 10k rip

#

guess at what point the intel earnings report came out dogekek

cursive summit
#

Ehh after market closes those don't matter much

#

Falls are normal, will go back up

ashen spindle
#

except if the earnings reports are good they go up

fair gull
#

guess coinbase scammed me

cursive summit
crimson wigeon
#

Shock

ashen spindle
#

man it's always making me rage when I hear how shit the mic quality is during earnings calls

reef patrol
ashen spindle
#

cant make billions but cant spend 10$ for a decent mic

reef tundra
fair gull
ashen spindle
#

mh yes, doing raids while listening to papa gelsingers marketing talk that dances around the fact that intel is losing marketshare feelsgood

zenith gale
#

can imagine that sound quality is going to die soon sins its analog

cursive summit
#

@young pecan

#

I didn't know Chord made a mojo 2 lul

#

Damn where's the star wars boy @Ares

pale sigil
#

@neat oriole

neat oriole
#

Oh shit discord is back

#

Chord whack

cursive summit
#

Kinda weird but okay

ashen spindle
#

that is an article of someone who talks about stuff they dont understand

#

and it's not even complicated

#

aka it's completely false

#

tldr they are buying next gen EUV machines and the author has no clue whats going on and thinks its just the same tech that tsmc (and intel!) already use

#

didn't even read most of it bc it's just embarassing to see

astral haven
#

heh
1.4m iops in windows

misty saffron
#

so um

#

has anyone had to deal with this

#

i kinda need this pc

#

problem solved

#

found the one i removed from new motherboard

misty saffron
#

i need tech support

#

i think i don’t have a bootloader on my m.2 drive

#

it detects it

#

but no windows boot manager

#

@reef patrol hello duck

#

what do

#

yes it was working in my main pc

#

either there’s a magic switch in bios that’ll make it just work or i need a windows 11 usb

reef patrol
misty saffron
wheat plume
#

Help only appears if you hover over it with the cursor.....

fair gull
#

not mbr

reef patrol
#

On NVME??

fair gull
#

i mean uefi usually puts the bootloader onto the same disk as the win install

#

the only thing that really likes to split up is an mbr install

#

at least from a few hundred installs in my personal experience

reef patrol
fair gull
#

personally havent encountered it

#

not like creating a boot partition is hard

#

so worst case u make a win10/11 boot stick and just manually make one

ashen spindle
#

another day another linux annoyance

#

gotta find a way to figure out what OpenGL version I have on this headless server

fair gull
#

opengl on a hedless machine

ashen spindle
#

yes I dont need it but the plugin I need has a reference regardless of what is selected so it wont load if it is missing a feature that starts in opengl 4.3

#

its not truly headless, it's a server running on an APU just no direct video output

halcyon moss
#

Hello, the day is almost here! On February 25th, we will be sending out the first batch of order emails to reservation holders. Customers will have 3 days (72 hours) from receipt of their order email to make their purchase, before their reservation is released to the next person in the queue. The first units will be on their way to customers sta...

#

funny that this is a "game" according to the url

fair gull
#

repost

fair gull
#

altho i think officially its a general lack of monitor need as in is controlled over the network

wheat plume
#

So, the email to pay for it will arrive on Feb 22nd?

#

Or is the 25th the start of the 72 hour payment period?

ashen spindle
#

read the first two sentences of the link

wheat plume
#

They are in order.... what

#

so one customer every 3 days...

#

at most, sooner if they pay sooner

ashen spindle
#

what

wheat plume
#

Customers will have 3 days (72 hours) from receipt of their order email to make their purchase, before their reservation is released to the next person in the queue

ashen spindle
#

how do you read one customer after another from that

#

obviously that means for the entire stock they have at once

#

and not one by one

fair gull
#

everyome with a reservation in the batch has 72hrs to pay

#

the unpaid ones get kicked and x from the next batch get the same prompt

#

rinse and repeat until theres no units left in the reservation

wheat plume
#

oh

fair gull
#

idk how u read everyone 1 by 1 from that link

wheat plume
#

so, if a lot of people dont pay, its possible to be moved to the batch before you?

fair gull
#

yes

wheat plume
#

oo

fair gull
#

and if u cant pay cause u planned for a later date

#

ure back of the line again

wheat plume
#

Nah, I can pay at any time currently

fair gull
#

just explaining

wheat plume
#

key word is currently

#

;-;

solar hinge
#

the first part of my watercooling order is here

wheat plume
#

Only fans!

solar hinge
#

3 out of 12

#

90 euro per 3

wheat plume
#

Only some fans!

#

🤔 wtf

solar hinge
#

you can see a radiator as well

wheat plume
#

360 for 12 fans....

#

boi

#

the sound mixer is no longer a small popup from the taskbar .-.

wheat plume
#

yep

#

it just opens settings

#

This writer, meanwhile, recalls a 1990's lecturer who thought all GUIs were the devil's work.

#

LOL

misty saffron
#

most guis are devil’s work

shadow minnow
solar hinge
reef patrol
misty saffron
solar hinge
shadow minnow
#

Why not get XE?

solar hinge
#

space

shadow minnow
#

Also are you gonna be doing double fans or?

solar hinge
#

xe is 60mm thick

#

no 😄

#

i'm not dripping in money

shadow minnow
#

If you really wanted to you can get two XEs into even fractal design s2, just barely dogekek

solar hinge
#

but i'm lazy

#

i have corsair 7000D

shadow minnow
solar hinge
#

and i still want it to be easy to do something in the case as well 😛

#

3 top, 4 front, 4 side, 1 back

shadow minnow
#

With s2 despite it looking small you can do one sided xe in front and even 2 sided XE on top.
But with XE in front and PE on top already looks small dogekek

#

Like 5 mm between rads

#

Or 3

#

But it just works

solar hinge
#

i might, and it's a big might, add a slim 480mm to the side , but then the fans don't fit on it anymore so, it would be passive

shadow minnow
#

Hmm that would be kinda waste of money imo tbh

solar hinge
#

with the amount of air flow, it should still be ok

ashen spindle
#

new space heater go brrrr

wheat plume
#

is kingpin the model name?

reef patrol
#

Sub-brand name.

#

Series?

#

EVGA is the company.

wheat plume
#

so like how poco is to xiaomi?

reef patrol
#

More like a Samsung GALAXY

#

Kingpin is basically cherry picked, super awesome chips that are sold as cards that overclock REALLY well.

fair gull
#

its a series of cards

fair gull
#

kingpin is basically hired by evga afaik to make bomb ass cards for OC

wheat plume
#

o...a person

fair gull
#

hes an overclocker and name giver of those cards

#

but as mansen said basically cherry picked for best oc

wheat plume
#

neat!

reef patrol
reef patrol
#

Like how ASRock keeps using Fatality's name on their boards, even though the guy was a Quake 3 guy (I think?)

ashen spindle
#

bit different, asrock got the naming right, evga actualyl employ Vince

#

so even if he doesnt do it all himself he's still in charge of it

reef patrol
#

Potato potato. They're using him for the name more than his actual work.

ashen spindle
#

I mean he's still the one doing the testing on it

fair gull
ashen spindle
#

as of the 3090 KP he was still hands on with the product so I doubt that changed since then

fair gull
#

and multiple thousands on gpus

#

according to selfposted pictures

crimson wigeon
#

Exactly, not dripping in money, but swimming in money!

ashen spindle
solar hinge
#

lies

#

it's more like 750 and i don't have the stuff for my gpu yet

shadow minnow
#

More than 500€ dogekek

solar hinge
fair gull
#

yea mr im not dripping in money

solar hinge
#

to clarify, this is money that i had been saving already for a couple of years :P, and i stuff my vacation money + money that i was saving for holding a wedding (both being postponed still so yeah :P)

#

this is what i currently have - and now the attachment is removed 😛

crisp granite
#

blin

crisp granite
#

mansen

#

I'm just...

solar hinge
crisp granite
#

trying to process how one has 7k€ to drop on hardware like that

#

then again

reef patrol
#

Is russian humor, probably.

crisp granite
#

if that's vacation pay and rainy day funds saved up over a couple of years

#

makes a lot of sense

crisp granite
#

first Cal and now you

#

believing all peoples east of germany are russians

solar hinge
#

same here, in crypto, stocks and also trying to save more again 😄

#

so what do you invest into?

crisp granite
#

🤨

#

fleimi

#

uh

solar hinge
#

socks?

crisp granite
#

bank stocks

#

those

#

they're pretty solid

#

dividends and pretty much straight growth

solar hinge
#

those are also stocks :p

crisp granite
#

slow growth, but growth nonetheless

crisp granite
#

and with management fees

solar hinge
#

ahh straight part i missed

crisp granite
#

meanwhile...I just have like...hm, at this point it should be like...20k?
in bank stock mm

#

the dividend alone is nice growth, good few percent a year

#

also helps that the stock itself grows in value a good...few percent a year as well

#

solid, stable growth

#

gotta put in MOAR

#

MOAR STONKS

#

oh, and 5% of my paychecks goes into the company I work for's stock as well, which they match 25% of contributions towards feelsgood

#

delicious

#

this and I'm barely an adult and still in uni...pretty much the one thing I can be proud of in my life

wheat plume
#

this is the worst way possible to add a system tray..

#

Its only in the overview, and its a click away in a slide out menu

#

ok, windows does that last part too

crimson wigeon
#

Windows only hides unused icons tho

#

Or rather, those you choose to hide

#

But also... that's basically the old design they had before they killed the tray, just with a modern flat look instead of a gradient

wheat plume
#

I choose to hide them all

crimson wigeon
#

(it used to be a a gradient thing that slid up from the bottom of the screen in activities view, or if you threw the mouse to the bottom right corner, notifications also went there, it was pretty neat tbh)

wheat plume
#

Wait....

#

Gnome used to have a tray???

crimson wigeon
#

Yes

wheat plume
#

Clearly haven't been using Linux long enough to know that ... Hmm xd

#

Why they remove it?

crimson wigeon
#

vision

wheat plume
#

Oh wait
This is the gnome team
They don't make logical decisions

#

They make nice UI design though
Except icon and UI themes

#

The reason tbeg removed transparent background in gnome terminal is because they felt it didn't run well on older hardware
But I've used plasma desktop on my old laptop without issues and that has blur effects and a shit ton of animations to enable if you want

reef tundra
#

gnome is trash

wheat plume
#

I love it

reef tundra
#

Stockholm syndrome

wheat plume
#

The new overview is sweet

reef tundra
#

pointless

pale sigil
misty saffron
#

must resist the urge to update...

#

jailbreak is more important...

ashen spindle
#

ew imagine using face id

wheat plume
#

my phones face rec can deal with masks already

ashen spindle
#

dont think I'll ever switch away from using a password

wheat plume
#

I use fingerprint

empty wren
ashen spindle
#

Safety

shadow minnow
#

Hmm fair point.
Myself tbh kinda feel like 3d face authentification is safer since I feel like if someone wanted they could find out what am I typing since I use phone often.
And also for just checking notification the speed is nice.
But idk, probably wouldn’t go away from 2d face unlock either just for convenience

pale sigil
#

ah the dust collector

#

OMFG im dying rn

reef patrol
#

🤔

pale sigil
pale sigil
#

fml

pale sigil
#
The account's popularity appears to have scared Musk. “I don’t love the idea of being shot by a nutcase,” he told Sweeney in their DM conversation.

The conversation continued for a few more messages. Musk asked Sweeney how much he made off the Twitter accounts, which Sweeney said was no more than $20 a month. Then Elon Musk made his own offer: $5,000 to delete the account and help the billionaire keep “crazy people” from tracking his location. Sweeney told Musk to add another 0. “Any chance to up that to $50k? It would be great support in college and would possibly allow me to get a car maybe even a Model 3.”

Musk said he’d think about it. But so far, he hasn’t paid Sweeney a dime, and the account is still running. Sweeney says he’s okay with getting ghosted. He’s benefited a lot from @Elo#0001nJet and the other accounts, he said: He's gained social media followers, learned how to code and even scored a part time job at UberJets as an application developer. Better yet, the self-described Elon Musk “fan” got to have a conversation with a man he’s looked up to for years.


wheat plume
#

holy fuck that bass.... from the SkullCandy Crushers

reef tundra
#

Unless you cross national borders, there is no necessity to have any verification/security

#

They would read off the GPS data from their car mm

#

Nothing is safe from putin

#

Nice buk rocket will take the jet down

timid chasm
reef tundra
#

Elon offering that money be like

#

Clearly the dude doesnt understand why the amount offered was the way it was

#

5k is already quite the sum

chrome estuary
#

ah yes

#

to the richest man on earth?

#

what's 50k

reef tundra
#

You are forgetting what it is for mm

chrome estuary
#

i'm sure elon bribes other people

#

what's one more?

reef tundra
#

at which price

#

and more importantly how much would the alternative cost

#

Thinking about it. It might have been the worst option to try and ask for 50k. Elon's lawyer will love it.

fair gull
#

tmw ur distributor sends tray cpus like ebay sellers do

#

also sidenote im not using coinbase

#

gomna have to try binance or what the other one was

reef tundra
#

"decentralised"mm

fair gull
#

no

#

is cpu

#

i5-12900k

zenith gale
#

u are german?

ashen spindle
#

No he’s Bavarian

halcyon moss
#

hes bavarian? omg

zenith gale
#

what is that

misty saffron
#

not germany

zenith gale
#

bayern?

ashen spindle
#

Bayern

reef patrol
#

It's part of modern day Germany, but they have their own culture.

zenith gale
#

i know

reef patrol
#

Then why did you ask 😛

halcyon moss
#

i always thought he was german

misty saffron
zenith gale
#

i forgot bavaria is englisch for bayern

ashen spindle
#

He asked the same moment I clarified it

zenith gale
#

where are you from?

misty saffron
#

planet earth

zenith gale
#

wow

#

i am from milky way

misty saffron
#

not sure if i was born in europe or asia though

zenith gale
#

i think there is something that id called borders

#

what for pc do you have?

misty saffron
#

this one

#

i hit it with a hammer

zenith gale
#

great

#

which graphicscard?

fair gull
#

i am glad not to be bavarian

zenith gale
#

okay

#

then where u from?

fair gull
#

sachsen-anhalt/saxony-anhalt

zenith gale
#

okay thats not bayern

old marlin
fair gull
#

ya no shit its not bavaria

zenith gale
#

how is Sachsen-Anhalt?

fair gull
#

very german

ashen spindle
#

oh right forgot dogekek

zenith gale
#

what do you mean?

fair gull
#

everyone here speaks german

zenith gale
#

wow okay

#

i think, thats normal in germany

old marlin
fair gull
#

i wouldnt know dont drive around much

old marlin
#

You sure

#

From the interactions i had the past week i would assume most Germans only speak russian

zenith gale
#

is it called "Berliner"?

old marlin
#

No, krapfen

fair gull
#

no pfannkuchen

zenith gale
#

is it called "brötchen"?

fair gull
#

no semmel

old marlin
#

Pfannkuchen malders

#

Smh

fair gull
#

what is this? testing if were actually german?

zenith gale
#

well thats funny

old marlin
#

Lol

fair gull
#

i think theres easier ways to test if someones german

old marlin
#

I recently found out that we hessians drink the least beer on average in germany

#

100% substituted with cider

zenith gale
#

you are both from germany, iguess and you use different words for the same thing

fair gull
#

thats called regional dialects

#

not just a german thing

old marlin
#

That is how complicated languages work

zenith gale
#

so one is from hessen, one from Sachsen-Anhalt and one from NRW?

fair gull
#

just be glad i dont call my brötchen Rindfleischetikettierungsüberwachungsaufgabenübertragungsgesetz

#

not that this would make sense

zenith gale
#

RKREÜÄÜG

fair gull
#

since thats not even a law anymore

zenith gale
#

thats a long word

fair gull
#

the longest we had in german once

zenith gale
#

thats impressive

fair gull
#

the real question is why youre so interested in germans

zenith gale
#

idk

fair gull
#

youre either a closet german or clouded by a thought of german being easy or wonderful

zenith gale
#

in my school there is a sign that says "wifi is only working wireless at the moment"

#

well obviously

fair gull
#

send em some wifi cables

zenith gale
#

would like to see them

fair gull
#

hf

zenith gale
#

xd

#

thats german?

fair gull
#

yes

wheat plume
fair gull
#

they also have transmission sand

#

for decorating ofc

zenith gale
#

what is the most anoying thing in germany?

fair gull
#

german

reef patrol
#

Their inability to get with the times and adopt card payments xD

zenith gale
#

xd

fair gull
#

shush

zenith gale
#

youre also from germany?

fair gull
#

mansen is from sweden

#

or finnland

#

or smth

zenith gale
#

okay

zenith gale
#

mansen is from denmark, living/has lived in germany

fair gull
#

lies

fair gull
zenith gale
#

idk

#

is there a specific thing?

fair gull
#

yes the entire language

zenith gale
#

what do you mean by that?

fair gull
#

that the entire language is horrible and should be forgotten

zenith gale
#

why?

fair gull
#

idk if u ever heard dutch dirty talk

#

but the cringe u get from that is the same as the entire german language

zenith gale
#

okay?

#

its hard to imagine

halcyon moss
#

geil

fair gull
#

is it?

#

just imagine doing dutch dirty talk 24/7

zenith gale
#

yes

#

are you german so dirty?

#

or what?

#

or like the sound?

fair gull
#

smth like Ja schatje, neem het allemaal, je bent mijn sletje, ja schatje. Ungh, ja, umpf. Ja, neem het allemaal. Kom op je knieën en zuig aan me. Oeeh, ja lekker schatje. Ben je klaar voor mijn lading? Ja? Ik ga over je heen komen! Aaaah wat lekker!

#

no just the cringyness

zenith gale
#

i think dirtytalk is generally cringe

#

some say that the german language is difficult

fair gull
#

na english dirty talk if not overdone is kinda sexy imo

#

the german language is difficult

#

the easiest way to tell non germans apart from germans is wrong use of articles and time forms being wrong

zenith gale
#

okay, but you are still able to tell the message they are trying to say?

fair gull
#

depends

#

sometimes u need to decypher it

zenith gale
#

but that is possible?

#

once i have heard a german talk English, that was funny

fair gull
#

depends on how badly they pronounce the words

fair gull
zenith gale
#

xd

#

isnt it a native language there?

fair gull
#

where

ashen spindle
#

no they speak american

zenith gale
#

usa

fair gull
#

yes they speak english

#

while americanized

#

its english

#

the question percists where ure from

zenith gale
#

what do you think?

fair gull
#

idk chinese spy

zenith gale
#

xd

#

my one of my greadparents is from Curaçao

#

the other one from germany

fair gull
#

so ure dutch

zenith gale
#

my mom is dutch

#

i was born in tilburg

fair gull
#

ik ben een boterham

#

or smth

zenith gale
#

Ich bin ein Butterbrot

#

or something

fair gull
#

idk i actually dont speak dutch well

#

mostly cause i dont have the time to learn it

zenith gale
#

well i do

#

ive translate it

fair gull
#

i mean i do know that sentence

#

i have learned very small amount of dutch

#

basically eniugh to make my female half happy for now

zenith gale
#

i have learnd a little bit german

#

youre female half?

chrome estuary
#

his better three quarters

zenith gale
#

his yellow from the egg

fair gull
#

the one that calls me honey and soon to be husband already

#

the one whos mum already says son in law

zenith gale
#

youre gf?

fair gull
#

no my right hand

#

ofc my gf

zenith gale
#

whatever

#

i like mountains

fair gull
#

i have 2 mountains i like

#

they are private property tho

zenith gale
#

schade

old marlin
fair gull
#

pls someone tell me they got it

ashen spindle
#

yes

timid chasm
#

(. Y . )

fair gull
#

dane with irc emotes

zenith gale
#

ok i am officially stupid

timid chasm
#

/quit ( . Y . )

reef tundra
#

( ͡° ͜ʖ ͡°)

timid chasm
#

no no we didn't have that yet, I don't think

#

at least not in popular use

reef tundra
#

ʕ •ᴥ•ʔ

timid chasm
#

none of that anime or koala shit either

#

I take that back I didn't mean koala shit, I like koalas

reef tundra
#

It is most commonly referred to as the bear

timid chasm
#

nah, dems koala ears

reef tundra
#

ancient internet knowledge

#

2004 to 2008 i think

zenith gale
#

Ich denke, dass er den Vorbau seiner weiblichen Lebensabschnittgefährtin meinte, ist jedoch lediglich eine Vermutung.

reef tundra
#

Лукашенко лучший диктатор в Европе 🇧🇾

reef tundra
fair gull
#

damn way too formal

#

ja meinte ich aber das muss man nich vermuten das is eigentlich recht offensichtlich

#

also da muss man recht unbetucht mit sexualität sein um das nicht zu checken

zenith gale
#

schön gesagt

#

nun bin ich aber auch mit meinem Latein am Ende

#

Lorem Ipsum dolor sit amet consectetuer adipiscing elit.

#

some text

reef patrol
#

veni, vidi, veni.

zenith gale
#

i came, i saw, i came?

reef patrol
reef tundra
#

-by Gaius Julius Caesar

zenith gale
#

mansen, you are from denmark?

zenith gale
#

idk, how is denmark?

reef patrol
#

Stormy atm xD

pale sigil
#

TIL beats use lightning ports to charge

river fern
#

hello

#

I have a question

#

about the wootingg software

#

can i set it to start up when i turn on my computer? and how?

#

<@&853208320859963392>

wheat plume
#

is good CPU cooler?

#

I need one with an AM4 mount though, this doesnt mention any AMD cpus

timid chasm
#

We just wish you'd pick a damn cooler. This has been going on for far too long 😛

old marlin
timid chasm
#

also maybe not that one? that looks familiar to something GN said no to but not 100%

old marlin
#

Seems quite expensive for what it is

#

Fpr the price you can get a U12S redux or almost a fuma 2

timid chasm
#

yeah fuma 2 is $60 usd so like just get that

wheat plume
#

Thats a Perfect™️ amount of thermal paste

pale sigil
old marlin
#

I have no problem with sponsor spots

#

I hate youtube ads though

wheat plume
#

the height of the cooler is 187mm
the width of the case is 210mm

#

fits?

timid chasm
#

your case manual will tell you max size it will fit

wheat plume
timid chasm
#

that sounds like a no then

#

actually why not

#

We're reviewing & benchmarking Arctic's Freezer 34 eSports Duo CPU cooler versus some of the other best coolers for AMD and Intel right now, including Noctua and Scythe.
Sponsor: ASUS ROG Crosshair VIII (Hero Dark on Amazon https://geni.us/RSQbk)

Grab the GN toolkit: https://store.gamersnexus.net/products/gamersnexus-tear-down-toolkit

Like ou...

▶ Play video
#

but you always complain about loudness and it's louder than a fuma and little lourder than u12s redux

wheat plume
#

this cooler loud AF?

#

im only 9 minutes into the video

timid chasm
#

there are timestamps if you wish to skip

#

likely not loud AF but loudER

wheat plume
#

their CPU maxes at 64C with a PASSIVE cooler....

#

mine reaches 85C with a cooler that has a fan...

#

wtf

pale sigil
#

Stock cooler

#

Right?

wheat plume
#

yea

pale sigil
#

Ye mine did too for the 5600x

#

Just get a hyper 212

#

Or noctua

wheat plume
#

How likely is it that if I buy this cooler, install it and run some games and the CPU temps have only went down like 10C?

pale sigil
#

Just get a hyper 213

#

Cheap af and very good at cooking

#

Cooling

#

XD

wheat plume
#

Coolermaster?

#

It doesnt support AM4

pale sigil
#

Also do you even have a prism

#

Also yes it does

wheat plume
#

I think the stock cooler is a wraith stealth

timid chasm
#

weeelllll