#🔌│tech
1 messages · Page 414 of 1
having used linux before systemd was on the scene, it did a great deal of decluttering the ecosystem
Oh yeah I am from the pre-systemd times as well, it's great.
I used init.d before that and it was trash.
why people flipped their shit so hard back then is still a mystery to me
its 4g
speaking of systemd, setting DefaultTimeoutStopSec=0s in /etc/systemd/system.conf is the best setting ever, it finally stopped the buggy shutdowns and happens nearly instantly
I have yet to encounter buggy shutdowns with it.
gotta love the hospital wifi also
My biggest issue is when a device has multiple NICs sometimes it will take like 5 minutes to start up because it's waiting on all of them to come up...
turn off pxe??
that, on the other hand, I have never seen once
That's not a systemd thing, that's a pre-boot thing.
it happens a bunch with servers but you just turn it off in bios
This is a different issue.
The old
waiting for iface enl0ps1 1m20s...
or whatever.
It's probably a me issue, but it's generally not a huge issue so I haven't looked into it much.
yea thats pxe
No it's not.
also called "network boot"
PXE is done doing it's job after the kernel takes over.
oh you meant the opposite of what you said here then?
PXE is litterly a pre-boot thing.
Therefor it can't be related to systemd.
I do need to figure out how to use PXE for some work stuff though, it would be super nice to be able to use iPXE for booting Windows/Linux installers/live boot images over the network.
ah so the issue is a systemd thing, and its happening post boot
Yes.
those are from it not getting dhcp responses on the interfaces
each interface needs an ip
only one gets a gateway ofc, but they all need an ip of some kind
Yeah if you want to use them.
no up them if you dont want to use them?
Because that's the default and it's only been on machines that won't be turned off very often so I never bothered to look into fixing it.
although it should assign itself an apipa and continue with boot, and wait for a response
ssh is super nice, I can work on stupid stuff in a different room on a laptop and I don't have to deal with my desktop fans spinning up.
You can turn off your PC without getting up from bed 
That's just called tripping the breaker with a paper clip.
lol
I may have set up the whole Home Assistant and bought some ESP32s and smart bulbs and what not to control my room when I'm too lazy to get out of bed 
I wonder what sorts of janky crap you could do with an EV that has a reversable inverted to run loads off of the car. Imagine senging 240VAC out of phase into a 120VAC circuit.
Oh yeah, AC from different sources always play nice 
I do wish my car had V2L, but that's not going to be a big deal.
oh yea smart lights are nice for laziness. next i’ll need one of those smart curtains from ikea 
I have some Hue lights.
same they’re great
good old times using that chat
max age was 99
140 with html or css editing skills
and that thing bugged over the limit cap even cheating
I have some nice tapo stuff, it lives in 10.4/16 subnet where it will never see the internet
8 years fly by
Ayyup
Hrm, what would be the correct way to do make ; make install where the second command would not run if the first errors?
Filian uses Linux
can you read it
make && make install
&& only runs the next command if previous returns 0
@thelvadam
gudenau you have been summoned by a certain keyword
Huh.
@empty wren
Oh eww, the Python tarball starts with P instead of p.
Lol
I suppose [some list of commands seperated by &&] ; echo $? is a decent way to just run a bunch of stuff and report the last result?
Did you guys knew
I created the (/ џ_џ)/ (T-T)/ (y-y ) emojis
ppl were like "nobody gonna follow that or is not gonna catch"
Those are not emoji they are emoticons.
well no shit 3 whole generations of it came out
Shoutout to when you had to "hack" your iOS devices to show the Emoji keyboard.
Yeah, it should return exit status of last executed command
Is wootamation bricked for anyone else or is it something on my side?
best to ask in #💻│wootomation
I am rooted into all your minds
your braincells belong to me
which does not ammount to much
but is something
What's my password?
12345679
“no_filian_allowed”
12345678
🙄
dammit, they reseted the servers or what, the profile code is still there so that's sus
I see why
sometimes you wonder if killing all of them wouldn't just make things easier
well well
just mentioning this is tech talk

profile code?
The LFS backup is nearly a gig, not too shabby.
Hey @marsh glade do you know what's up with these false positive bot messages I'm getting?
Oh.
That timing though.
tar zxvf $1
mkdir tempdir
cd tempdir && bash && cd -
rm -rf tempdir
Like so? 
That wouldn't glob the file and it won't find the name of the extracted directory, but yeah that's the right idea.
It's right after I put it into sleep mode
Waiting for video to upload....
Does anyone have any idea what this could be
I have online syndrom
can't go to bed sleep
working hard for 10 hours plus working out after dinner and still not sleepy
was thinking of open and clean my laptop but that would mean 2 am awake
online syndrom 
Looks like a laptop to me.
Omg I think it's the sd card on the side 
Not my best friend.
I might do a big stupid and make a package manager.
mkdir tempdir
tar -zxvf "$1" -C ./tempdir
cd tempdir && bash && cd -
rm -rf tempdir
And run with script.sh archive0[1-9]{2}.tar.gz for example 
Wouldn't you also need the flag that removes the top level dir from the archive?
In that case the glob is pretty safe as long as you can check for multiple files.
Eh, checking for a space should do it right?
--strip-components=1 should take care of top-level dir, I think
tar -xf --strip-components=1 "$glob" -C ./tempdir
Yeah, just did a tar --help | grep strip -A 2 -B 2.
AB are super useful on grep.
Oh, man pages would work too
It's 1am already and my brain is already in safe mode 
file="$i*"
pattern=" |'"
if [[ $file =~ $pattern ]] ; then
echo "Glob matched multiple files"
exit 1
fi
mkdir tempdir
tar -xf --strip-components=1 "$file" -C ./tempdir
cd tempdir && bash && cd -
rm -rf tempdir
Maybe?
Eh, --help comes to mind first.
=== Summary of results ===
2 FAIL
5214 PASS
134 UNSUPPORTED
16 XFAIL
4 XPASS
make[1]: *** [Makefile:671: tests] Error 1
make[1]: Leaving directory '/sources/glibc-2.40'
make: *** [Makefile:9: check] Error 2
2

