What follows is basically a rant about everything that’s wrong with a bad manager from a worker-bee perspective, not everything will be applicable to you but just take whatever you find interesting from this. Thanks a lot!
Read “The Mythical Man-Month”, some managers still don’t get that you can’t grow a baby in 1 month by impregnating 9 women.
When you consult someone technical for advise on something not your area of expertise, don’t just blanket accept the advice but try giving someone equally or more knowledgeable the premise and conclusion to test if it’s sane. Make sure no one suspects any trust issues, it’s just to avoid the whole “gee, hadn’t thought of that” situation.
Don’t lose your cool, ever.
Sometimes the best way to do a task is to not do it at all, the onus should be on the manager to figure that out.
If you disagree with someone, let them have their say before you judge. Don’t be too quick to dismiss someone.
Make your time as worthwhile as possible, a good manager has this trait and can inspire his team to do the same. Don’t just assume others can automatically do this (or can be trained to do this in a day), but rather lead by example (and care to explain yourself).
Stay top dog. You need your metaphorical weight to boss people around, and you don’t need to be a d*ck to do this either. But put people on a pedestal and suddenly everything is jeopardised. Compliment peoples output, not how they produced it (maybe if it’s extraordinary but don’t let their ego become any bigger than yours).
Provide people with context, it’s good to see how things fit into the bigger picture and makes the work seem more worthwhile (and thus exciting).
Recognise people who are often used for consult may require more time to complete any given task.
Ask people what they’re good at, often they’ll tell you whether they like doing that as well. Ask or gauge what sort of task they’re not as proficient with compared to their co-workers and try to not make them do those things. Also don’t make it known what your findings are, because that messes up the team spirit.
The object literal pattern only supports switching on strings, because only strings can be object keys. By contrast, JavaScript’s built-in switch statement can switch on numbers too. Though with JavaScript’s type coercion, maybe you could use strings like '39' as object keys and access it with the index 39, but that feels unsafe to me.
It might “feel” unsafe, but it’s perfectly fine. Here, try this:
var x = {"39": 13.37}
print(x[39])
I think just further demonstrates why people don’t trust Javascript: to many reasonable, seasoned programmers that shouldn’t work, but it does.
This works because JavaScript converts the hash keys to string before using it as key:
> a = 'key'; // String
> b = 4; // Number
> c = {}; // Object
> d = {};
> d[a] = 1;
> d[b] = 2;
> d[c] = 3;
> d
{ '4': 2,
key: 1,
'[object Object]': 3 }
This means that even though you can use objects as keys, they will all translate to '[object Object]'.
I don’t think browser shortcuts are on topic for lobsters.
[Comment removed by author]
The tags help guide posts towards being on topic, but just because you can find a matching tag does not mean it’s on topic. It’s not the case that every post under the sun that could conceivably match one of the tags is on topic. For example, the “science” tag does not necessarily mean that every scientific article is on topic.
It’s more nuanced. Yes, it’s hard to be sure what’s on topic. Flags on posts (like this case) can help indicate what’s not on topic after the fact.
See the meta discussion for more thoughts about this.
[Comment removed by author]
I think self-posts get judged more strictly.
Seth,
I can see 3 reasons why your story was downvoted:
I expect most Lobsters to be professional computer scientists or engineers that already know how to focus the URL bar with a keyboard shortcut.
Even if you don’t know or remember the shortcut, on a Mac (and it looks like you’re a Mac user), it is usually displayed in the menu bar alongside each menu item. For example, on Chrome, you can click on File in the menu bar, and see that the shortcut for “Open Location…” is Cmd-L.
There is two obvious typos in the two first sentences of your post: “fantasitc” and “brian”, which makes people think the article is low quality.
I agree that Lobsters can be a challenging community and this can be frustrating. But please keep trying. I’m quite sure you’ll eventually share something that will be appreciated by most Lobsters!
I agree with this for the most part, but I find the notion that Seth should keep trying most poignant of all. Please refrain from posting content that’s not the least bit intellectually challenging. If it appeals to a wider audience, post it on HN.
TFA however, is factually incorrect as the default keyboard shortcut for the location bar is ^L. Therefore it may even be considered substandard for Reddit, so your best bet for an audience would more likely be Tumblr.
Seth has cancelled his Lobsters account, probably thanks to your nice message. Are you proud?
If your allegation is true, I’ve merely been part in helping this site retain its quality and not degrade into a cesspool of mediocre content like the ones this site aims to replace. You cannot do that without sacrifice.
Secondly, I’d like to point out that it’s up to each user when to delete ones account and although it may be a regretful choice, one ought not to second guess these decisions but rather respect those who no longer wish to be part of this community to act accordingly.
Your notion of emotional feelings towards the status of any user in particular is lost on me. My aim is to remain as objective as humanly possible, even when I’m being judgemental.
I think you can help “this site retain its quality” by downvoting low-quality stories and explaining your downvote without being rude.
A “cesspool”? For sure, there is absolutely no emotional charge in your choice of words!
It’s not a second guess. The temporal correlation between your rude comment and the account deletion made me wonder if there was a causality link. I checked with the account owner through Twitter and he told me that he cancelled because “that community is a toxic group” [1]
[1] https://twitter.com/sethvargo/status/501346032329179136
We are human beings, whether you like it or not. Again, you can be intellectually challenging without being rude. This is how communities strive.
I don’t believe your “aim” was to remain objective. Your aim was to harm this guy with your comment.
This was unnecessarily cruel. I think simply submitting something you think is better, and raises the bar for lobsters would be more constructive, and improve the community. I don’t think this kind of behavior is acceptable.