Just following basic rules of thumb (minimizing current loop area, length matching, impedance matching through trace width, series termination, etc.) may yield a working device, but how do you learn from that?
At some point you're already applying all those rules of thumb, but how do you then actually measure what works and what doesn't so that you can improve beyond that?
It seems it is difficult to find resources teaching that, and also the equipment needed becomes very specialized and expensive fast.
I have read that even though there are no hard rules, after getting an employment based Greencard, one should stay at the company for another 6 months to avoid problems during naturalization. Is this true?
On two occasions, once after skiing for a week and once after playing flight sims an entire Saturday, I had an intense (and very nice) feeling of gliding down a (glide)slope as I fell asleep.
The website actually started as a sort of joke by someone in the kernel community. Then it stuck around.
For example, I found it useful professionally. We're releasing a new hardware model. We're doing some in-depth performance tuning/evaluation. To understand our performance characteristics, I needed us to break down the performance change into improvement due to new hardware and reduction due to new mitigations.
Linking this page in the Jira issue was the fastest way to get the point across what we needed to look into.
It is not, at all, something I would ever recommend to lay people, or use in the actual shipping product.
Depends on the criteria. Do automated reviews count?
I set up build+test via GH actions and have GitHub run them on PR's. And make all changes through PR's.
This not only prevents "forgot to run tests" type accidents during regular development, it also helps me when I come back to a hobby project months later, and it lets me confidently do small changes (think version bumps) directly through GitHub's editor, which saves a bunch of time.
And when, against the odds, I actually do get a contribution, the infra is already there and it really cuts down my turnaround time to get it merged, bump the version and deploy the release.
Of course if a single direct push yields you the badge then I guess pretty much every solo dev gets it sooner or later. But that indirectly turns it back into a good badge, right? "Independent enough to have a life outside a standardized corporate process"?
These contacts are occasionally scheduled with organizations (schools etc.), but unscheduled for the general public.
Exchanges tend to also be one short question (how does earth look from above right now?) and one short answer (earth looks beautiful), and then it's on to the next person. Not just due to congestion, but also because the ISS is only visible for a few minutes.
Most hams use commercially made equipment, this is just renting instead of buying.
What is protected is the actual radio spectrum. If a ham rented out his rig to a commercial entity for the purpose of transmitting business information over ham frequencies, that would be wrong and illegal. But here, the actual transmissions are ham radio transmissions with no commercial value (they contain no economically useful information), so it's (most likely) fine.
Why? Most people don't have the space, money and time to ever put up big antennas and kilowatt transmitters.
This is great for them. Especially since there's practically no setup overhead and no long term commitment - so you can use this one evening, then go back to doing SOTA with a portable QRP rig (and getting talked over by the folks with kilowatt output) the next weekend. It really opens up big station operation to entire new demographics - young people or others with not a lot of money, and urban people or others with no great location or not a lot of space. Ham radio has historically not been that diverse, and if this helps with diversity that's great.
I've used a big station before (at my university. Big tower, big antenna stack, big amplifier). Sure I didn't get to build it, but just operating that thing in a busy contest environment is an experience and made me appreciate how much skill there is in the actual operation of it. I wouldn't want to do it all the time, but I actually know people who do, and myself I don't want to miss the experience of having done it.
I worked in an office meant for 80 that only ever had 35. Room to grow! It was great. Then 30 people quit.
Later I worked in a scyscraper. Our floor was never exactly full, then like 80% on the floor were laid off. Entire teams gone.
Eerie is a good way to describe it. Being more or less alone with so much space, especially when you remember better days, is not fun.
I had the same experience - facilities dutifully kept doing their thing. They also worked through one week business shutdowns. First time, food kept coming too.
Now I work from home, which can be a different kind of isolating. If people left (one way or the other) I'd hardly notice unless they're on my team. (Still prefer the homeoffice overall, but eager to see my coworkers again occasionally.)
* Not infecting others who are more at risk or cannot get the vaccine (allergies, age, availability) or are higher risk than you (age, preconditions), including anti-vaxxers (I would be devastated if a beloved family members died even if they rejected the vaccine).
* Doing your part to wipe Covid out so we get back to normal (do you have a better plan?)
* Wiping Covid out so we don't get a worse strain like the delta strain that will affect younger people.
* The lag between a particularly bad strain circulating widely and you finding out about it.
* Long Covid including brain chronic fatigue / brain fog, potential non fatal but still permanent, debilitating lung damage, cardiovascular damage leading to increased risk of strokes later on. Which has been shown to be a risk for young people as well, more than death.
* Avoiding the massive inconvenience of a potential multi week "very bad flu".
* The medical experts (gov agencies, universities, industries) across the world all strongly recommending it. (Have you at least asked your primary care physician if you should get it? Why not?)
* Benefitting from the exemptions granted to vaccinated people such as indoor dining in NYC and entering the US from Europe and vice versa.
* Keeping your job when they mandate it unofficially or officially (I've seen both).
* The demonstrated risk of dying from covid, and even more so the risk of long covid, as a young person still being way higher than the theoretical / non demonstrated risk of the vaccine. Especially since we have already vaccinated >1.5 billion people - if anything should be seriously wrong with the vaccines, fixing that and helping affected people would likely immediately become an important topic of medical research as soon as we find out.
* Fringe benefits like the lotteries for vaccinated people.
* There being clear evidence of covid being downplayed for political reasons, especially in the US and in 2020. But everywhere else and in 2021 as well. Prominent politicians who have downplayed it still having gotten the vaccine (granted, they're all old people, and your question was about young people). The same politicians constantly retreating from one wrong position to another as they are proven wrong again and again. Whereas the "other side" has so far mostly been right on every major topic.
* Political players that normally don't agree on anything agreeing on this - Russia, China and the US all have a vaccine program and recommend vaccination for essentially everyone. Inside the US, the Democrats are obviously in favor of vaccination, but do not forget that two vaccines got emergency approval while the Republicans had control of all three branches.
* Young people being vaccinated and showing up in vaccination stats influencing older people to get vaccinated.
* Last and least all the anecdotes of people who on their deathbed said they should've gotten the damn vaccine.
> Do you think it a coïncidence that most spy satellites are launched from Vandenberg?
It's not a coincidence, it's geography.
It is desirable for reconnaissance satellites to cover the entire planet regularly. That means high inclination orbits. That means southward launches (as opposed to eastward). That requires a launch site with ideally lots of ocean and not a lot of population to the south/southeast.
The US does plenty of military launches into other orbits from the east coast.
It's not only about not accidentally writing `if (x=0)`.
The `if (0==x)` style also makes it obvious that the check is correct when reviewing/reading code. Sure, a linter might catch this. But this way the reader doesn't need to rely on that. Besides many codebases allow variable assignment as part of conditional/loop expressions, and sometimes sadly it's easier to write code this way than to get a team to use a linter.
Regarding it being unnatural... you get used to it, and especially in C one needs to take care to check the return code the right way (0!=, 0==, -1!=, 0<, !, etc.), whereas the other side of the check is often more straightforward (a function call, a variable etc.), so it's nice to have the constant up front. It takes very little extra space at the front. As a bonus all the constants will visually line up nicely that way.
That's not an IETF standard, that's a draft. Anyone can publish an Internet draft. They do not necessarily reflect the position of the IETF. Furthermore, this draft is expired and was not adopted as a standard.
In addition to all the points that article makes, two more:
1. There are a lot of people that believe they already had Covid, but actually didn't.
2. A "vaccinated or recovered" policy is even harder to enforce, as there are vaccination certificates but no recovery certificates. (Yes, vaccination certificates can be faked, but it seems likely to me that a significant part of the population would be willing to lie but not falsify documents.)
Paper maps are also constantly outdated, can't record your track, and show way less extra points of interest.
Maps also cost money and take weight and take time to ship or pick up, meaning in many groups at most one person will have one. Better hope you don't have to split the group. Everyone has their phone. Offline maps can be had for free, weigh nothing and you can download it on short notice.
I also object to maps having no failure modes. They definitely wear out, or rip, or get stains. Some aren't waterproof. They are also terrible at night, even with flashlights (especially since most people will have lights with shitty CRI). And they can't zoom - so of you're farsighted, hope you don't lose your glasses...
Anti-vaxxers also hurt people who don't want to lose their loved ones who've been turned into anti-vaxxers and have been impossible to reason with because they've been inundated with anti-vax propaganda.
The references to darwinism here are especially infuriating cause in many cases it's specifically parents (older people) who are anti vaxxers. Bit late for natural selection. And also such a cruel thing to say.
At some point you're already applying all those rules of thumb, but how do you then actually measure what works and what doesn't so that you can improve beyond that?
It seems it is difficult to find resources teaching that, and also the equipment needed becomes very specialized and expensive fast.