TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Calculator Construction Set

104 pointsby cyanfover 1 year ago

10 comments

billyhoffmanover 1 year ago
I love Andy&#x27;s early history of the Mac at Folklore.org. It&#x27;s a great read.<p>A few years back, with Andy&#x27;s blessing, I extracted all the posts and converted them to Markdown, to address a few issue I found with Folklore.org:<p>* Does not have a mobile friendly layout<p>* Missing images<p>* Low res-thumbnails used in articles, requiring links out to high resolution ones. Missing copyright&#x2F;license information about the images<p>* Broken links<p>* Accessibility issues (images without ALT text, etc)<p>* Formatting issues<p>* No Metadata<p>* Table-based layouts with complex and obtuse HTML markup.<p>I find this an easier reading experience.<p>Project: <a href="https:&#x2F;&#x2F;github.com&#x2F;acidus99&#x2F;folklore.org-export">https:&#x2F;&#x2F;github.com&#x2F;acidus99&#x2F;folklore.org-export</a><p>All the posts in Markdown: <a href="https:&#x2F;&#x2F;github.com&#x2F;acidus99&#x2F;folklore.org-export&#x2F;tree&#x2F;main&#x2F;Posts">https:&#x2F;&#x2F;github.com&#x2F;acidus99&#x2F;folklore.org-export&#x2F;tree&#x2F;main&#x2F;Po...</a>
DonHopkinsover 1 year ago
I hacked an X11 window manager to take a command line argument telling it which window id to treat as the root window, then ran xcalc, discovered its window id with &quot;xwininfo&quot; or some such utility, then ran the window manager on the calculator, putting window frames around each of the calculator&#x27;s buttons, so you could resize them, move them around, open and close them to icons, etc! That was a truly customizable calculator.
zanderwohlover 1 year ago
The thing that makes a truly brilliant programmer is the ability to manage your bad manager -- to draw out demands they&#x27;re incapable of articulating.
macintuxover 1 year ago
Reminds me of Dubl-Click&#x27;s calculator construction kit for classic MacOS. I spent, I think, $75 on it back when that was a lot of money for an underemployed kid; never got any real value out of it, but was fun to play with.<p><a href="https:&#x2F;&#x2F;www.macintoshrepository.org&#x2F;1894-calculator-construction-set" rel="nofollow noreferrer">https:&#x2F;&#x2F;www.macintoshrepository.org&#x2F;1894-calculator-construc...</a>
评论 #38210986 未加载
ace2358over 1 year ago
Excellent story. Does anyone else wish we could go back to a time where designs lasted more than 2-3 years and CEOs cared a bit about it?
Zelphyrover 1 year ago
Here&#x27;s the result: <a href="https:&#x2F;&#x2F;i.insider.com&#x2F;5443c4556bb3f7f05dbaa658?width=1014" rel="nofollow noreferrer">https:&#x2F;&#x2F;i.insider.com&#x2F;5443c4556bb3f7f05dbaa658?width=1014</a>
trompover 1 year ago
The name reminds me of the Calculus of Constructions [1], the type theory underlying proof assistant Coq.<p>[1] <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Calculus_of_constructions" rel="nofollow noreferrer">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Calculus_of_constructions</a>
w0mbatover 1 year ago
I missed the old Mac calculator desk accessory so much I wrote a new version of it for current Macs (you can buy it if you want at CalculatorDA.com but I wrote it for my own nostalgia purposes and use it every day). Like the version Chris Espinosa handed to Steve Jobs it has lots of options for changing the look, but they are all modern choices, like jaggy versus anti-aliased, modern traffic light window controls vs old school close box, etc. I change up the settings depending on my mood.
NelsonMinarover 1 year ago
This reminds me of modern software that exposes all these design layout decisions to the user. Sizes of UI elements, fonts. Detailed colors. People say they love the customizability and there&#x27;s a whole world of sharable themes for things. Me, I&#x27;d prefer the software had the right visual design out of the box and didn&#x27;t need me configuring it.
评论 #38213331 未加载
cat_plus_plusover 1 year ago
We do it all the time for UX - make everything in new UI feature customizable through command line and have them tweak it until they are happy. There are always rendering differences between their mock tools and actual devices. For example, it&#x27;s impractical to render UI in same layers as the tool does, and also real time graphics drivers can not use the same algorithms as desktop image editors.<p>So seems just common sense, although I am sure back in the day it was a lot more effort to add development UI and have it fit in memory?