Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
phihag_
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
phihag_
9y ago
Yes, any operation is easy in 2^(2^n). For instance, take addition of two 128-bit numbers x and y (seen as 64-bit int arrays) on a 64-bit big-endian CPU: sum[1] = x[1] + y[1] sum[0] = x[0] + y[0] + carry from previous operation In
2.
▲
by
phihag_
9y ago
Why don't you get a passport, government ID, or driver's license? I'm honestly interested, if that's not too personal to ask.
3.
▲
by
phihag_
10y ago
He's not using Google CDN, but Google Project Shield: https://projectshield.withgoogle.com/public/ . Project Shield is a free service.
4.
▲
by
phihag_
12y ago
We're simply making use of Python's ability to load a module from a zip file [0]. Therefore, the generation[1] is just zipping up all the files and prepending a shebang. [0] http://bugs.python.org/issue1739468 [1]
5.
▲
by
phihag_
12y ago
youtube-dl can do that out of the box, try youtube-dl --username pimlottc :ytwatchlater If you get a problem, please file a bug report at https://yt-dl.org/bug . Thanks!
6.
▲
by
phihag_
12y ago
Sorry! The problem is that our userbase is split about wanting the playlist or the video. You can create a file ~/.config/youtube-dl.conf with the content --no-playlist so that you don't have to type it out every time.
7.
▲
by
phihag_
12y ago
The problem is that this only works for some YouTube videos (for example it will fail for basically all VEVO videos), not to mention maintainability issues.
8.
▲
by
phihag_
12y ago
Please don't pass in -citw [0]! I have personally run youtube-dl on android, works fine. (Disclaimer though: I am the current lead developer, so may have missed a pitfall or two). [0] https://github.com/rg3/youtube
9.
▲
by
phihag_
12y ago
Hi, I'm the current lead developer. We update extremely frequently because our release model is different from other software; there is usually little fear of regressions (fingers crossed), and lots of tiny features (i.e. small fixes o
10.
▲
by
phihag_
12y ago
Thank you for all your contributions! Can you update that article to use video_id = self._match_id(url) and _VALID_URL = 'https?://...' though? We've also added a fair bit of "official" documentation at h
11.
▲
by
phihag_
12y ago
While -f 141 is of course perfectly fine, may I suggest -f bestaudio ? That should work fine for non-YouTube sites (soundcloud or so), and will get you a better version should YouTube one day add it. If you really prefer 141, you can also u
12.
▲
by
phihag_
12y ago
As others have pointed out, you'll need -- in this case. However, there's really no reason why youtube-dl should not detect this common problem (we also try to detect when users forget to quote URLs with ampersands). Update to you