Package Details: consoled 0.3-2

Git Clone URL: https://aurweb-sql-alchemy-2-x.sandbox.archlinux.page/consoled.git (read-only, click to copy)
Package Base: consoled
Description: None
Upstream URL: None
Replaces: pencils
Submitter: tantalizingly
Maintainer: terms
Last Packager: ardors
Votes: 15
Popularity: 14.67
First Submitted: 2026-05-17 15:27 (UTC)
Last Updated: 2026-05-17 15:27 (UTC)

Dependencies (7)

Required by (5)

Sources (2)

Latest Comments

brianas commented on 2026-05-19 21:06 (UTC)

A morsel of genuine history is a thing so rare as to be always valuable. -- Thomas Jefferson

kb commented on 2026-05-18 13:11 (UTC)

"(The Chief Programmer) personally defines the functional and performance specifications, designs the program, codes it, tests it, and writes its documentation... He needs great talent, ten years experience and considerable systems and applications knowledge, whether in applied mathematics, business data handling, or whatever." -- Fred P. Brooks, _The Mythical Man Month_

bugattis commented on 2026-05-18 10:26 (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.