Probably fine.
Running bash in a script should keep env vars right?
Yeah, it should, running new shell from another one keeps env vars
That's what I figured.
Oh yeah no nano here.
Pfft, tar didn't like that arg order.
The glob is also wrong, eh.
I'll do it manually.
Maybe like so?
for i in "$glob"; do tar $i; done
Two things, I didn't do 1 I did i and the glob didn't work as it just had * in the var.
So I screwed it up all possible ways.
Is there a built-in squashfs like archive that has better performance/size characteristics or is it still just squash?
Dang TCL has a lot of build instructions. https://www.linuxfromscratch.org/lfs/view/12.2/chapter08/tcl.html
I just found traces of Armoury Crate on my PC after uninstalling it ages ago. Weird af and theres files requiring system permision to delete them
It reinstalls itself thanks to Windows installing malware the UEFI provides.
No lul
Guess I’m going to have to figure out how to uninstall system files
Try revo uninstaller
the trusty revo
they have arrived! i ordered both pairs bc why not
whats the 2nd pair? (i forgor)
the zero red smt
oh
how do u like them
So far so good just kinda annoying with having to wrap it around my ears everytime i take them off
youll get used to it 🤷
Might get a usb drive and get their portable version
did u get a dacamp dongle
i got the a11 or smt like that
did it arrive
ka11
alr
ofc
so far they seem a lot louder then the reds
do you know little foam things are for?
I wouldnt worry about them
alr
but its to filter out the treble harshness
So anime girl box = in ear speakers? Do ya pay extra for that? Does it come with anime dvd?
do you mean foam tips?
they're a tip preference, they change the sound a bit, takes a bit off of the treble
people also find them more comfortable
aacoustic dampeners
they just filter out harsh treble as i said
not necessarily needed imo
since treble isnt that peaky on this set, esp with the golden nozzle
I mean, it is a preference
they quite literally filter out harshness in the treble
if they find that the highs trouble them
then they can use them
but im just using my own experience as someone who is treble sensitive
variance in the treble between people is very large, some people even have issues with resonances due to insertion depth
it's a preference
some people just naturally prefer the treble to be less prevalent
some people want sparkly treble
yes
so as i said
if they find that the highs trouble them
then they can use them
not necessarily needed imo
alr tbh ion even know what treble is
ok then yeah imma use them if i figure out how to put them in
try the gold nozzles first
see if they sound any better to u
yeah those sound a little better
I prefer an alloy of both for a mix of the two's properties
Are there measurements of the differences?
i believe so
but none on 5128 so
That's fine.
doesnt seem like too much of a difference on 711 kit but difference is quite major when I used both
Much more useful at least.
not really
because I kind of just explained the differences
graph sniffing only tells u so much
Graphs are much more useful.
To an extent
And this isnt even 5128
There are iems that graph well and dont sound as good as they graph
There are iems that graph in a way u might find surprising but once u try them, they sound really good
Which ones?
Not to mention the inaccuracies with 711
I couldnt name any on the spot but there definitely are some
Unless the measurements are bad I don't see how it's possible for them to sound bad if they measure good unless you simply do not like for example the Harman target.
What experience do u have with iems may I ask
Owned only 3. Two of them measured great and sounded great although one of them was broken.
Ok so look
One thing ill tell u is that an iem isnt purely made of its FR
Anyone whos more experienced will tell u to avoid graph sniffing and actually try it
Because again, graphs only tell u so much
What else is there though? Aside from things like distortion. If you say imaging imaging is dependent on a good frequency response.
They tell me 90%+ I need to know for iems outside of comfort.
Ok then continue buying iems purely based on graphs
just go to any store
Im guessing ur sets are like below 80
Below 80 what.
Because ive seen graphs, bought the iems, returned them
Because they simply didnt sound like how i expected
Price does not correlate to sound quality in iems. That should be well understood by now. It doesn't matter if they're under 80 (80 what?).
They're not under 80 (USD?) anyway.
Yes.

