HN user

henry_flower

998 karma
Posts47
Comments67
View on HN
sigwait.org 1mo ago

Linux Apps That Maybe Run

henry_flower
1pts0
sigwait.org 1mo ago

Making Debian or Fedora persistent live images

henry_flower
89pts13
macfolkloreradio.com 3mo ago

Left Behind: A BeOS and Be Incorporated Post-Mortem (2024)

henry_flower
2pts0
sigwait.org 7mo ago

Obfuscating Image Links

henry_flower
1pts0
sigwait.org 8mo ago

Offline Math: Converting LaTeX to SVG with MathJax

henry_flower
47pts11
sigwait.org 10mo ago

Comparing Compression (2024)

henry_flower
2pts0
sourceforge.net 10mo ago

SourceForge Sunsets Developer Web Hosting

henry_flower
3pts0
sigwait.org 11mo ago

The Size of Adobe Reader Installers Through the Years

henry_flower
190pts137
sigwait.org 1y ago

Escape Sequences in File Names

henry_flower
3pts0
www.pcworld.com 1y ago

Microsoft is paywalling AI features in Notepad and Paint

henry_flower
5pts1
www.tuhs.org 1y ago

1972 Unix V2 "Beta" Resurrected

henry_flower
425pts148
lists.gnu.org 1y ago

Doug McIlroy on 'use case' and 'concatenate'

henry_flower
1pts0
sigwait.org 1y ago

Exploring pre-1990 versions of wc(1) (2023)

henry_flower
58pts25
sigwait.org 2y ago

The Cheapest NAS

henry_flower
342pts297
sigwait.org 2y ago

Shell Postcards

henry_flower
2pts0
sigwait.org 3y ago

Adding Line Numbers to Code Blocks

henry_flower
1pts0
sigwait.org 3y ago

You, Robot (1991)

henry_flower
1pts0
sigwait.org 3y ago

A Practical Guide to ePub

henry_flower
3pts0
gromnitsky.blogspot.com 3y ago

I Asked ChatGPT How to Resolve a Symlink in PowerShell

henry_flower
1pts0
gromnitsky.blogspot.com 3y ago

Nokogiri vs. Xsltproc

henry_flower
2pts0
gromnitsky.users.sourceforge.net 3y ago

Kindle and ePub

henry_flower
1pts0
gromnitsky.blogspot.com 4y ago

In search of a decent offline Android Polish dictionary

henry_flower
2pts0
gromnitsky.blogspot.com 4y ago

Basic Latin, Diacritical Marks and IMDB

henry_flower
1pts0
sigwait.tk 6y ago

On Infantilization in Digital Environments (2015)

henry_flower
61pts49
github.com 8y ago

Show HN: A tiny, ludicrous podcast client written in GNU Make with bits of Ruby

henry_flower
2pts0
gromnitsky.users.sourceforge.net 8y ago

Notes for new Make users

henry_flower
332pts99
github.com 8y ago

How to use stimulusjs with GNU Make instead of webpack

henry_flower
1pts0
gromnitsky.blogspot.com 9y ago

How GNU Make's Patsubst Function Really Works

henry_flower
2pts0
incolumitas.com 10y ago

Typosquatting in Programming Language Package Managers [pdf]

henry_flower
3pts0
gromnitsky.blogspot.com 10y ago

JavaScript Tools with GNU Make

henry_flower
1pts0

That was super interesting!

I think you should self-publish. With your existing audience, you'd sell plenty of copies, and nobody would push "AI" into your work.

not exactly daily, but I use llama3.2-vision (via ollama) to generate a .txt file alongside every photo I take, containing a description of the photo. then I can just grep for, say, "selfie":

    $ alias omglol='find -name \*txt | xargs -n50 grep -li'
    $ omglol selfie
    ./10/IMG_20241019_204444.txt
    ./09/IMG_20240930_082108.txt
    ./09/IMG_20240930_082118.txt
    ./07/IMG_20240712_154559.txt
    ./07/IMG_20240712_154554.txt
or to do a slide show:
    $ omglol selfie | sed s/txt/jpg/ | xargs feh

heh, I recently "ported" a Linux app to Windows and wrote a simple installer using wix 5 (it was horrible)

