Punish people for things they have no control over. You’re a smart one.
Punish people for things they have no control over. You’re a smart one.
You could look at the requests coming from your machine to see if it’s directly querying the site or sending a query to the third party server to fetch the details.
My hunch would be it’s a local request but it’s easy enough to confirm.
Is it hotswap or are the switches soldered into the board? If the former then yes, first thing to try is re-seat the switch in the socket, check that a pin on the switch isn’t bent (and thus not inserting into the socket at all). The second thing to check (or first if soldered) is, using a multimeter, check continuity between the switch and its row/column and between the switch and its diode and check that it is working.
In either case, if re-seating isn’t enough, corrosion or oxidation could cause the behaviour. If hotswap, check for corrosion or oxidation on the switch contacts and the hotswap socket. gently try to remove any layer of oxidised material with something lightly abrasive like sand paper, or even just insert and remove it a few times to try to rub it off. Clean with isopropyl alcohol. If still not working try to reflow the solder joints.
If all that fails you may need to run a small wire to fix a broken or corroded connection but that’s unlikely I’d imagine.
It’s a nonsensical statement to us programmers too.
You might want to have a browse of !ergomechkeyboards@lemmy.world as well as the subreddit. Within that budget the best bet is likely something DIY. Though there is a middle ground with vendors offering build services and kits that are hot-swappable, turning “building” into “assembling”.
Have a look at some popular choices and lists likes in the EMK wiki that I put together.
Most of the time it’s not exactly useful and some of the positions are awkward (e.g. 8, 9, 10), counting to 31 on one hand is maybe useful.
More useful IMO is counting in base 6 and treating each hand as a single digit. i.e counting to 35 on 2 hands without awkward fingerings. Better than 10, less awkward than binary.
Even with AI models that can identify that there are birds in the picture. Having it decide with accuracy that the picture is of a bird is still a hard problem.
I agree, I’m just answering the why question. Free software licenses don’t have non-commercial clauses and they want an NC clause.
I presume the reason they didn’t use GPL3 is because they wanted the attribution and non-commercial clauses offered by CC-BY-NC.
Not suggesting that they should not prefer to drop those clauses in favour of a copyleft free software licence. but you asked “why not” and losing those clauses is clearly an obvious candidate for why they might not want to.
Ricardo was testing in production
I didn’t notice that 7,8,9 had no effect on the count. My bad.
I know this doesn’t answer the question but I want to offer some advice instead.
In my opinion just don’t. If the company want you to have access to emails on the go then they should give you a company phone. If they don’t, why are you trying to? Don’t put work things on your personal phone.
Chars are just numbers, but yeah, an enum would work fine too, sure. The only advantage with using a char for it is that there’s no conversion needed for outputting them into strings so it’s a little easier. Less code, very readable, etc. Though yeah, thinking about it JQKA wouldn’t be numerically in the right order which could cause issues if the program did more than just implement HiLo
Yeah, just use a char for card and test
if(card < '7') count++;
else count--;
Or something, don’t mix types.
there’s also https://lemmyverse.net/communities
You would need to change from your current stab to 2x 2u stabs.
Although Idk why you would bother if you’re going to map both to space, most people map one to backspace or sometimes return.
The main difference that has me using LibreTube rather than NewPipe is because my subscriptions are on my piped account so they are synced between phone and desktop (browser). Piped is built on top of NewPipe’s extractor library anyway.
You just use three backticks to start and end a code block, it’s just markdown.
e.g.
version: '3.4'
services:
vaultwarden:
image: vaultwarden/server:latest
restart: always
# environment:
# SIGNUPS_ALLOWED: 'false'
# ADMIN_TOKEN: 'your authentication token'
ports:
- '127.0.0.1:8200:80'
volumes:
- vaultwarden-data:/data/
...
It looks extremely similar to goldeneye, even down to the HUD that pops up when you take damage. Does it use the same engine?