graph sniffing takes skill
I'd love to hear about the things that graphs cannot tell you in iems.
When there's no iem store nearby, it's all that I can use
besides review
Ok, so no reviews, no discussion, no buying and returning?
if you have your own HRTF measured go ahead i guess 😂
otherwise measurements have only made things more complicated for me
This comment would only be smart if there weren't correlations between hitting specific measurement targets and a high likelihood of preference for it.
graphs when used properly are a valuable tool that can determine how something sounds
if you know your preferences and are able to read graphs and understand them, they're a powerful tool
that comment was mostly satirical
definitely didnt sound like it
I apologize
outside of things such as insertion depth and resonance peaks due to it
there's not much a graph can't tell you
Iems are super simple when it comes to graphing compared to over-ears. So yeah.
you're probably right, maybe im just salty that i havent tried an IEM i can actually listen to yet
even though i havent even gotten into midfi territory
They're a powerful tool to an extent
When I look at review, I can't quite understand audio lingo that well, or even take words and try to form a sound from such word
Also on the 'ur iems are under 80' comment, price does not correlate to good sound quality. That's audiophool cope. https://x.com/seanolive/status/924053673017249792
I've tried
app2
hexa
kiwi cadenza
zero2
quark2
The only one I can handle listening to for some time is airpods pro 2... the rest are really bad for my ears
What i meant was that i was assuming ur buying iems that have been graphed and reviewed for ages
Because most of the popular under 80 sets are heavily graphed, heavily reviewed, heavily discussed
About Quarks, I had the Quarks DSP. Excellent sounding but broken. The DSP chip was fucked up with loads of issues. 10/10 tonality though.
But why on earth would u purely buy an iem bc of a graph
I have Quark2 and i think they sound pretty shit lol.
Ur not even discussing, trying or watching reviews?
over ears ruined IEMs
No vents 😭
funnily enough tonality is still excellent, like the treble is audibly very smooth even in tone generator
but it sounds lo res like really lo res
The graph tells me more than any reviewer could (unless the reviewer also includes graphs). But yes I did watch reviews as well. Can't try iems in my country. No stores that really sell them.
some people just prefer over ears due to the way they interact with the actual pinna
iems completely bypass the pinna, so the entire midrange has to be guessed
yea, currently listening to hd600 wondering if there will ever be an IEM that can compare to this thing
maybe there is for like 1k+
not sure.
Expensive = good
For sure will be true next time!
imo it's best to develop a separate preference for iems rather than trying to find a iem that performs like X headphone
I got tired of waiting for endgame gear to release a new XM2 mouse. So I did the unthinkable, and ordered a Razer Deathadder V3 mouse. I'm curious if the larger size is ergonomic for me. I tend to palm hold my VM600PE. I also want to see if I need the Razer synopsis software running 24/7 or not. I selected the wired one. Because I like wired mouses.
you don't have the context to assume that I'm referring to how expensive = better
i literally do not care about the kilobuck market
i do not follow it
moondrop blessing 3
that thing looks pretty bright ill pass
im very treble sensitive
i don't think i can lol
mentally
Blessing 3 has less bass than I'd like.
these are all the iems I have looked at and somewhat go after the sound I'm looking for
will I try to demo them if possible yes, but realistically this will end up being a blind buy
like i honestly think id rather not use IEMs and just use headphones when I have the time to
Maybe you would like the Moondrop Variations. They're what I use.
not the kind of sound I want, they're more harman ie tuned
besides the mid scoop i gotta say, variations graph kinda smexy
Some of the ones you sent are so too.
I'm looking for something with natural timbre and dynamics
only one that really follows it is glacier, glacier is there because it has estats
Variations is the most natural sounding thing I have ever owned. More so than any iem or over-ear I have owned.
havent tried but megafest i have heard has pretty decent timbre
Variations uses estats for treble.
megafest is on that list already
I know
variations can take a spot as well tho besides the QC its a great IEM
from what I have heard
treble is remarkably smooth
on 5128 measurements
realistically the one I'm most likely to get is the ie900, according to Fc contruct is has some great dynamics
just would need to eq it
isn't fc construct's preference curve literally just 64a/senn IEM house sound
lol
wait no im thinking of precog
ie900 is also the smallest of the bunch
ive heard the fit can be problematic bc of it
will likely be the most comfortable
I mostly have issues when it comes to nozzle size
from what ive heard megafest is insanely comfy
basically a slightly larger (shell) dt200 (🐐)
also this elevation 
the eargain in general just looks strange to me.
akin to 64audio's iems
I like a elevation there on headphones around 1.3k , it gives a more foward vocal presentation
which admittedly people love
I have played around with EQ a lot on my variations and when I turn the elevation down to exactly matching the Harman target it's only a -1,5 dB reduction. I have a hard time telling a diff.
It's basically a nothingburger. 1,5 dB is very little.
all that's really needed
thats like throwing all the character of the ie900 out the window lol
definitely wouldnt do that
it would be something to need experimentation on, but the main issue is that hole in the midrange
vocals will sound very drowned out because of that
Final E tips seem to reduce it a bit
I would want to tip roll on it too, see what works best
the only other iem that interests me is the nightjar singularity
you could also pull down the eargain
that could be a better option tonally prob
im here in the US, literally no places to try IEMs where im at lol
IE 900 seems quite lo-fi. But it has a big pricetag and is made by Sennheiser so...
people like the bass on it
singularity is a great iem from what I have heard
Where I live earbuds can't be returned when tried since they're 'hygiene' products.
I get it. Earwax and stuff.
but theres some alternative that is like
very similar
also 1dd, also has a massive bass shelf, and has almost as smooth treble
I just have a thing for single dd I guess
634 ears Loak TX-01
Shitty name I know
it has a wooden faceplate option that probably doesnt have as much treble
damn this thing looks like a old school desk in a iem
yeah its sexy asf
but lead times take MONTHS
oh it's the TS Closed
my bad the naming is so awful
https://634ears.com/en/products/loak2cl/ these @final flame
【LOAK2-TS(CL)】Dynamic driver x 1.Front enclosure : Titanium.Body enclosure : Stainless steel (only MMCX par...
oh wait they are so much closer than i thought

ill go over as soon as my class ends
interesting, 635 bucks + shipping (proably would be about 40 bucks)
yep half the price for like 90% of the IEM
and it's absolutely beautiful
other iem I want to try is davinci
it has the so called modern tuning style, which I want to try
really am in no rush for buying iems though, so I want to demo a lot of these things
I want to get speakers first
want to get a pair of lumina V and a nad amp
I wanna get mega5est, probably get it discounted
600 for earphones is bonkers
it only gets worse from there
the things i would do to get my hands on some high end meze headphones...
i mean it kinda makes more sense imo since they're a lot smaller, they have to cram more stuff in a much tighter package
idk about that
and you can spend hundreds on pretty much any line of product if you want to
The speaker is clearly going inside your ear so less sound is required
theres always an "enthusiast" level to stuff
yeah, but tuning it to accurately recreate sound is much harder since again, much smaller package
IEMs also stuggle with soundstage since they're, well, stuffed right inside your head so its hard to make stuff sound "3D" like that
But goes 200mpb
so nicer ones probably do that better
I can understand that it's smaller so maybe harder to refine the sound
idk the best way of explaining it im a few drinks in lol but its like trying to cram a 4090 into a mini itx build, you might be able to do it but you'll have to make some compromises elsewhere
I guess the 600 tag is basically the high end sound refining
oh you sweet summer child...
Still complete bonkers for earphones
I'm aware headphones go up and past $3000
But like.... they're literally 100x+ bigger than an earbud
Using 100x more materials 😂
If you stuck that headphone inside your ear the sound would also be insane
my point is that an IEM is trying to compete with that sound, with much smaller drivers
The much smaller driver thing is a moot point
its much harder to accurately reproduce a digital signal accurately
Because it's literally inside your ear
It's like the difference of getting a $10 IEM vs $10 headphones
The $10 IEM will sound 100x better than the headphones
Because it's literally stuck inside your ear
It blocks all the sound outside
It increases bass
sure, but we're not talking about like bargain bin, we're talking high end audio
Just by the design and blocking of your ear
you're not wrong, but that doesn't mean IEMs just like cap out at 10 dollars and dont get any better from there
iems in certain ways can actually surpass headphones
Point is that the base design of the IEM already makes it superior in sound
i very much disagree
i think they provide a lot better value over over earheadphones but i think headphones do other things better like soundstage, 90% of the time
ear damage doesn't happen if you take care of your ears
and your i thought your main point was that 600 dollars was too much for earphones, now youre saying earphones are always superior? im confused
What do you mean by take care of your ears? 😅
Don't blast IEMs inside of them?
yes, but last time I checked that goes for every audio product that doesn't have a limit
I just think there's a limit point because of the amount of materials used
600 is probably at that point
But still bonkers
not to mention cleaning your ears also is healthy when using iems
Nothing wrong with someone saying it's bonkers because it is 
a lot of it goes into development, same thing with headphones
physical size really doesn't matter when it comes to development
I'm sure you can literally get a $60 pair of IEMs that offer pretty much similar sound
i mean im not saying i would pay 600 dollars for iems, my most expensive headphones are 150 dollars but i wouldnt say its crazy that they exist or that people buy them
From a big audio company
people pay over a thousand for a treadripper, which takes up so much less space
is a threadripper overkill? yes. is it something hobbyists want because it's fun, yes!
price and sound don't necessarily correlate the best, if all you want is tuning sure, you can stick to something cheap
but technicalities are something that aren't just achieved with just tuning
Well I think the point is here that people are going crazy for IEMs using them for gaming now
They're likely not even musicians
But spending hundreds on something that increases the sound of footsteps 
is that a problem?
No, but they're not being used in the technical forms that they were "developed" for
personally the gaming market is stupid, but people who use iems aren't just limited to musicians
Ah yes, let me listen to my spotify that isn't even super high quality audio
On my $500 IEMs because yes
Idk, seems weird
i mean, am i crazy for buying reference headphones to use for gaming, even though they're intended for studio use? like why does it matter what something was intended for if it fits another use case perfectly well?
Because the quality of audio in games will not make use of a $500-$3000 IEM/Headphone
It will do the job, no doubt
It will sound great, yes
the actual difference between lossless is not that big
it's there, but it doesn't make the biggest difference while listening casually
many people can't tell without knowing what to look for and it takes training to notice those details consistently
while I do agree with this, it's for a different reason
games use hrtf's and other surround virtualization techniques to make positioning sounds easy
this is why what audio device you use really doesn't matter as long as the game audio engine is good, it still can be competitive as long as it's not completely shit
is there a catch im not noticing here? like it has long been established that you can get perfectly adequate audio for like 50 bucks if you wanted to go as cheap as possible, but even if the returns are diminishing past that there are still benefits, and if people have the budget for it, why shouldnt they spend on something they use regularly?
Idk... I just think I'd rather spend $600 on headphones than IEMs but I guess that's personal preference
like i doubt the people spending hundreds on their setups are actually pros that are trying to hear footsteps from 3cm further away, rather they want a more immersive experience that is fun and exciting
there's nothing wrong with having a preference
but each form factor has it's fundamental advantages and disadvantages regardless of price
I've found headphones to be a little bit easier for the surround sound of hearing footsteps tbh 😅
yep... at the end of the day audio really does come down to preference. bassy vs bright, IEMS vs over ears, closed vs open back, people will argue about what is "better" all day without acknowledging that they are all different and have things they do well and others they dont
that could be due to the more open nature of them
while iems are a in the head kind of sound
in the end it's a preference
But I guess that would get better with the higher amount spent 😅 Maybe? Seems like a $50 headset does around the same for surround vs a $1000 headset
In terms of locating which direction it is
Not the quality lol
realistically if you want true surround, speakers are the only way to get it
anything that uses headphones or a 2 channel system will not be accurate, and is based on clever manipulation
Fair I guess
Grell's new OAE-1 has some rather unique design goals: extreme openness and frontal driver orientation. Join listener as they evaluate the headphone, the theoretical underpinnings of its design and marketing, and why consumers should be a lot more skeptical when a headphone is claimed to have "speaker-like soundstage".
IEMs are also usually worn upside down and a slight incorrect position in wearing them is easily done
if you want to read a bit more on how soundstage in headphones works
Check prices on Amazon below
Sennheiser x Drop PC38X: https://geni.us/ZmiZmN
Hyper X Cloud II: https://geni.us/3P9oJ6n
Sennheiser IE300 IEMs: https://geni.us/vYM6L
Shure SM7B: https://geni.us/JWzov
Audient Evo 4: https://geni.us/08xPp5
sE DM1 Dynamite: https://geni.us/w9lOP
How does the best gaming headset compare to a discrete $1000 setup?
Vi...
this is also a great video that kinda proves your point, you dont need to spend hundreds to get "good enough" audio
many pro's use apple earpods, and as a audiophile I consider them to have some of the best positioning
but realistically anything can be used due to how game audio engines work
I just feel for gaming itself IEMs are extremely inconvenient 😅
Getting the IEMs to fit and ensure they are fit correctly making the surround audio locating correct
It's definitely louder, there's no doubt
idk i think you're putting too much thought into it to be honest, as far as performance goes in competitive games your choice of headphones or IEMs isnt gonna make that much of a difference
And I guess people like loud
True, unless you're wearing your IEMs not the correct way (i.e. like normal earphones, not upside down)
Then you won't know where they are coming from 😂
I'm sure some people probably even do this, buy IEMs not realising the correct orientation required inside your ear
in the end these are hobbies, they are for our enjoyment
there's a lot of other expensive ways to spend money on unnecessary things to live, but existing and enjoying life are 2 seperate things
Optimum looking a lot younger only 2 years ago 
actually the rotational orientation of the iem in the ear doesn't matter, it'll sound the same regardless
as long as the channels are right, there won't be any difference
still the goat though hes how i found out about wooting
iems like the er2xr are commonly worn upside down despite them being designed for them to be worn down
Very interesting I have no idea how that works but if you say so then sure I guess 😂 That's pretty cool
think of it this way, take a speaker placed in front of you
if you rotate that speaker so the tweeter and woofer positions are swapped, it will still sound the same
Yeah but is the spatial thing going to matter when it's music? 😂
as I've said before, soundstage and positioning are clever tricks when implemented on headphones and iems
they are illusions
Actually let me test this I have some IEMs, I want to hear this 😂
this article covers soundstage in the 2nd part of the article
Grell's new OAE-1 has some rather unique design goals: extreme openness and frontal driver orientation. Join listener as they evaluate the headphone, the theoretical underpinnings of its design and marketing, and why consumers should be a lot more skeptical when a headphone is claimed to have "speaker-like soundstage".
Damn, I was so worried about orientation and it doesn't matter 
Eh, I think my ears hate IEMs anyway 😂 Although they do sound nice
Kinda mind boggling
So wait hold on
If you wear headphones upside down....

assuming the seal isn't altered and the driver isn't moved yes
Very interesting
rotating the driver inside of the housing won't change anything
That's pretty cool but also super weird
audio drivers are symmetrical on all sides, and they move linearly
if they don't move linearly they create distortion
tldr the pinna (the outer ear) changes the way you percieve sound coming from directions, it changes the FR of the sound in other directions
and our brain interprets it that way coming from a different direction
headphones and iems don't have the ability to change their FR based on where a sound is coming from, so it will have to be implemented into the music or added artificially
ooo random thought speaking of spending money on stuff that doesnt really matter, my first dac/amp is supposed to arrive this weekend
not to mention our brains also take account for factors such as echo and room sounds
headphones and iems are localized, there is no crossfeeding
im excited to plug it in and hear no difference

i'll probably still tell myself it sounds better so i dont feel so bad about spending the money though lol
Well I guess this probably explains why those IEMs are $600 😂
as far as sources go I always buy them for features and looks
tubes do change the sound so there's also that if you like the sound of certain tube amps
yeah honestly the main thing im looking forward to is having something on my desk to plug my headphones into instead of reaching under the desk directly to my PC
i switch between 2 pairs of headphones more often that i thought i would so im like crawling under my desk multiple times a day lol
oof 😂
Not an issue if stuff is recorded/mastered properly
it would still by definition be a imitation because it's emulating it within the file
Not if it is recorded with the funny ears
technically still would be a imitation because everyone's pinna is different
Otherwise make it so audio players can add custom hrtfs and you are fine
Tbh I'd worry about that when more songs are properly surround
And not just certain instruments on certain speakers
that's possible, the issue more comes from actually making a custom hrtf
you need in ear mics for that, which there's no real accessible way currently to make your own hrtf
There are ways to make that more accessible
You will only need to redo it once a decade or less even for perfect results
So it could just be offered as a service
audiologists making side hustle money making hrtfs
warning tech gore
I dunno... it clearly works 😄
I'm sure some company's selling a real version of a bracket like that somewhere.
pls no
Same socket, mobo manufacturer just didn't have the foresight to add a shorter mounting point. Not all motherboards have a dedicated Wifi or short SSD socket.
just get one of those adapters
So... what I just described further up? 😄
To be clear I never said someone sold a fork like product. I was referring to an adaptor like you just linked 😄
Manufacturers do be skimping where they can.
oh because you said a bracket like that i assume you mean a literal fork bracket

I mean... I wouldn't put it past Lenovo or HP to do something that is essentially a fork like push bar 😄
Looks like an mre spoon
Military Grade
such a joke
Good change though
well unless you wanna do anything but games with unity
They kicked out Riccitiello, which surprisingly has done nothing than giving himself and the rest of the board bonuses 
If you hit 25million in revenue you have custom license contracts anyway if you’re not completely stupid
and it doubled the free threshold for indies
The Made with Unity splash screen will become optional for Unity Personal games made with Unity 6 when it launches later this year a change i actually appreciate
Is ordering x180 yellow switches nerd? or better switch half to green?
What do you need 180 switches for to begin with?
80he - gonna abuse it; so was wondering x7 switch in reserve will be enough for year.
Abuse?! 
I'm calling keyboard protective services
I say try both L45s and L60s and order 2 packs of whichever one you prefer 
almost certain youre underestimating how sturdy a contactless switch is
Hmmm

I had the 1st gen threadripper. Heats up a room quick, even when idle.
Why does the first microcentre in Florida have to be all the way in miami 
The state capital? What an odd decision 😛
Oh wait. No. Of course Florida has to be weird and not have the largest city of the state be the capital.
mansen you cold
It’s one of Florida’s most popular city but from where I live it’s a 3 hour drive
I was hoping it’d be in like Orlando which is central Florida and basically the tourist city because it has all the theme parks and stuff
Maybe next time
If there’s no next time I’m gonna save like 2 thousand USD and plan a roadtrip
Atleast gasoline is cheap overthere
10 minutes until I can pre-order my iPhone
Oh you’re getting a new one?
which color are you getting?
I went with Black Titanium haven't had a black phone in years
yeh yeh
ah cool
Verizon opened the Pre-Orders earlier so getting it on release thank god
Oh damn were both on verizon
I only like last year went from an iphone 8 to a 14 pro 
thats a solid upgrade haha

That is crazy
Now we wait
Anything for better wallpapers
As I'm trying to find a new one for my Desktop
I just grabbed that zip file of the minecraft ones from youtube
Using the fireplace withe the fox
I wanted a Surge the Tenrec one :c there's only 1 on Wallpaper Engine

finally got my iphone 16 pro
I really dislike the island being visible in screenshots
Afaik no Android phone included the notch in them either
its only on the lock screen
No xd
I've seen screenshots from a friend on Safari with the island still visible
Yep, only on the lock screen 
Hmm
Maybe an iPhone 16 change
my new monitor doesnt have enough weight for the monitor arm
is your monitor arm not adjustable?
Maaaaan
Monitor arm 
It is and i fully strengthen the gas spring as well but still no luck
you mean weaken?
Yeah you weaken first then adjust, then strengthen to lock it in place
guess you gotta return
I fixed it xdd
Oh nice! 
wrong direction?

why your room so dark
Vampire 
Hungary not so far from Romania and Transylvania
i like it that way but overall i just dont have a good lights in my room
true true
okay my gpu can handle more than i was thinking LUL
CP77 at 1440p on high at 90fps in the city
What gpu do you have?
6700 xt
I love iOS wallpapers
Ah thats pretty good 
Is the black titanium a fingerprint magnet still?
idk
Toldya 
6700xt is still a small beast on 1440p 
oh they got 39w charging
its time to get some info about the monitor menu why i dont have full access for it
What brand is it?
Oh which profile are you on? Some profiles lock out settings usually
i had to install this shit
NOOO
That's actually fuckin' wild
Just to change monitor settings...
Oh racing profile locks out stuff??
I’m never buying asus again
i uninstalled it already xd
I know other monitors lock out settings, but i dont think ive seen a racing preset lock them out
yeah anyway xd
i mean maybe the monitor was on racing mode bc i asked for pixel warranty and test soo
its maybe on me xd
almost teared that monitor apart while assembling
asus don't care about build quality these days
I was just looking on my country equivalent of Craigslist for a second monitor to watch youtube videos on, and I happen to find 2 CRT monitors for 10 bux each
and I think yeah, CRTs are old shit, but fuck it if it's that cheap. it'll be fun to play around with on Wayland, and then I junk them when they die
true xd
I need moar vram
download it
Actually I know you can use vram as ram on linux but that's the wrong way around
I dunno if that's true. windows can offload vram into ram, and linux can't, meaning you have to make sure your card has enough vram
I'm pretty sure it can't on linux, but nvidia is starting to implement it
Ooooohhh right, novideo
ah yeah nvidia problem only lol, awesome
Game developers trying to not use .bmp files for their in-game textures challenge (impossible)
I know for a fact you can use your vram as swap but it's basically a joke because it's almost never actually useful
yeah I checked with a dude who runs a distro, according to him offloading to RAM should be possible but most drivers have problems
so you're probably correct. interesting feature, and a bit silly
oh lol the seller responded, I'll be picking up two Iiyama CRT monitors later today, this will be fun, I kind of missed messing around with these
I'm regretting getting black maybe I should have gone white 
I’ve had tried different colors over the years but the ended up getting exchanged or returned for black
That's fair. I do love how darker it is this time
Apple need to bring back jet black from the iPhone 7 era
I picked a white one this time around because I got sick of misplacing my black one all the time
thing just has a way of blending into the environment 
I like the ''Natural'' & White ones
The silver sides are nice on the white one
New ultra fast foldable l33t keyboard to keep me busy until the 80HE
Lol
What case did you go with?
Fan swapped finally
Apple silicone
Nice I got a Rhinoshield
Nice figurines
thanks
I ran out of space to store boxes for like the 5th time
boxes are kinda hatable
hey guys, i noticed that my keyboard is turning off spontaneous when im not using. I m watching some twich after im not using a while its complett off and i need to plug off and in again. I m Using the Wooting two HE. Any Ideas ?SW is 2.7.2 the same problem with the beta version...
You using a custom cable?
yes
Try the default cable for a day.
Might need a USB voltage booster or a thicker awg cable. 🙂
yippe i finally changed my lekker v1 switches to v2 holy difference LOL
It turns off when you’re not using it? Check the keyboard settings for the RGB sleep setting, make sure its off
Ah
i wish id gotten v2s with my new plate, but i didnt know i had a discount on them 😭
i mean i got it before we had the discount 
Got any spare v2s? 😄
I mostly don't wanna pay shipping again right away 💀
Mini 37g G pro superlight to go with the 60he+ 👌
honey never saved me a cent but today I saved 5 bucks on linsoul by just googling coupons, surprised that work at all, didn't even have to open any suspicious websites
Just saw that article
The handheld after the deck weren't that much better
So, essentially, he completely missed the point about why Steam Deck, and focuses only on performance 
Only the absolute new ones are somewhat better
With Bazzite being an alternative there's just more options now
Rog Ally X with that battery is also much better now
not really matching the price to perf ratio tho
Depends on which model you buy
Yes i saw that & was going to post it
like its not close
welp, that's 10 bux spent
Also - ROG Ally can boost APU to 25W, cool
Can we talk about battery life then? Oh, how conveniently absent from this article 
of all the games to play on crt
factorio?
it works surprisingly well at 800x600
OLED is nice, totally worth it 
the unit definitely has an issue, it periodically goes dark with an electric noise. the glass body at the tops of these is covered in silicone, I think I'll have to open it up and renew that
The Rog Ally X should've been priced at the first Rog Ally price
every transportation method that takes longer than 2 hours to get places has power outlets available
Currently one can get the Rog Ally for €499
What can Valve do to stay relevant?
not care because its not their main product, article done
unlikes xbox or ps they dont just have to refresh to stay around
I'd just really want a PSP that could run all PS5 games lol
Umm... no. I don't want to be tethered to an outlet while playing in home
I want to play in bed, outside, wherever, and when I'm done just plug it to charge
If I wanted to play near outlet I could just play on my PC
Then why should I even consider a handheld then?
The person also stated ''I own a Steam Deck OLED, ROG Ally, and Legion GO. Despite it being underpowered, I still enthusiastically reach for my Steam Deck the majority of the time. That’s simply because it feels better in my hands, and the OLED display is superb. But as more unplayable games get released, that enthusiasm is waning.''
I want a low-powered PC handheld on which I can play light and casual games, that's it
Which the Rog Ally X can be, with even more power available now from the battery
Yeah, if you want ot play by outlet, go for Ally
But there should be an option which is low-powered and with longer battery life - which Steam Deck is
for the form factor?
you can have usbc cables everywhere you normally use it, and the battery is plenty to last while you are walking between places
You're completely missing my point
There should be both options for when you want to play near outlet (which Ally for example is) and low powered-one without that requirement (so, Steam Deck)
if i had to pick any of them i would go with the deck oled lul, like i just wanna play some light games not 3A games
In a plane ride lol
Perfect for emulating pikmin 2
and you are missing my point, neither of those are what you are describing
both are low power, both are low battery life, but both work fine since you only need to go an hour or two away from an outlet
https://youtu.be/kM2RCWdCs8g?si=RU_QTqb5C4THC_vc&t=2156 Getting one of these Rog Ally X for a better price just feels like it's ''worth'' it , can install Bazzite for even more performance
The ASUS ROG Ally X has finally been released, so let's do a deep dive focusing on performance, battery life, and my overall gaming experience of using this handheld PC over the past month. Long story short: this is a handheld whose battery life and performance enables you to play games on your own terms, and that cannot be said about many othe...
steam os is also probably gonna go public sometime soon
yall think switch 2 will ship with oled ?
Remarks 1) This is the pre-sale for the firstround of orders, all packages will be shipped from China warehouse. Free shipping for most countries, some remote countries and remote addresses need to pay extra shipping fee(I will contact you through the email address you left when you purchased.) 2) The package will be s
pretty cool little NAS
No hot swap
thats quitter talk 😛
lol
no
it’ll probably be LCD
likely for cost reasons
what are yalls thoughts on the ez60/63 im in-between 60he or ez60/63
ik im in the wooting server so yall are gonna be bias asf but
best to ask in #🔧│keyboard_modding
ok ty
bongocat deskmat
Linus seems to be on full-blown war with Youtube
https://www.youtube.com/watch?v=xQL-tr6l5yg
Join DeleteMe here with promo code Techquickie for 20% off: http://joindeleteme.com/techquickie
Adblocking DNS can help your webpages load more quickly...but what the heck is adblocking DNS?
List of several adblocking DNS services: https://www.makeuseof.com/best-dns-servers-to-block-internet-ads/
Changing your DNS in Windows 10 and 11: https:...
Won't have wootings software 🤷
i wouldnt be surprised
if its all scientific data, with some sort of proof, its truly a feat of engineering, but the software is a huge miss from what i have seen.
On a different channel. I mean... That's definitely poking the bear
honestly, i cant blame him, and generally speaking google and big tech is just 💀
Gasket mount is cool too
exactly, i was refering to the hardware choices both physical and electrical
just the software is left to be desired, however the good thing is they can always do better since software is usually never one and done
Time to wait forever.
My keyboard is like randomly turning off and on fast any idea what to do
...
The Python test suit is so flakey that it auto-retries failed tests.
Watch the stream here:
https://piratesoftware.live
Join the community here:
https://discord.gg/piratesoftware
#Shorts #Twitch #PirateSoftware
You get that huge ass popup every time you click a link
^
this is genuinely only for stupid people
and how do you think we as humans progress? by making mistakes. get hacked learn why you got hacked have it never repeat!
i think stupid people deserve a chance to become smarter!

