Viewing profile — 101914
101914
HN member- Joined
- Sun, Oct 26, 2014, 3:37 AM UTC
- HN karma
- 129
- Public activity
- 132 items
- HN profile
- View on Hacker News ↗
About 101914
No profile information was provided.
Recent public activity
- comment
-
story
Show HN: Sed-based YouTube dl
test $# = 1|| exec echo usage: $0 itag-no sed -n ' s/http:/https:/; s/m.youtube/www.youtube/; s/youtu.be/youtube/; s/embed./watch?v=/; #etc.; s/;.*//; w.'"$0"'' read a .$0b; rm .$0…
-
comment
Comment #10756743
For shells that lack echo -e and printf (yes, there are such shells; at least, I use one): echoe(){ local a=${#1}; echo $1 |dd bs=1 count=$a;}
-
comment
Comment #10245911
Indeed. My apologies. Instructions to get the URL to the Hartl draft are the same, except: Substitute "learnenough.com/command-line" for "conqueringthecommandline.com/book" Script …
- comment
- comment
-
comment
Comment #10245500
Use the command line to get the URLs for each chapter? Go to conqueringthecommandline.com/book Save the page source Insert the filename into the script below Alternatively, omit fi…
-
comment
Comment #10212450
I guess journalists read HN looking for stories? I was suprised to spitbol mentioned on HN and now there is a story on Vice news? Alas, the interviewer asked no technical, interest…
- comment
- comment
-
comment
Comment #10107619
Original source: http://int80h.org/bsdasm/ My recollection is this was published on the author's site years before being added to the "handbook" on the FreeBSD website. I could be …
-
comment
Comment #10104673
I have a question: In his analogy, what represents the hardware and what represents the software? Wouldn't the change from horses to combustion engine be a change in hardware? And …
-
comment
Comment #10104113
This is from 2012. He's wrong of course about being the only user. I love this software, along with k/q. I admire the work Mr. Shields has put into this project. I especially like …
-
comment
Comment #10069239
Beautiful response to a recurrent misunderstanding. "Shell languages are defined by their terseness." It is common to see people put a layer of verbosity on top of the Bourne shell…
- comment
-
comment
Comment #10046154
I don't know. It is a silly term. However I would be willing to bet you are using a bootloader and a kernel written by people who are comfortable with assembly language. Call them …
-
comment
Comment #10045944
Muzzam's site: http://alotware.hol.es "Q: Why did you choose Assembly? A: It is easy, simple, and the language of real programmers." Will he still believe this when he's older? I h…
-
comment
Comment #10007940
I wrote my own. I can change it faster when YouTube changes something than waiting for someone else. YouTube makes downloading very straightforward. No need for Perl, Python or any…
- comment
-
comment
Comment #9920506
Here's a portable version for those of us who do not use Bash: a=$(printf '\xb%-47.s' \ |nc -uw1 ntp.metas.ch 123 \ |exec xxd -s40 -l4 -p) b=$(printf %d\\n 0x"$a") c=$((b-220898880…
-
comment
Comment #9878464
Q: "... why aren't you using youtube-dl?" A: "holy crap that is convuluted" I do not use Python nor a Javascript-enabled web browser to download video. Both are big, convoluted, sl…
-
comment
Comment #9874825
For me there are generally 3 steps to the process of watching a youtube video. 1. Get the video id. Retrieve HTML containing youtube /watch?v= urls or other urls that contain the v…
- comment
- comment
-
comment
Comment #9826862
Thanks for this.