General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
Lawrence D’Oliveiro
Programmers are also human
comments
Comments by "Lawrence D’Oliveiro" (@lawrencedoliveiro9104) on "Programmers are also human" channel.
Previous
2
Next
...
All
Regular expressions are useful, but every language has them now. Python is one that has them, and combines them nicely with its other features. E.g. re.finditer() to iterate over matches.
1
Now Emacs has graphical overlays, which let you totally customize the appearance of selected parts of your buffer.
1
Talk to me about Web2.71828 ... the e-conomy.
1
A lot of tools use FFmpeg behind the scenes, without you realizing it.
1
You use it on Windows!? Poor you.
1
Quitting Vim is like quitting smoking. It’s so easy, some people have done it hundreds of times.
1
The legendary Fabrice Bellard started the project, though I’m not sure he’s still involved with it.
1
If I want elaborate scalable graphics accurately laid out on a page, I would use SVG.
1
My first non-Apple machine was a Shuttle that came with a copy of Mandrake 9.1 “Discovery Edition” in the box. “Discovery Edition” meant it was missing the third CD with the developer tools on it. So my first exercise in Linux hacking was figuring out how to download and install the developer tools packages from the Mandrake repos.
1
I use Jupyter a lot for trying things, and also for presentations. I always test my notebooks before publishing them by using the “clear output and restart kernel” function, then running every cell again. Oh, and also clear all output before committing the notebook to version control.
1
ctypes FTW!
1
Regular expressions are useful, but every language has them now. Python is one that has them, and combines them nicely with its other features. E.g. re.finditer() to iterate over matches.
1
Using a language which needs backslashes in its identifiers? There’s your problem right there.
1
On Linux!
1
zstd is the new compression hawtness.
1
When you build it, you get man pages as well.
1
@keith3761 It’s all described in the GoPro docs.
1
And here I thought pump-n-dump was just a gas station with integrated toilet facilities.
1
@robertmazurowski5974 Sue for what, exactly?
1
Anybody who thinks that, go look up “Structure And Interpretation Of Computer Programs”. It’s an MIT undergrad course. If you manage to pass it, you might learn something about programming languages.
1
Fun fact: Python does actually include a module called “array” in its standard library. Guess what it does.
1
@kim-hendrikmerk4163 Which is better? Why not compare some examples? The following is an Elisp command I wrote which, given a two-letter country code like “nz”, converts it to appropriate Unicode to show “🇳🇿”: (defun convert-to-region-codes (beg end) "converts alphabetic characters in the selection to “region indicator symbols”." (interactive "*r") (unless (use-region-p) (ding) (keyboard-quit) ) ; unless (let ( deactivate-mark (intext (delete-and-extract-region beg end)) c ) (dotimes (i (- end beg)) (setq c (elt intext i)) (cond ((and (>= c ?A) (<= c ?Z)) (setq c (+ (- c ?A) #x1F1E6)) ) ((and (>= c ?a) (<= c ?z)) (setq c (+ (- c ?a) #x1F1E6)) ) ) ; cond (insert-char c) ) ; dotimes ) ; let ) ; convert-to-region-codes
1
Emacs can work in the terminal or with its own GUI. You have the choice.
1
What’s alt-tab? I have my windows grouped into desktops, and switch between them with CTRL-F1, CTRL-F2 etc.
1
systemd lets you write short, concise tasklets that conform to the principle of “do one thing, and do it well”.
1
It’s all the complications to disguise ads to make it harder for adblockers to recognize them.
1
“Why is he wearing a false beard?” “Because he can’t afford a real one.” Brought to you by the “Give An Elderly Joke A Home” Foundation. Thank you for giggling.
1
In your country, 220 volts counts as some advanced technology.
1
I had to hunt around, but you get that info (and a lot more besides) with “ffmpeg -help full”.
1
They should create an IDE for it, called “Jimlad”.
1
Use Linux ... or stay on Microsoft and complain.
1
VS Code makes Emacs look petite and efficient.
1
Among those who still remember it ...
1
Previous
2
Next
...
All