@ashen spindle US gov keeping intel afloat 😄
too big to fail
Also Poland https://finance.yahoo.com/news/polands-intel-plant-gets-eu-093407688.html tho that doesnt seem cutting edge node
WARSAW (Reuters) -The European Commission has given Poland a green light to support an Intel chip assembly and testing plant with more than 7.4 billion zlotys ($1.91 billion) in state aid, the government said on Friday. The decision comes as Intel grapples with a cost-cutting drive that has raised questions whether it may delay or cancel some E...
Yeah but that’s not enough money to keep them alive if there are issues
poor intel has to figure out how to make a good chip then :D
Foundry doesn’t care about the chips they need have economic nodes
The money sink is the foundry so they need to have 18A as perfect as possible in the next few quarters so people place orders
Lame
Lowkey thinking about getting new gen airpods, so tired of my gen 1’s
Because the giant popup when you click on any link (that isn't a Discord one [screw your special case on this that's stupid]) isn't good enough. Like, if the person wants to be had that badly they would be tricked by other things that they already have.
Discord screwed up either way
Permitting their own links to bypass the check is pretty minor, but overall it's a great feature.
I'd be down for this if it affected everything.
Is there a way to migrate a ZFS pool to larger disks without having to connect them all to the machine at once to create a new pool, copy things over, remove the old one and then move the new one?
Nope
I mean who else is going fab chips in the us
You can’t upgrade them otherwise you’ll lose all of your data
You can extend zoools now
Its a new feature
That has been a thing for a while
How does this work?
It still has the same limitations. All disks most be same or greater in capacity
Wait oh shit now I onow what you mean
I'd need to pull a couple of drives, let it repair, pull a couple of drives, let it repair and then expand right?
I think I'm on 4x2TB and I want to move to much larger disk.
So I would still need to make a new pool if I want to go from 4TB to 20+?
That's going to be a massive pain.
ZFS has a rsync built in
I'm so glad I have that RAID card I can slap the drives on but I'm going to need to do something cursed to power the drives.
ZFS send -R
Do it once to get everything
Then take everything offline, do it one more time
Then swap the names
Yeah I'm going to read the docs, I'm just trying to avoid attaching all 8 drives which seems impossible.
I just use unraid and call it a day
I'm on ProxMox.
Honestly my next restart will probably be debian.
Ubraid would take forever
You'd have to add one drive, redo parity, repeat
My friend let me introduce you to the Lord and Savior truenas scale
That is true but it is miles easier to expand which makes it, imo, better for home use
They also support zfs now but I’m not using that
I've messed with that one too, I just find managing stuff with lower level tools easier and more intuitive.
Especially since every other thing I want to do requires me to do that anyway.
Scale is Debian
I want a blank slate next time and Debian is essentially that, I'm not using Arch on a server again.
hall effect, skateboard bearing mousewheel. Thoughts?
Optical encoders are pretty good for spinning stuff.
Things like car wheels can get away with hal effect because you only need the RPM at a somewhat low resolution compared to a mouse wheel.
So clean
bro hit the 10 pic limit for a single pair of iems
🫡
Have you tested them yet?
Yep
corsair bought fanatec?
https://www.youtube.com/watch?v=0MgpYgOEHWw
➡️️Discord: https://discord.gg/Vgy4xck
➡️️Instagram: https://www.instagram.com/randomcallsign/
➡️️Twitter: https://twitter.com/randomcallsign
➡️️Business email: randomcallsign.mail@gmail.com
Support the channel by using the affiliate links ( I get a percentage of the sale):
➡️️Fanatec:
EU/UK: https://fanatec.com/eu-en/?utm_medium=FAP+Banner&utm...
hopefully they wont butcher the company like they did with their modern cases and be more like how they ran elgato
Finally an interesting product.
(It has tuning switches hence the different measurements. If priced well this will probably be a great product)
Their recent cases have hot garbage so I'm assumign to make up for loss of revenue they are purchasing another company that will help fix their issues.
Better staff and knowledge.
fanatec rn has really shit customer service and major shipping issues
Nevermind then
they dont even say their items are out of stock, they just keep taking on orders on top of orders which is causing all of this
corsair cases fell off since the 4000D
I feel like many case companies have fell off really hard recently
all you hear now is lianli
theres nothing new with AIO's, cases, GPU's, or even fans???
case fans are still stupid expensive for no reason
lian li and fractal the goats of cases
Hyte has some nice premuim cases but im not a fan of vertical mounting cases
I thought LCP fans would be the next big thing but it really hasn't taken off.
isnt there a company thats just blantly copying hytes? i remember a video somewhere about it
vertical mount(only sandwhich) my beloved
Fractal, Lian Li, Antec (maybe? If they continue with their creative ideas (most recent case for example)), and Hyte have created some reall interesting and premuim cases.
I do feel lian li isn't on the top of their game like they used to be
O11 dynamics are everywhere
Be quiet even did one, which I will say had some cool aspects.
The whole easy invertability was cool plus the home theater layout.
holy bananas
https://www.youtube.com/watch?v=NHj169rOaOk&t=1s
When is this going to come out? I wonder how much the damn RGB strip ups the cost.
Thanks to be quiet! for sponsoring this video. Stay tuned for more info on the Light Base series, coming soon.
Buy be quiet! products on Newegg at https://geni.us/bequietcomputex2024
Buy be quiet! products on Amazon at https://geni.us/bequiet2computex2024
Purchases made through some store links may provide some compensation to Linus Media Grou...
that is one thiccccccccccc case
ah the benifits of having a microcenter near me
They have great deals
oh yeah for sure im just broke
i would also need to get a new gpu if i were to buy this bundle
ez
until tsmc arizona ramps up
nah its not newest node
What is better in performance
(Gateron Jade Switch or lekker 45 v2)
There's no better in that case 
Jades have a bit shorter travel distance (3.5mm) than Lekkers (4.0mm)
Both can be actuated at 0.1mm though
Ohh I was wondering that the gateron is better according to high price
Should I actually change the switchs that the keyboard comes with
fwiw Lekkers v2 are really good 
Iunno, I feel quite a difference between v1s and v2s 
L80 
L100 tons
Shooo nice 
Are you used to heavier switches or do you use toilet keycaps or metal keycaps
ceramic?