to even obtain wix v5: first, using scoop, I installed "dotnet-sdk"; second, using the "dotnet" command, I got the wix.exe executable via

dotnet tool install --prerelease --global wix

Heh, I started using Mutt only because of "peer pressure" during my university years: all cool guys were using it! (Still with Mutt, > 10 years later.)

I think this is somewhat akin to Emacs: startup costs are enormous, but you reap the fruits for the rest of your life.

based on my IP

heh

in my case I wish it was based on my IP

but for some unbeknownst reason, some components of the page are in Russian. I'm not in Russia; nothing in my browser request indicates I'd like to read Russian.

that key combo is hardcoded in LISP

isearch-forward turns on a minor mode that has it's own keymap

a snippet from isearch.el:

  (defvar isearch-mode-map
    ...
    ;; Several non-printing chars change the searching behavior.
    (define-key map "\C-s" 'isearch-repeat-forward)
    (define-key map "\C-r" 'isearch-repeat-backward)
hence to redefine C-s, to, say F12:
  (global-set-key [f12] 'isearch-forward)
  (define-key isearch-mode-map [f12] 'isearch-repeat-forward)
& so on

I don't see what is the problem here

here's an example:

    https://developer.twitter.com/en/docs/tweets/curate-a-collection/api-reference/get-collections-entries
scroll to the very end of the page, where twitter cheerfully asks "Was this document helpful?"

why did they choose a happy/sad face, instead of, I don't know, regular buttons?

who's the indented audience of that page? kids? I think not. It's probably a 30-something year old grumpy, bearded guy, yet...

I think her main grievance is:

1) you are not a child

2) yet, you're suddenly start being addressed as a child

3) you get used to it (even if you protest at first; or maybe the silent majority doesn't mind?)

4) because of 2&3, with time, you became infantile (which, certainly, could be an exaggeration)

5) apparently, this technique works quite well for "customer retention"--you feel "safe", for everything that is presented to you is cosy, cartoonish, kid-oriented staff

just a user; wrote several elisp pkgs

Not being paid for a labour of love does not make one exempt from criticism.

I'm fine w/ criticism; I'm just of an opinion that the word "shit" is a bit too much; also I'm fascinated how the current emacs maintainer handles such a complex proj

The software's user interface

which part? the majority of the user-visible 'interface' consists of so called interactive elisp cmds (runnable via M-x ...); the help for such cmds (or the whole modes) gets extracted from the corresponding fn comments & gets updated in real time when/if the code changes.

and on-line documentation should be implemented in my language, but it's available only in English.

this is tough. the user's manual is huge. it'd probably take a year for a pro translator to produce a meaningful result

the elisp manual is even bigger

the tutorial is available in multiple lang, though

> M-x speedbar That displays a hierarchical file browser in a separate window, not a list of documents.

click w/ the rigth btn in the speedbar win: a popup menu will appear. select speedbar->displays->buffers

Emacs is shit

pls don't say that :( there's exactly 0 ppl in the world who get paid for writing emacs. nobody is selling the editor as snake oil liniment that ought to remove all the grievances.

No localisation

what do you mean? I can read/type in emacs in all 3 human lang I know/use daily.

No tabs

true

although `M-x speedbar` can display the list of all open buffers in a vertical fashion

Window cannot be maximised prior to setting some obscure option

I usually just press F11

Menu items and buttons do not have underlined letters (i.e. accelerators)

true

The vast majority of the options cannot be accessed through the menu

true

or dialogues, instead you get a non-editable document with embedded buttons

why do you care if it's not a 'native' dlg? the mouse works. C-s works.

Configuration is stored as code

hehehe

that's the whole point, m8!

Keys cannot be rebound from the menu.

true

The list could go on and on

I was hoping you'd mention the idiocy (I cannot find a more proper word) w/ buffers that have long lines. every time I open some 2MB xml file that was generated as 1 string, emacs suddenly becomes dog slow. this is what should be criticized, not the inability to rebound keys from the menu, imo.

I think the essence of any live streaming is an active chat; viewers ask questions, point out mistakes, &c. you 'engage' w/ your audience irt.

the author's broad, unsupported generalizations

surprised to see the author's use of "the Ukraine"

heh

just look up his linkedin; apparently he has spent his prime years working in Russia as some kind of tv producer there.