#🔌│tech
1 messages · Page 851 of 1
shed cry that it complains about too much stuff
@wheat plume linting enforces rather specific coding style
as in spaces after each comma but not before, line breaks, braces in certain places, spaces before anf after braces, trailing commas, unused vars, trailing commas, empty line at end of file and what not
depends on how its configured tho
oo
linting also has these line length limits
thats what the rulers are for
so you can style code accordingly
keeping readability in mind
cause not everyone has a 10m wide monitor
readability is key in programming
id argue its kinda shit tho that theres a necessary hard wrapping attached to the column rulers in intellij
the same way tabs are better than spaces for indentation
having a column ruler is better than not having one
can they?
depends on the linter/language
guess i dont make any never saw it pointing out errors or mistakes
only crys about empty line at end of file
which im still not used to
resharper for example can point out a lot
for example in JS, starting a line with a ( can have some strange uninteded behaviour
can it
overkill hosts file
more like "not using a pihole"
you can host a pihole online and route everything through there
hm...
shoukd provide secret agend ad block dns for here
node is smart and intepretets that as 2 seperate statements
paste it in a browser console
enforcing semicolons fixes this ofcourse
looks like an actual compiler problem tho
cause js doesnt specify ;
but smth like (await x())()
is completely valid
nope this is JS
async function x () {
return new Promise(resolve => {
setTimeout(resolve, 2000, function() {
console.log('Hello')
})
})
}
async function main() {
(await x())()
}
main()
works no issues
so yes its valid code
thats not what the issue is
simple () is just an expression
yes that is what the issue is
js doesnt see that "aa" is a string thats supposed to be assigned to global.a
( can be part of the previous expression in js
so this is a clear problem of the parsing and lexing
tbf tho you usually dont put expressions into ()
cause such on the fly defining and executing is not necessary most of the times
id understand smth like a = aa
causing this
but neither a = 1234 nor a = "abc" should cause this since both arent valid function names
I think the main point is, smth like this can have unwanted effects and your normal editor isn't catching that
the editor clearly does a better job than the js parser here
its valid js, it is very weird to do something like that though
i might dm a guy who works on node and v8 so he can look into why the parser doesnt catch on to this
BUT it can happen
rn it could yes
theyre not gonna change this, its valid JS. someone probably relies on this :p
on in the string case yes..
but it can be anything on the previous line
yuore technically right, but youre missing the point
... and thats where linters help
not writing shit code would prob also help
thats besides the point
idk js so I cant talk about this case, but sometimes you just dont know or forget an interaction and make a mistake like this, so you write non shit code by using the linter
your point is kinda like "why use a profiler if you could just write perfect code"
async function x () {
return new Promise(resolve => {
setTimeout(resolve, 2000, function() {
console.log('Hello')
})
})
}
async function main() {
let a = "abc"
let func = await x()
if (typeof func !== "function") {
return
}
func()
}
main()
in an actual use case
ud write code like this
instead of just shortening it to (await x())()

even of you place the semicolon behind "abc" you get tons of other errors not even the linter would complain about
and the traces dont help either
cause youd just get "PromiseResolve is not a function"
gg
or PromiseReject
ok other point, I had a for loop where I needed to access something from a list, at the iterator index. Later I needed to move that to another thread, by doing so the actual execution was in another scope and I forgot about that at the moment. Then resharper was telling me that I'm using the iterator out of scope which may lead to potential unwanted results (which was correct here)
ofc not
it also doesnt replace getting rid of bad coding habbits
most linters also do a bit of static analysis these days
I dont code in shit ways and then use autoformat to change it, I code the way I know it, if resharper tells me "hey this could be better" I take a look at it, and if it is better, I then use that from there on
resharper is a code analysis tool isnt it
it has multiple things, analysis too yes
apparently linters are not even meant to give code style errors
lint, or a linter, is a tool that analyzes source code to flag programming errors, bugs, stylistic errors, and suspicious constructs.
guess i never actually used a linter then
ah wait stylistic errors right near the end
huh eslint actually just provides stylistic error checking
Eslint can also be set to actually auto-fix your code too
doesnt that just enforce styling rules tho
as in "no trailing comma" -> removes trailing comma
at least thats what the fix command did in the cases i tried it
almost forgot to reenablr the semicolon styling rule in eslint
phew
?
i disabled the semicolon enforcement for testing the whole thing that sparked this
basically as if not using eslint
clearly eslint didnt care that this technically produced non working code tho
I am a little confused. ESlint is used for JS and JS works without semicolons in 99% cases
o no, opened a twitch stream and got an ad
I hope it was just a one time issue of my adblock not coming in fast enough

@reef patrol seen this https://www.velocifiretech.com/product/dumang-dk6-ergo-v2
That's... actually really interesting. I wonder if latency sucks with all of that weirdness with detecting keys like that.
hmm they say that it has 1ms
The price though... yikes 😄
That is some absolute next-level mad-ladery
@ivory geyser #🔌│tech message
thats where it started
and my point was eslint is purely for styling
thus linting wont fix that
Well most importantly, good JS going to a browser should go through transpiler anyway.
What you write most of the time with JS is source code nowadays.
why would you transpile it tho
Because you want it to be minimized or because you need to support older browsers that dont support new features. Or because you want to write in TypeScript instead of JS, but browsers cant read it, so you need to get it to JS first.
Yeah gotta have that IE6 support still
lol no i basically only code for FF, chrom and safariman
ie can go die
ill just redirect anyone with incompatible browsers to firefox or chrome download
easy fix
the whole blacklist/whitelist thing is a fkin joke.
same goes for master/slave
and any other non-sense of the like.
Before my review of the One Plus Nord, here are my early thoughts on the best value phone of the year and the new OnePlus Buds.
If you want to support the channel, consider a Dave2D membership by clicking the “Join” button above!
the madlad spray painted the charger cable blue also
@pale sigil kind of, what do you need
I did not like the foam tips that came with it, felt even worse for fit
@halcyon moss
Comply is the best foam company.
Hey Linux nerds what's the secret trick to recording line in and mic in simultaneously, on Windows this is ez pz just works.. Linux I have no idea what ALSA / PA incantations I have to write
I'm only interested in audio
No I want it to work properly as 2 separate inputs
That I can then plug into whatever I want
oh, im not sure
the most advanced sound stuff I had to do was to try to get also mixer setup right with that stupid hard to use command line UI
@crimson wigeon arecord should do the trick. be sure to also mess in alsamixer. if arecord does not work, try using two of them and merging them after. first go into .asoundrc and configure your main "input" device to be both line in and mic in to be merged to be that device. then, use arecord.
I don't want them merged I want to keep them separate
well, the best thing I can think of is to both record them at once and merge them at the end
there might be other possibilities that i am unaware of however.
JACK could also be a possibility. Have no experience with it though so ymmv.
Jack is amazing but it only gives me one recording source
Wish I could help you but I can't. More than likely your configuration is wrong.
Alright I'll reword it: currently in Pulse I have one source, which I can switch between all the ports... I want 2 sources so I can have 2 ports at the same time
No clue then. Sorry.
I will admit that you're correct about the Windows part. Audio in Linux sucks.
windows cant use my headphones when I plug them in unless I reboot :/
USB based headphones?
audio jack
still plays via laptop speaker -.-
As in here I want another "Built-in Audio Analog Stereo"..
We’ve been over this, it’s gotta be some driver issue or issue with the laptop/headset, not windows most likely
yeah some dell crap
@crimson wigeon so just to be sure, you do not want to mix audio as a single input. you just want two inputs instead of one?
Yes
The easiest way to get both as a seperate device would be just to use ALSA.
I am not aware of any other way
Unless you got a 3.5mm to USB or some other non-sense that pulseaudio would like to play nice with.
If you don't mind me asking what are you trying to do?
id guess record 2 audio signals
Well yeah but what for? If he's trying to do that then ALSA can do that just fine.
He doesn't want to merge them either.
prob for mixing later
cant imagine many reasons otherwise but only they know what it really is
I mean if you go into alsamixer you can set both devices as inputs and use both.
Then just use arecord on both.
Various audio shenanigans, I'd prefer to keep it in Pulse (and perhaps Jack) so it's compatible
Then I don't know anymore. I did all I could. Unless @wheat plume decides to become a PulseAudio master, you're more than likely SOL. ¯_(ツ)_/¯
Also search engines.
Hmmmm... I've kinda gotten it to kinda work but the quality is mud butt 🤔
Now I wonder if PipeWire handles this better 🤔
@golden girder so explain why you think its superior to use the source code part for binaries
It seems to me that your intention is just to denunciate me and because I give a shit about that I can't care less to discuss about that.
At the end of the day the binary is still out there, so what is the problem?
Saves the trouble of anyone needing to compile it manually. Just be thankful.
Ordering https://www.fractal-design.com/products/cases/meshify/meshify-s2-tempered-glass/Black-tgd/
should be here this Friday
Planning to do some modding of that case
First thing is that I will probably “build in” wireless charger
Do you have Any ideas what modding to do?
could add in those cheap displays that show your stats or whatever
like comp temps and all that fancy shnazzle
Good idea, if I can find some simpler way to do so, I will 😄
@misty pier do you know any simple way to do it? I mean, would be best if there is some display that connects just with usb, and has software for it.
some people bought those displays that work with raspberry pis
It's honestly easier to plug in a small panel traditionally.
hooked via hdmi and micro usb i think?
Most people use small raspberry pi displays
i've thought about getting something like that for my case
Cheap, easy to install and quick to get.
That meshify s2 case imo looks so good
wish fractal refreshed their older itx cases
Large ass Google update
Wtf is happening??
have you tried googling what the google update changes
Xd I'm going to
psure that destroys the internet
no phanteks love pepeHands
i think in terms of usability and features phanteks might be top atm but their aesthetic could use work
Damn
Like I get the design looks refreahing
Sign up for Private Internet Access VPN at https://lmg.gg/pialinus2
Learn more about MSI's MEG Z490 ACE motherboard at https://geni.us/TBIyU
On today's stream we build a mATX build with all the Ryzen goodies, in a case that's almost ITX size!
Buy AMD Ryzen 5 3600X:
On Amazo...
500 
If only I had lungs to spare to sell xD
that keyboard is upside down
Better? 😛
There's gonna be a wooting two HE wtfffffffff
okay but where is insert
can’t cheat in my favorite online video game after school man :(
https://www.youtube.com/watch?v=CtR-8qCdwrA
The Wooting HEhhehehhhhhhhhhehehehe
🤐
@reef patrol I actually expected a higher price for that lol
They actually done did it
https://www.kickstarter.com/projects/zephyrgaming/zephyr-gaming-mouse
with a goal of only $5000 how the hell do they actually expect to make a profit after all those design and tooling costs and a RRP of $150
Kinda looking forward to rocket jump ninja tearing it apart
Wooting with watercoolin when?
@digital cliff it would simply make sense, but it's Chinese companies that use this strategy chronically. This appears to be a Honk Kong group of graduates, the culture is very different there. Also just the production costs and marketing must have cost them tens of thousands already. I've been hearing about it for months.
The goal is pretty meaningless, they have 34 days on the campaign to go
they might be delusional about that success of the project
but also think about school/university/college
Is that taking tens of thousands of dollars of "loss" (debt/cost) for no reason?
No it's experience, practice, learning, investment in people by the government/individual
Lol what
New creators start with lossy products all the time
Not good for consumers I fear, unless it's actually a good item
not the zephyr
such a stupid concept
the media quotes they give are either only based on public material or say that it isn't very useful
158 USD
WTF
not at all
What is that weird paste that comes with an AMD wraith stealth cooler
It's all dried out but there's no film protecting it
iirc the standard paste that comes with all stock coolers
the dried up shit thats usually stripes or a square
altho i think its supposed to be this stiff/dry
It feels like some sticky paper
i once heard somewhere that its so weirdly non fluid so it doesnt move around while shipping meaning its "perfectly" applied when assembling
does anyone know of a good place to go to look for a good office chair
second-hand stores
ah, my bad then.
ikea
anyway I have a more powerful cooler installed so I can actually inspect the stock cooler
coooommmmm'
xD
i mean look up some ergonomic chairs and see if there's some legit reviews for those
or just get secondhand ones

so like herman miller partnered store or a step below that?
not herman miller but that price range
well normally I'd consider it, but I'm not using trains atm
and since I dont have a car that means no travel :p
tbh idk why people spend like 50€ on their chair but 4grand on their pc
yeah I dont mind spending more on something with 12 year warranty that I use like 90 hours+ a week
same... if my current dauphin breaks ill prob get either another one or even move up the range
this one is actually a hand me down
still works
20years going strong
technically same
did you make your own chair?
my dad got the one im on rn from the time he was working at simens in germany
samsung s3 neo maybe
they are rather small and iirc rootable
ya has twrp available
thats a given obviously
phones are getting larger again and soon enough
theyll go smaller again
watching videos
tbh tho its super nice to type on bigger phones
na imma get a motorla razer for work phone
razr*
the v3
in blue
i had one
sadly
broke it
dang
not even expensive
€ 0 is also what I paid for mine, though that is not entirely fair. I can basically take stuff like that from work in general if I want to.
It's 19 years old but It's just very comfortable for me at least.
Yes but then knox is permanently tripped so you can wave goodbye to everything requiring safetynet and such
(but that's the case with most devices now, in the name of "security" you're not allowed full control of your device, how about that)
knox is a joke
Magisk generally fixes safety net checks
samsung health can still be used by changing a line in a file
for now
Tripping knox can also make it a bit harder to claim warranty or at least it was the case in the past.
If you're buying secondhand it doesn't matter anyway
Just stay far far fucking away from any Sony branded device though
Those things are fucking nightmares.
Well
Of course if you're not using any Google apps and whatnot anyway it don't matter, root away, install custom operating systems and enjoy a liberated device
They have some good headphones
Didn't sony have this problem with the camera getting shit after root or something?
yes
eitherway if you want good pictures go use a dslr or something
id still have a sony if they didnt remove the headphone jack after the xzpremium
that and not enough storage
I personally don't care much about the base storage of the device as long as I can fit my 200gb music library on a micro sd or somthing.
more then 200gb is rare anyway
or rather at least 400gb to keep some buffer
I just hope they will make the phones less long, I really don't see the need to stretch it behond 16:9
having a shorter wider phone would be much nicer
but sadly more screen diagonal is more better
I mean at this point just give us tablets with cellular capabilities for crying out loud
those exist
But are rare
not really
so is samsung
and apple with their tablet phones
they all way too big
z3 and xzp were nice sizes
the new ones i didnt even look at
well samsungs 19:9 isnt much better
apple is also 19:9 i think
not sure tho
but this is part of the reason why i want to get a razr v3i
just way more comfortable to use all day at work
plus no way i get distracted by random apps and shit
What pisses me off the most about said "dumbphones" are they aren't even that fucking dumb anymore.
battery prob still drains crazy fast
Yes but that's an older model
I'm talking about ones with 3g/4g capability.
They aren't even remotely dumb.
2g is better imo
less battery usage
better coverage
my experience with 3g/4g is awful
I wish they would have killed off 3g instead of 2g.
2g is still bloody useful.
From what I understand there where plans here to get rid of 3g before 2g
@thick elk exactly what I was referencing
also fleimi the 5310 looks way better than that 3310 redesign imo
3310 looks like a child's phone ngl
i have super bad experience with 3g aswell
i have super dope 2g and 4g coverage
i get better 5g even than 3g
fleimi one crazy idea
just buy a 2g modem
can't get dumber than that
@fair gull 5g...
Well
At least they don't have these fancy animations
I consider that a win in my book
Can anyone identify what these two ports are used for? 56150 and 4886. If it helps they're both on UDP. Update: 4886 is related to https://bugzilla.mozilla.org/show_bug.cgi?id=888268 .
RESOLVED (mcmanus) in Firefox for Android - General. Last updated 2020-05-09.
2G is ... the standard for phone calls in Europe last I checked.
T-Mobile is the brand name used by the mobile communications subsidiaries of the German telecommunications company Deutsche Telekom AG. The brand is active in the Czech Republic (T-Mobile Czech Republic), the Netherlands (T-Mobile Netherlands), Poland (T-Mobile Polska), United States (T-Mobile US), and in Hungary (Magyar Telekom).
Best coverage, more than enough bandwidth for the main purpose of a phone.
and yes 2g from telekom works absolutely fine
anywhere
2g also doesnt really have data?
thats 2.75g
aka edge
2.5 is GPRS
if u have an e
on the internet thing
its edge
i see it all the time
anyway 2g is the pmuch gold standard for making phone calls
never had that with telekom.de
like 2g is literally everywhere
(using germany as example cause i know theres a tool)
@fair gull can assure you that that is not accurate 
well if u zoom in u get more holes
but generally telekom has the best 2g coverage
in germany
i dont really care about mobile data myself
I would have to go to the nearest bigger city
cause the only times i could use it is at home and work
well I don;t care a lot as well
but I have dead spots on all streets around my village
T-Mobile US has postponed shutdown of their 2G network until 2020.[33]
LOL
t-mobile us doing the dummy move
well if they fully replaced it
2g should stay the call standard imo
unless actually better coverage through anything else
uea that is what I mean
if they replaced it fully there is no reason to really keep it
i highly doubt its fully replaced
I hate all that 5G hype in germany though
since the 4G network is still VERY lackluster
and 5G will only replace that network
4g network is actually more solid than 3g
not in my experience
well im going of of the general coverage map
I almost never have 4G
I usually have HSPA
at my hold home I couldn't use paypal 2fa
my dads place could only get 16k DSL or LTE from the neighbouring town which was behind a hill
and data cap on LTE was 30gb
@prisma crag cause the government usually doesnt build internet lines
refills were 10 euros
the providers do
that was in 2014
Hawaiian islands are small enough that they could cover it in a wifi internet solution fast 😄
doubt
well you see
avacon breitband gmbh (broadband provider from a german gas/electrical company) is spending a bit over 100mil € rn
to connect my small rural place
and the next town over
Yo, new here so not sure where to post, but I cant find where 80 black switches in the store for the korean keyboard
not really far apart
but apparently
laying down internet cables and fibre cables and building new infrastructure costs
a lot
Do people also lube/film the switches?
Cool
:o
idk what they are called
but people used the paper breadbag clips
with the 2 wires on each side
these ones
but out of the thin plastic
cut away the wire and apparently they were the exact fit
Hmm, that seems like a hack/bodge type of thing to me
ya but apparently made the stems more stable
people also put thin rubber at the bottom out point
lost my loose flaretech switches
decreasing range but dampening the sound
otherwise I would have tried filming them
someone tried and said they werent able to get the housing to clip together
@old marlin aww
altho i was sure someone else tried successfully
depends on the films ig
Get like 0,01mm film haha
would need to be super thin
with tight switches you dont want to film them
like sellers tape kinda thin
yea if the films are that thin it makes no sense anymore
Yeah, I did not understand why people were filming switches at first, but I guess some brands have loose housings
i mean there is a super super tiny amount of wiggle in the housing
but prob not enough to contribute to overall noise
id be more concerned with maybe shimming/filming the switch and housing
cause thats where a ton of wiggle room is
obviously
Comparison between filmed and unfilmed switches. Test done on the exact same alpaca switch lubed with 205g0
Get THICC films today - https://forms.gle/HajdeB2gNWVwmH8L9
More info: http://thiccfilms.com
stem wiggle doesnt matter as much though
@old marlin the flaretech switches have so much wiggle i barely hear it when holding besides my ear and wiggling the housing
have to really focus to hear it
ton of rattling when mounted tho due to tolerances in the holes of the topplate
maybe ill try to make the quietes wooting ever one day
including films between the housing halfs
like 2 layers of sellers tape or so
Ok, I remembered on of my questions was that normal keyboards use matrixes for which key is being pressed, and when you have a 60% keyboard you would have 64 switches which is 8x8 matrix whereas bigger keyboard would need bigger matrixes. Would then the 60% keyboard have less input lag/response time?
most keyboards will have 1ms response time even with full size
Wooting one is connected to a 6 line multiplexer, so its not that relevant to a wooting keyboard
I am not sure myself I read it here https://blog.wooting.nl/what-influences-keyboard-speed/ maybe they only said you could fit a 60% on 16 connections to reference so.ething, and maybe the only thing that is arfected by going to larger matrixes is the memory of the MCU
But anyway, its not that important since wooti g keyboard does not use it
i think that was a general calculation to keep with the checkerboard thing
of the chessboard
Ah, that makes sense
but generally the biggest problem is connecting all the wires to the mcu
What is this? A talk about modding Wooting?! 👀
general question i guess
about input lag
but
the question should have been about scan latency
Ah
aka how long it takes till the keyboard even knows that a key was pressed
theoretically
with fast enough components
you could reach sub micro second scan latency
but expensive
very much so
Get a USB into PS2 adapter for maximum speed! 
Take my money pls
ps2 is prob a good decision since it uses hardware interupts
Yep
PS2 will wipe the floor with any kind of scanning increase xD
Simply because of how it is made
ps2 will interupt any cpu
no matter how many ghz
its like a girlfriend
ull obey
no matter what
The theory is that PS/2 interruption is a faster input connection and USB polling. But in practice this doesn’t have to be true anymore. It’s very hard to find any PS/2 compatible keyboards and computers these days. Even if you make use of a keyboard that has it, it doesn’t guarantee it’s faster than USB polling.
It said that in the post
ud obviously build a keyboard that has ridiculous scanning rates
and ps2
plus surprisingly many gaming keyboards still have ps2
for very odd reasons
can;t remember seeing one recently
Ps/2 wooting keyboard next?
but yes the ideal keyboard would prob have some kind of ps2/usb combo shit going on
that would be the true ultimate keyboard
Let - It - Die 😄

What is the accuation point when I put my whooting one into tachyon mode?
1.6mm
Oh we are talking about Ps/2?
earliest point
Let it die
ps2 is nice
I was about to build a custom mechanical keyboard, maybe even print the pcb at my school, but now I am seriously contemplating getting wooting one and maybe swapping the keycaps/modding it a little
id do both
make the best keyboard ever
the best parts
have it have usb and ps2
and buy a wooting

I dont like RGB, I kind of even want to turn of the LED's that indicate my pc is on
An tacheon drive?
@plucky bone Wooting is pretty easy to mod, since there is no contact between the switches an the PCB - it is all just screws.
:o
No soldering or even the normal version of hotswapping.
The switches have literally no pins.
At all
They just float mid air
It is all lasers!
well
Can I make it super silent so I only hear the keycaps THOCC against the leyboard?
This post by hotswap gang.
@plucky bone u can even silence that
Niice
@plucky bone https://www.youtube.com/watch?v=JacvpiaT_y4
by putting rubber into the low point of the stem travel
and putting orings under the caps
both reduce travel distance and range
but can greatly silence it
if you wait for a wooting HE board it will be much quieter anyways
but you gotta wait awhile
the switches are made from different material
Ohhh, right
the case isnt quieter though
What does HE stabd for?
hall effect
Hall Effect
Ahh
high explosive
Like hall effect thruster
its basically the lekker but not exclusive
It uses MAGNETS!
@plucky bone no gmod in here thx
like hall effect sensor

I had a project about hall effect ion thrusters AMA
Even the new ion proppelled air plane from MIT
Cool
I really admire people that work in that field shame I could not fi d anything in Norway, so I went for electrical engineering instead
Nerds
Lol
@prisma crag thats cool
Do you have any recommendation on what to do after I finish my EE degree on what to do from there if I want to delve into aerospace?
@frozen anchor do you know when that will be released, should I wait for the HE to release or buy one now and have fun modifyi g it?
it will probably be early 2021
and idk if you should wait that depends on how much you can spend on kbs
you could potentially get a lekker if you get on the waitlist or get one second hand and you would have it around november
@prisma crag thats sweet, i think I saw some rocket competition on twitch once idk if it was in colorado tough.
@frozen anchor whats the difference between the lekker and the normal? I was thinking of getting the wooting one TKL
And modding it with different keycaps
Ah i see, is it a TKL of the lekker edition?
one uses magnets and the other uses lasers
There wont be any other TKL keyboard model for at least a year.
So if you want TKL and you like Wooting, Wooting one is your best option.
Ah I see
At least in the coming 12-16 months
Wooting Two - HE and Lekker all have the same full size keyboard style.
Maybe longer
There is likely to be a HE TKL version eventually.
But we dont know when.
And even if
@prisma crag Donyou think I can apply for a job in aerospace with only an EE degree or do you think I need something else too?
Nice
I got interested into mechanical keyboards a week ago and was prepared to spend 300$ or more because I did not like my full sized one as I was slamming it with my mouse
I would say Wooting is a good solution for a decent prebuild.
Hmm since wooting one uses laser and HE would use a magnet does that mean the only thing you have to replace for the keyboard to last indefinite is the spring and maybe the keycaps?
well the spring probably wont need to be replaced for an incredibly long time and if you use pbt doubleshot keycaps they shouldnt need to be replaced anytime soon either
pom or pps keycaps would make that last even longer
Since half of the switch is soldered to the PCB. No.
You cannot simply turn a Wooting 1/2 into a HE board.
Flaretech will stay Flaretech. Gateron HE will stay Gateron HE. No changing that.
@plucky bone the lifespan of the keeb should theoretically be somewhere between 10-34 years based on how long the PCB will hold.
Since the PCB can eventually mess up or the IR diodes will eventually give out
Pom or pps lasts longer than double/tripleshot ? @frozen anchor
longer than pbt yes
Anything double-shot lasts basically forever
pom and pps is singleshot only though
DOesnt matter what it is made from
Well ok, assuming you wont break it
you wont wear off the letter sure
Yep
@reef patrol ah, no I did not mean that just that they don't have the actuation point that gets pushed øike on standard mechanical keyboard
@frozen anchor pom and pbs and a paintbrush so you can reapply letters hehe
Or those letters that are on the front of the keycaps
true but most people who buy those just use the blanks
and also pps is incredibly hard to find anyways
i want some though
PBT is perfectly fine unless you are a true keycap gourmet lol
Lol
Ok I think I have it
I get the wooting one TKL, the wooting lekker edition and make a custom mechanical keyboard for a laugh
you can only get a lekker if you are lucky now :p
and have an empty wallet
yeah if you want a chance at the lekker you gotta go add yourself to the waitlist
Ok, ill sign up now and order the wooting ine at the same time :)
Like who needs a heavy wallet anyway
Oh sweet, I can get the korean version for cheaper :)
cheaper and +10 to the weeb stat :^)
Hehe
I am actually interested in learning korean, so maybe it will get easier to type
Support The 8-Bit Guy on Patreon:
https://www.patreon.com/8BitGuy1
Visit my website:
http://www.the8bitguy.com/
Connections Museum Seattle (footage of old teletype)
http://connectionsmuseum.org/
What a strange and wonderful dude that founder 😄
IKR
I vaguely remember Spoony talking about him and the series.
spoony?
Aka. Noah Antwiler.
idk this person