Yeah
Nah, I used L60s for quite a while, but I found them too soft for me, I pressed some keys by accident
L80s hit just the right spot 
Drop a feather on it and it’ll activate
Thats fair
I use nothing.
I dont have my wooting board.
80he waiting experience
You don't even have UwU? 
i feel like L60s are too heavy lol
im just used to 45's on my old keyboard
ya'll need more finger strength
Or can be used as a media controller 
personally im a 40 gram enjoyer
Considering an UwU so the wait will be slightly easier but than I wouldnt have a use for it when my 80he arrives, would have to force myself to use it even though my 80he would be able to do the exact same thing as UwU
best media controller ive had
I'd rather buy another rp2040 for $50 bucks to do the media stuff than an uwu
I have only 5 UwUs, use them for almost everything
I want to integrate last one with ESP32 to control Home Assistant 
more keys, oled display, encoder knob
Hol up, since when RP2040 costs $50 
since like forever
too swedish
can get one for 50 usd here too, they're pretty affordable
its an amazing bit of kit for the $
What’s some good mouse pads around 40 bucks?
artisan zero soft
Any alternatives? Just looking for options
Saturn
Which one
Microsoft has officially announced its intent to move security measures out of the kernel, following the Crowdstrike disaster a few short months ago. The removal of kernel access for security solutions would likely revolutionise running Windows games on the Steam Deck and other Linux systems.

ehhhh thats way too optimistic
them changing how AC access can work doesnt mean its suddenly in a way that would also work on linux via wine
MUAHAHAHA
Fuck yeah!
I don't care if it means if more games will work on Linux or not, finally game devs will have to think how to make a functional anti-cheat in a way other than "stuff everything into kernel"
Thank you Microsoft, thank you Crowdstrike 
I mean this is really an article just filled with corpo speak, it could still keep AC code in kernel lol
Hopefully not
There's no reason to keep AC in kernel, besides "we are too lazy to think about proper solutions" 
