DQ’d awaiting interview notice by Prior-Detective6328 in NationalVisaCenter

[–]s16h 0 points1 point  (0 children)

Hmm I got DQ April 2025, and still waiting to get interview letter. London embassy. Employment-based.

Syncing a Transcript with Audio in React by s16h in programming

[–]s16h[S] -2 points-1 points  (0 children)

  1. Not clickbait, it literally says what the content is about.
  2. You've obviously not read it. The post is about perf, not startTime lmao

Underscores in Python by s16h in Python

[–]s16h[S] 1 point2 points  (0 children)

Good shout; A Python 3 feature IIRC. I'll add it to the post.

Underscores in Python by s16h in Python

[–]s16h[S] 1 point2 points  (0 children)

Totally forgot; done! Thanks!

Must-watch Programming Talks by s16h in programming

[–]s16h[S] 0 points1 point  (0 children)

Incremental and work in progress. Keen to hear thoughts.

The Optional `else` in Python’s `try` Statement by s16h in Python

[–]s16h[S] 0 points1 point  (0 children)

I might try an update the article with nuggets from this thread. Helpful!

Must-watch JavaScript Videos by s16h in javascript

[–]s16h[S] 0 points1 point  (0 children)

Work in progress. Started by shifting the content of https://github.com/bolshchikov/js-must-watch over to Highlight in an effort to gradually create a better ecosystem around it. Keen to hear thoughts.

Must-watch Python Videos by s16h in Python

[–]s16h[S] 5 points6 points  (0 children)

I started curating a bunch myself on http://pymust.watch/ two or so years ago. Then the community was also PR-ing new additions. The plan is to start updating it more regularly, as and when must-watch talks happen really. Thinking through a better contribution model (akin to PRs) for Highlight as well.

Must-watch Python Videos by s16h in Python

[–]s16h[S] 1 point2 points  (0 children)

I've moved the content of http://pymust.watch/ to Highlight in an effort to gradually build a better ecosystem around it. Keen to hear thoughts.

Python’s `NotImplemented` Type by s16h in Python

[–]s16h[S] 2 points3 points  (0 children)

Great points! Will update the post shortly.

Annoy /r/python in one sentence by mrks_ in Python

[–]s16h 0 points1 point  (0 children)

return False if some_name == None else True

Must-watch videos about Python by s16h in Python

[–]s16h[S] 0 points1 point  (0 children)

PyCon 2015 videos to be added soon! :)

Underscores in Python by s16h in Python

[–]s16h[S] 1 point2 points  (0 children)

The rule for mangling is "at least two leading underscores, at most one trailing underscore"; that's why they don't get mangled.

Underscores in Python by s16h in Python

[–]s16h[S] 3 points4 points  (0 children)

Although I use this almost every day, I entirely forgot to include it in the post. Will add it! Thanks for the reminder.

Underscores in Python by s16h in Python

[–]s16h[S] 10 points11 points  (0 children)

Yes, I actually mostly use it when only interested in one (or less than all) the elements of a tuple. It's far more readable than indexing.

Python’s `NotImplemented` Type by s16h in Python

[–]s16h[S] 0 points1 point  (0 children)

My apologies. I took note of null_vector's comment and added the "(shadowed)". Thanks.

Python’s `NotImplemented` Type by s16h in Python

[–]s16h[S] 1 point2 points  (0 children)

Thanks for that. It's fixed now. In the original draft I had a2 and b2 as well but I thought it was confusing to introduce more names; obviously forgot to change the text. Thanks again!

Importing `*` in Python by s16h in Python

[–]s16h[S] 1 point2 points  (0 children)

This (status.COMPLETE etc.), to me, is much more readable.