I suspect he won't want to get into thorny PR issues, but probably company organization. It's easy to imagine a disorganized startup scaling poorly, and those within it wanting guidance from highly-scaled FB.
It seems you are implying that this sort of arrangement is fundamentally unhealthy for a market focused on accurate price discovery, and I think that's trivially true.
Some investing incentives are aligned with accurate price discovery, some are not (warren buffet vs a pump and dump).
and dont get me wrong, i am glad all types exist and meet in the market.
what i am implying above is that i view a management team that makes decisions based on share price as about as delusional as one that drinks its own urine for power ahead of important meetings.
For me, the top three were not verified journalists.
Yes, legitimate journalists are sometimes arrested by police, and this website documents those cases accurately.
Seeing that a substantial number of their incidents are misleading or false, however, takes away from the validity of their data.
I can trust them to report an individual incident accurately in their incidents involving legitimate journalists, but I cannot not trust their data. As every journalist knows — one false incident and the credibility of your data is lost.
The northern counties are mostly wilderness, with sparse population and government. Let's be real, anywhere is closer to authoritarian by comparison, but it doesn't make the latter authoritarian.
Just because Portland has zoning laws and historic districts doesn't make it authoritarian. I'd argue Portland is pretty minimally restricted compared to any other US city. Besides not being able to shoot guns in the middle of the old port, and having some red tape preventing you from knocking down the west end to build steel and glass buildings, I'm curious what is remotely authoritarian about the place.
Then again, I'm from a bit south of Portland (and originally from away, which Mainers seem to care about in perpetuity), and moved away to SF a couple years back. My perspective could just be off?
A city can function just fine with out a bunch of local by-laws controlling what you can and can't do on your own property and proactive enforcement of local codes and minor civil infractions that aren't harming anyone. I live in one such city (of similar size). It's awesome.
Portland's problem in my observation is the wealth and cultural norms (not the same thing as the politics) of the tourists who become permanent residents and an economic impetus to keep things quaint looking for the tourists. Nobody wants tell the golden goose to stop crapping on the lawn.
So anywhere with zoning and parking tickets is authoritarian? Come on. What, specifically, is Portland doing that you'd consider to be authoritarian, and what would you propose in its place?
Also, tourists who become permanent residents are just residents. Trying to paint a group of fellow citizens as outsiders is a negative pattern, IMHO.
>So anywhere with zoning and parking tickets is authoritarian? Come on. What, specifically, is Portland doing that you'd consider to be authoritarian, and what would you propose in its place?
Zoning is inherently authoritarian and an affront to individual liberty.
Parking tickets depends on whether they write citations for things that aren't harming anyone, like people parking unregistered stuff on the street where there's ample parking available. If you're enforcing minor laws just because they're there and forcing people to step in line when them doing whatever doesn't appear to be bothering anyone then that passes my duck test for authoritarianism.
Frankly from the rest of your comments in here you're coming across like a masshole who thinks Portland is perfect because they don't have busybodies calling the cops on people over nothing and cops just chilling waiting to see someone do something so they can go fishing (or waiting to get one of those calls). And for the record, the poor parts of MA aren't authoritarian like that but people from the poor parts don't retire to Portland.
>Trying to paint a group of fellow citizens as outsiders is a negative pattern,
They're from elsewhere and are of a different culture. Sounds like a reasonable definition of "outsider" to me.
>Zoning is inherently authoritarian and an affront to individual liberty.
> Parking tickets depends on whether they write citations for things that aren't harming anyone, like people parking unregistered stuff on the street where there's ample parking available. If you're enforcing minor laws just because they're there and forcing people to step in line when them doing whatever doesn't appear to be bothering anyone then that passes my duck test for authoritarianism.
You've effectively painted all cities as authoritarian. If that's your position, fine, feel free to include Portland. But I still don't see any specific examples beyond has zoning, has police who might enforce its laws, etc. I think that becomes a very broad brush with which to paint anywhere that isn't rural as authoritarian, and I don't agree with you.
> Frankly from the rest of your comments in here you're coming across like a masshole who thinks Portland is perfect
Wrong on both counts. Portland has its issues, but I don't think heavy-handed enforcement of its many laws is one of them. Diversifying its economy away from tourism, and expanding its base away from 3-4 large, very legacy employers, would be two big ones in my mind.
> They're from elsewhere and are of a different culture. Sounds like a reasonable definition of "outsider" to me.
Authoritarians love in-groups and out-groups. Just a hop, skip, and jump to nationalism and fascism. Not everyone that moves into a place is going to want to change it to their ideal, but they're going to have their own perspectives, and I see no reason not to respect them.
Not the OP, but I've reached a similar place to the OP (I've given up looking for paid software engineering work for now). Why not get better at whiteboarding? Because it's only useful for getting a job in certain types of companies. It's not a useful skill in doing the job. People spend hundreds of hours practicing to answer whiteboard interview questions - more power to them if they actually need the gig really bad. I just don't want to play the game anymore. Fortunately, there are companies (usually small ones) that aren't obsessed with whiteboarding - my last few gigs have been at places like that. Usually the hiring folks are older (as am I) and they remember what hiring and interviewing were like 20+ years ago.
Some sort of peacocking isn't useful for maintaining a good relationship with a mate, but it's usually important for _getting into_ a relationship... The same thing goes with whiteboarding and interviews.
Because every second that I spend on small-batch academic exercises, is a second not spent working on ship code.
Here's how I spent today:
I woke up at 5AM, like I always do, and did my two-mile walk. During the walk, I sorted through today's job. I'm working on a social media app, and I'm setting up the baseline (admin) stuff. I needed to add the capability to convert "standard" users to "manager" users (and vice-versa), and I'll also need to add UI in the app (native Swift iOS/iPadOS/Catalyst app) to manage permissions.
I figured out how I would do it. It was a combination of work on the backend (I needed to add some functionality to the admin user layer), the SDK (I needed to add a couple of methods to funnel the UI requests to the REST API), and the app, itself (I needed to add a button to the user edit screen). The tricky part would be the backend work. I needed to do this in a manner that would not invite any security compromises, and would catch errors. I also wanted to leverage the current structure, as opposed to introducing new structure.
Also, I was a dumbass, and used Git submodules in the backend (it's a "layer cake" model). That makes modification a pain.
I don't write stuff down, if I can help it. After my half-hour walk, I knew what I needed to do, and, by 7AM, I had the basic framework in place on the backend. I couldn't test it until I also had the work done on the SDK, so I started that (it wasn't much code).
Since I wrote the backend a couple of years ago, I also spent time, groping around, re-learning it, and getting my head out of "Swift Mode." The biggest mistake I make, is forgetting to end lines with semicolons.
This is where my extremely disciplined coding standards pay off. 99% of the time, I'm the poor schlub that needs to relearn the code, so I make sure that I structure and document very well.
By 9AM, I had the whole stack in place, and there were a number of bugs. I like to test, so I was able to figure out where they happened. Most were in the backend, so I spent a lot of time with Charles Proxy, examining the exchange. Some of the bugs required a fairly substantial architectural change. That's pretty common, so I write in a layered, modular fashion with lots of hooks. Makes that kind of refactoring go smoothly.
By 5PM, I had it all working, but I need to make the app UI better. It needs a confirmation alert. Otherwise, it's pretty much done.
Tomorrow, I'll add the confirmation, and do a lot more testing. This is fairly critical stuff. I can't afford any security lapses here, and I need to make the UX as smooth as possible. Because of the nature of the work, I need to figure out the best way to provide instantaneous user feedback, while waiting for the server to do its work. I'll hammer that out in tomorrow morning's walk. I still need to do the permissions UI, but I won't get started on that, until I'm satisfied that the privilege swap works 100% (I don't move on, until I'm satisfied that my work is at "beta" level, or better).
And I spent absolutely no time at all, practicing LeetCode.
why is shipping code more important than practicing leetcode though if your goal is to get a FAANG job?
if you're struggling to find even a non-FAANG job but no one wants to work with you - perhaps you aren't as good as you think you are at the things you've mentioned.
not trying to be hostile at all here, just giving you my honest take.
> perhaps you aren't as good as you think you are at the things you've mentioned [...] not trying to be hostile
I am trying to go through every possible interpretation I can think of in which saying something like this to anyone isn't hostile, and I'm coming up empty.
It's confrontational, but there's a big difference between that and hostile.
If a person is consistently upset about not getting what they want, but also not willing to change what they are doing, that person needs a breakthrough. "Maybe you're not achieving your goals because you're not as good as you think you are" can be really useful feedback for someone who is stuck like that. I've both received and given that feedback in an athletic context, for example. It's rarely welcome in the moment, but that doesn't mean it is intended to cause harm; quite the opposite, usually.
I don't need a "breakthrough." Accepting the status quo was one of the happiest moments of my life. I really don't want to work with people that don't want to accept me for who I am; which is a person that will deliver extremely good work, for fair, respectful treatment. I'm an outstanding team member (you don't last long at a Japanese corporation, unless you do "team" well). I'm optimistic, energetic, and affable.
I've found people who want to work with me, working towards laudable goals, and I do work that I love. I won't starve to death, and there's the very real possibility that what I'm doing will end well. I'm pretty good at what I do, and what I do, is make stuff that works.
It gives me the luxury of saying "Guv! Why's that chap in the crown starkers?".
Whenever there's a back-and-forth about LeetCode tests, it eventually gets down to "Well, I was hazed, so you get hazed, too."
That sounds like a sensible baseline for selecting engineering staff.
My God. Why would I want a FAANG job? I'm quite aware of the environment. I'd rather bang rusty carpet tacks through my thumb.
I like coding. I want to enjoy what I do. That's the single most important thing in my life. I spent thirty years, dancing to the organ grinder. I spent most of that as a manager, which wasn't fun.
As for how good? Feel free to look for yourself. I am an open book.
Seems like a minor technical challenge (at least in the case of games)
1. Set up a pseudo-adversary NN trained to recognize context-correct speech based on a small corpus.
2. Craft a GPT-3 prompt to get N 9s of accuracy
3.Retry if the answer fails the test from the other NN
4. Set a cap on retries based on how many 9s your prompt got
5. If cap exceeded, return a context-free or limited context response