pkill

joined 1 year ago
[–] pkill@programming.dev 3 points 3 days ago* (last edited 3 days ago) (1 children)

The party was meant to just be the organizer of the workers, not the ruler. The degeneration took off only after Lenin's death and the 4th Congress of the Comintern, which was dominated by Troika. that's why Mayakovsky was a devout Bolshevik until Stalinzation advanced and started scrapping several progressive conquests of October, leading to his suicide at the refusal to prop up the Stalinist degeneracy.

Also Lenin was, for instance, not a big fan of the many experimental artistic movements that flourished after the Revolution, but did not suppress them, unlike Stalin.

He also regretted banning other parties (but which was necessitated by every single one of them taking up arms against Sovnarkom) and before his death wanted to offer Trotsky a post of Commisar of Internal Affairs in a desperate bid to curtail the bureaucracy, but Trotsky, unfortunately, refused.

[–] pkill@programming.dev 1 points 3 days ago (1 children)

implying that corrupt scumbag Brezhnev was a proper communist

[–] pkill@programming.dev 2 points 4 weeks ago

Akkoma's bubble feature should be ported to other software

[–] pkill@programming.dev 2 points 1 month ago

Notesnook ftw

[–] pkill@programming.dev 1 points 1 month ago

https://altcha.org is nice plus a crowdsec bouncer

[–] pkill@programming.dev 2 points 1 month ago* (last edited 1 month ago)

In Clojure, -> is used for inserting the piped argument at the head position in the arguments of whatever it is passed to, while ->> is used for inserting it at the tail. This approach is great for working with immutable data in a series of approachable transformations, which I believe is one reason why so many Domain-Specific Languages for generative programming are written in that language, aside from its interactive REPL. Additionally, there is no need to worry about excessive copying, as this is generally well optimized.

This can be particularly useful with HoneySQL, which is more of a DSL for SQL rather than a typical ORM tool. For example:

(defn apply-filters [query filters]
"applies WHERE clauses to a query"
  (reduce (fn [q [column value]]
            (helpers/where q [:= column value]))
          query
          filters))

(defn build-dynamic-query [{:keys [table columns filters sort-by limit]}]
  (-> {}
      (helpers/select columns)
      (helpers/from table)
      (apply-filters filters)
      (helpers/order-by sort-by)
      (helpers/limit limit)
      sql/format))

;; Result - a super readable function call that resembles a natural language 
(build-dynamic-query 
  {:table :products 
   :columns [:id :name :price] 
   :filters {:category "electronics" :in-stock true}
   :sort-by [:price :desc]
   :limit 20})
[–] pkill@programming.dev 1 points 1 month ago (1 children)

Lenin was 47 in 1917

[–] pkill@programming.dev 1 points 1 month ago

(\r (frequencies "strawberry"))

[–] pkill@programming.dev 4 points 1 month ago

the 'I' in LLM stands for intelligence

[–] pkill@programming.dev 2 points 1 month ago (1 children)

lots of onions cut in rings as they resemble parentheses the most

[–] pkill@programming.dev 8 points 1 month ago (1 children)

death by specificity is a thing...
HTTPServletRequest has a fuckton of methods but 90% of them could be eliminated if one treated the data as a simple fucking map instead of creating 4 methods for each key in every record of your schemas.

 

Alt text: O'RLY? generated book cover with a donkey, navy blue accent, header: "It's only free if you don't value your time", title: "Handling Arch Linux Failures", subtitle: "Mom, please cancel my today's agenda!"

 

...from people who seem to refuse to install paredit or coloring plugins for either? ps lisp syntax ftw, it's a feature!

46
submitted 6 months ago* (last edited 6 months ago) by pkill@programming.dev to c/programmer_humor@programming.dev
 

Alternative links: YT Tubo Invidious Piped 0 Piped 1

7
submitted 6 months ago* (last edited 6 months ago) by pkill@programming.dev to c/paradoxgames@lemmy.world
 

Would anyone here be perhaps interested in developing an alternative history mod for HOI4 where the Chinese revolution of 1925 resulted in early unification of China under communist rule, leaving it in much better position to defend itself against Japan? Might also make USA even more reluctant to join the war as Japan could be much more easily left in no position to wage the Pacific War.

Might even take a spin off the Soviet opposition paths, especially focuses like "The Committee in Exile" if China decides to split from the Soviets via it's focus tree and serve as a base for launching a coup in the USSR (think Polish or Lithuanian monarchist path mechanics).

 

As in title. Do you know any good alternative i2p trackers?

view more: next ›