Gonna jump back to a discussion that was here earlier : 2G is phased out yet most "feature" phones are 2G only. What gives?
Wait what?
For example the re-released nokia 5310 that fleimi was talking about. It's a 2G only.
I still don't get why they killed off 2G to begin with.
it's all about maintenance of multiple type of network using different type of antenna. When there's no profit keeping the whole network, why even bother? That and it helped sell even more 3G / 4G / LTE phones
2G isn't really usable either, for anything more than text messages 🤷
Ahh yeah its tetris, you might have heard of it. Tetris is a game which i am making, i have made it, thats what the video is, god what a terrible description. I create an AI to beat the world record for the longest tetris game.
Twitter: https://twitter.com/code_bullet
Patreo...
That intro. 😆
2g is used a lot for IOT stuff
Mhmm. Widely used to send SMS messages for status changes in smart homes, alarms and such.
"smart" power meters and the likes too
Best gaming keyboard for under 100$?
A used Wooting One? Huehuehue
I got a Razer Ornata V2 and it's pretty nice IMO
Plus I got a 20$ steam gift card with it for free so shrug
I got woken up at half 8 by the doorbell being spammed
I went to look outside and saw a guy there waiting at the door and petting our dog so I go open the door and he's from some new broadband company for rural Ireland
Asking if this house has or ever had a landline phone so we could be able to sign up for their "fiber optic internet" later on
Apparently it's also a government funded company hmmmm
Why would you need landline phones for fiber? It would require a new line right?
True...
Could be that in your region the put hollow tubes at the time they installed landline phones
So they could just install fiber by blowing it through the tube
That too
Yeah that's close to what he says
He says it'll still work if we had a landline before also
I don't think this house had though
Rip
maybe its a requirement in the contract that only houses previously also serviced can be upgraded
Maybe
would make sense, government funded usually means it has some retarded restrictions/rules
lol
we got a fiber upgrade at work
city funded
no attachments added
we just have the ability to get more than 16k now
kbyte?
kb/s
oof
Tell me what VR headset I should consider? Not seeing much of a reason to consider something like a Rift, Vive, or Index with those crazy prices. What do they do that something like the Odyssey+ doesn't that's worth that price hike?
imo there are only 3 to consider, Index if you want the best package and the probably best controllers, Pimax5k+ or up if you can find it in stock and have enough gpu power, or a Oculus, either rift s/go
reasons: better tracking and oculus also has some nice stuff on the oculus store like Robo Recall
and if any game does something more special that might need certain features, nobody is going to add that for a unkown vr hmd
No way I could justify spending 1k on a VR headset though. Maybe the rift s
I like the pimax's stats but that gamery look
I dont know the prices for the pimax, as they are usually out of stock and imported, but they have the biggest FoV which is why they are great despite me generally not liking 3rd-part type stuff
I mean, you actually dont see it at all while you use it
most are 700 usd+ I think but one is 450
yeah but I have to see it eventually and its hideous
oh baby
they had an addon though for hand tracking?
look, I already dont understand people who chose a cpu cooler based on looks, I have 0 understanding for chosing a vr headset based on look and not specs
oculus enabled earlier this year ye, dont really know who else has it
If it just works with games that might have me, haha
if it's game specific and relies on support then meh
I didn't think that far ahead I just got antsy inside
the oculus quest is also nice if you want something that can work without a pc and still use your pc games with a cable
prob the best "entry" option imo
https://youtu.be/EtuDS0ntaJY ExcEPT in NeBRaSKA
www.applewebmaster.com
I wouldn't normally post any filth from Microsoft on my channel but this ad is funny as f**k. Microsoft could use this commercial now cos software didn't change much.
idk....
oh
@timid chasm I myself own the vive and the rift S and go... Rift S is the best one I used so far, no tracking equipment needed, comfortable and the screen's just crisp and soothing. The vive's screen has godrays i could see from the northpole and the screendoor effect (its like seeing through a screendoor) is unbearable. I can count the pixels on the vive.
The go is the same as the rift, just a tad more uncomfortable and the cable's flimsy (and expensive) if u want to connect it to your pc
60-80$ for a usb c cable
you dont need the official cable, just make sure it meets spec and you get it cheaper
EOL for 20 series, so I assume we get ampere announcement in 2-3 weeks
if we end up getting ampere before big navi that'll hurt amd...
???? what
ooohhhhh
nVidia tends to do drivers years after cards go End of Life.
same with amd
Pretty sure 800 and 900 series are still receiving stuff.
you mean 700 :p
I think my card is stuck with 440 drivers now
I checked the website
I have 440.100 and cant update to newer
yes think 500 series is the last
I just meant 700 because 800 doesnt really exist :p
OF course they do.
i have the 860M
yes mobile only
They still exist 😛
pfft laptops are just a fake pc sold by the government to control us


