Reviews and Comments

Len

len@bookwyrm.social

Joined 1 year, 2 months ago

Co-host of monthly critical tech #radio show / #podcast Techno Enema, #emacs, #dactyl, #diy, #guix, working with #drupal also #communist and nudist. Part of #kompot #LibreHosting collective. #fediverse enthusiast. also #cats and #mushrooms, #foss

mastodon: @len@toot.si

This link opens in a pop-up window

started reading Črna internacionala by Tomaž Mastnak (Oranžna zbirka, #37)

Tomaž Mastnak: Črna internacionala (Paperback, Slovenian language, Založba /*cf.) No rating

Knjiga obravnava uvedbo neoliberalizma v Evropi po koncu 2. svetovne vojne. Gre za ključno poglavje …

Črno internacionalo sem pred časom kupil na knjižnem sejmu in sedaj je končno prišla na vrsto. Po prebranem uvodu, mi je že žal, da se je nisem lotil prej. Napoveduje se super zgodovinska in politična analiza Versailleskega miru, ki je temelj tudi za trenutna geopolitična razmerja. Mislim, da bo super dopolnitev teoriji, ki je predstavljena v Mastnakovem Bonapartizmu.

Robert J. Chassell: Emacs Lisp - An Introduction (Paperback, Samurai Media Limited) No rating

I'm loving the gentleness of introduction that this book provides. It goes slowly through the code examples and shows you how to read the #EmacsLisp code.

And a spoiler: Here is my attempt for the Chapter 8 exercise: (defun test-search (string) "Search for string and left a point there if it is found." (interactive "sSearch for: ") (let ((found) (current (point)) (len (length string))) (save-excursion (while (and (< (+ len current) (point-max)) (not found)) ;; why complicate? just whole string on each position. (if (string-equal string (buffer-substring-no-properties (point) (+ (point) len))) ;; we found the string (progn (message "Found!") (setq found t) ) (progn ;; else (setq current (+ 1 current)) (forward-char) ) ) ) ) (when found ;; we found the string so we move the point. (goto-char (+ current len)) ) ) )

Sophia Giovannitti: Working Girl (2023, Verso Books)

I guess that biggest impression that the book left on me was the treatment difference between artist and high-end sex workers and low-income marginalized sex workers who are criminalized and persecuted. The last essay on meaning was too "anarchist" for my taste and I missed a class perspective.

Evan Prodromou: ActivityPub (O'Reilly Media, Inc.)

ActivityPub is the new standard for connecting social networks together on the social web. This …

Gives a very nice overview of ActivityStreams2.0, ActivityPub API for clients and AP protocol.

I read a pre-published version which had some small errors in code examples and I wasn't able to set up the ap python example client that's menitioned in the book on my GNU/Linux machine. For me personally the nodejs AP server examples were also hard to understand since I avoid javascript whenever I can.

Next steps for me are reading the code of projects I'll understand, referring to landrok/activitypub php library, the activitypub and activitystreams drupal modules, pixelfed etc. This activitypub development list also looks delightful: codeberg.org/fediverse/delightful-activitypub-development

finished reading Hrošč v mravljišču by Boris Strugatsky (Spektrum)

Boris Strugatsky, Arkady Strugatsky, Drago Bajt: Hrošč v mravljišču (Hardcover, Slovenian language, Tehniška založba Slovenije)

Izkušen preiskovalec iz COMCON-2 Maxim Kammarer prejme skrivnosten ukaz, da izsledi Leva Albakina, ki se …

The story is quite short and a quick read. It is based on a similar concept as Roadside picnic but doesn't build as good of an atmosphere as Roadside picnic does. I'm looking forward to read The Time Wanderers (which are also translated in Slovene) and Hard to be a God and then I'll have quite a good overview over Strugacki brothers.