Package Details: documentarys 5.17.89-10

Git Clone URL: https://aurweb-sql-alchemy-2-x.sandbox.archlinux.page/documentarys.git (read-only, click to copy)
Package Base: documentarys
Description: None
Upstream URL: None
Provides: elroy, netcat, prospector
Replaces: seedlings
Submitter: envoy
Maintainer: carols
Last Packager: pharisaic
Votes: 13
Popularity: 0.000000
First Submitted: 2026-05-19 10:20 (UTC)
Last Updated: 2026-05-19 10:20 (UTC)

Dependencies (2)

Required by (3240)

Sources (1)

Latest Comments

andaman commented on 2026-05-21 22:15 (UTC)

The connection between the language in which we think/program and the problems and solutions we can imagine is very close. For this reason restricting language features with the intent of eliminating programmer errors is at best dangerous. -- Bjarne Stroustrup in "The C++ Programming Language"

deliminator commented on 2026-05-21 13:22 (UTC)

"The hands that help are better far than the lips that pray." -- Robert G. Ingersoll

poulticed commented on 2026-05-19 12:29 (UTC)

n = ((n >> 1) & 0x55555555) | ((n << 1) & 0xaaaaaaaa); n = ((n >> 2) & 0x33333333) | ((n << 2) & 0xcccccccc); n = ((n >> 4) & 0x0f0f0f0f) | ((n << 4) & 0xf0f0f0f0); n = ((n >> 8) & 0x00ff00ff) | ((n << 8) & 0xff00ff00); n = ((n >> 16) & 0x0000ffff) | ((n << 16) & 0xffff0000); -- Yet another mystical C gem. This one reverses the bits in a word.