800 series is just a weird abomination, 3 uArchs and numbers used for mobile only
Indiegogo, so yeah probably is
What if they're somehow shipped with a critical bug, like calls not working 
it's 2020 you delegate that to the users
i mean, i've read it days or weeks ago that the next gen nvidia cars are most likely being announced in early august, since a lot of the first founders editions are likely to be shipped late august / early september, with the rest following september / october
yes, gamescom was suspected to be where they announce it like 2 years ago, but uh, ya know, that aint happening now
https://i.redd.it/mn6eprrgykc51.jpg
Much meme, much truth
not with my experience
what
What?
@digital cliff updates should only exist for fixing bugs. features on a feature phone make no sense.
my more recent experience with amd and nvidia drivers is, that i notice the nvidia software more, partly not knowing why it seems like it's bloating my computer with a ton of "features"
geforce experience is not part of the driver
or just not install it from the start
yeah ok that part is a bit excessive for normal usage
Not to mention do you actually need the drivers?
it kinda installed itself from the beginning
If not just let Windows install the default drivers
the spacing between the menu bar items is broken ;-;
As in does he need the drivers for playing games or not?
but tbh, once I'm away from the 750 i might want to try out this shadowplay
oh intelliJ 
this happens in all apps tho
you know that drivers are not just optimizing stuff for certain games but also in general, and add stuff like integer scaling etc.
no spacing between the items ;-;
or fix security issues etc.
Quintosh, the default drivers work just fine for regular web browsing.
I've used them before.
if someone just does webbrowing they probably never even touch the drivers
i think for only doing web browsing one can also use onboard graphics 🤔
Yes but then again they also have default drivers.
Not to mention not all processors have onboard graphics.
almost every laptop has though
??????
yes your argument is valid if someone just uses it for webbrowing but it makes no sense here
Ok well
He can use DDU to clean the drivers up
And use NVCleanstall to not install all the garbage that comes with the nvidia drivers.
yes im certain the 5 kilobyte from extra stuff in the drivers is what was described as "bloat" and not the stuff in geforce experience
I mean it is bloat.
The NVContainer is not needed.
At all.
Not to mention it has telemetry.
ok but you are just talking points nobody mentioned
¯_(ツ)_/¯
No reason for iGPU if you have a GPU 😄
Plenty of reasons for iGPU even if you have a GPU
You can use your iGPU and pass your GPU.
People do it all the time.
Not to mention iGPU's are more efficient.
So no point in letting the big GPU do tiny tasks.
I'm talking laptops.
Plenty of arguments there to choose a non iGPU CPU for a gaming laptop.
Yes - Even on the desktop environment.
ehhh, often the top cpus also include an igpu
I mean sure if you don't care about battery life
AMD
In which case you might as well bring a sffpc.
You're acting as though a dedicated GPU sucks power out of the wall socket on the desktop. xD
I mean for a gaming laptop your amd choices also have an igpu
Yes - Costing you CPU performance.
Mansen, ever heard of AMD?
No are they a Tibetan tech giant?
then zen2 laptop cpus are all APUs?...
if not mistaken i could have used my old amd cpu with the integrated graphics as its own monitor output and my normal gpu for another, neither interfering or taking ressources away for the other
You are correct
The iGPU still eats system RAM.
third, technically possible, and practically worth it isn't always the same
well, look at the responses and you find the hardcore linux users tino :p
unless you're running 1gb sticks
and i'm not even sure if those exist
that's irrelevant
And if you dislike them so much, disable them in the BIOS.
idk, caring about 5W difference and the difference in ram it makes seems equally irrelevant to me
Blame the BIOS and the drivers. Oh and the kernel too.
(or just blame mage)
sorry mr warlock
an axe? lul mage? more like barbarian I guess
I hate all of you equally

Tbf the only reason I have this name is because of @pale sigil
why
See at least fleimi is nice. Unlike some of ya.
damn tino, how did you trick him into thinking that
altho it would be kinda funny playing an mmo rpg with mage if hes actually a mage
"whos pulling the adds away? le mage will"
eh normally play wizard or mage
one those two
but not the reason i picked this name
eitherway mmo rpg ain't my thing
ok mr barbarical magical wizardlock
You know sometimes I wonder how you're still alive.
How did we even get here from me saying new cards prob announced in like 3 weeks 
Ah there were some blocked messages, didn’t notice that on the phone from the side
Idc, I just wish discord would have a feature where I just don’t see anything instead of „x blocked messages“ like just don’t show me anything
Well
There are options to block those popups
But that involves ublock or a userscript or a css styling
Yeah better discord or so but I’m lazy and don’t have any of that
you know damn well why

