HackerTrans
TopNewTrendsCommentsPastAskShowJobs

jollyjerry

no profile record

Submissions

What Is Date:Italy?

aesthetikx.info
156 points·by jollyjerry·2개월 전·66 comments

Hand Drawn QR Codes (2025)

sethmlarson.dev
231 points·by jollyjerry·2개월 전·45 comments

Hacking a Casio F-91W digital watch (2023)

medium.com
221 points·by jollyjerry·6개월 전·57 comments

Google Finance Beta

google.com
2 points·by jollyjerry·9개월 전·1 comments

Quiet, but Discoverable

jch.github.io
3 points·by jollyjerry·9개월 전·0 comments

Client side include feature for HTML

github.com
2 points·by jollyjerry·10개월 전·2 comments

No CSS, No JavaScript. Longevity on the Web

jch.github.io
44 points·by jollyjerry·10개월 전·13 comments

comments

jollyjerry
·29일 전·discuss
It's frustrating not being able to send email for my hobby projects even if I follow all the rules and have the correct headers. I enjoyed reading jeremyevan's post on self hosting email, but it's only for receive and not send https://code.jeremyevans.net/2021-07-29-running-my-own-email...
jollyjerry
·지난달·discuss
It changed the cost/benefits for papercuts. Instead of thinking, that's annoying, but not annoying enough to fix, I can spend a few minutes running things specific to my configuration. Fixing bluetooth, fingerprint readers were recent ones.
jollyjerry
·3개월 전·discuss
https://sfbay.craigslist.org/

My last use case for it was selling a car and giving away some free stuff. Sadly, those have been replaced by fb marketplace.
jollyjerry
·3개월 전·discuss
Love rockauto, in the same vein, but not used daily is https://www.mcmaster.com/
jollyjerry
·4개월 전·discuss
This won’t happen, but I would love an Apple implementation of the Samsung Dex - phone soc that can dock into a laptop or desktop enclosure.
jollyjerry
·7개월 전·discuss
Lot of nostalgia today. This brings me back to compiling Camino, a gecko based browser, on my iBook G4.
jollyjerry
·7개월 전·discuss
I used to have a floppy and a mini-cd boot version of these. The mini-cd looks like a credit card and fit into a standard size cd drive. Reading the history of the project is a bit of a bummer, but still love the project ethos.
jollyjerry
·8개월 전·discuss
Correct and performant way to calculate historical value of a portfolio. I want a pure function, but taking a date as input is insufficient because users can edit holdings, and securities can split.

Weighing the tradeoffs of doing this calculation server or client side. That'll be an architecture shift away from my current set of background jobs fetching state and towards something more functional and on-demand.

https://jch.app
jollyjerry
·9개월 전·discuss
I was just chatting with a friend how it hadn't changed in years, but there's a new beta when I opened it up.

- dark mode

- 3-column responsive layout, interesting it hides the watchlist

- like the view transitions for expanding content

- improved charting

- removed portfolio and holdings. Likely unpopular, but I thought it was a good way to track investments across banks without a 3rd party aggregator
jollyjerry
·9개월 전·discuss
I like reading to my kids and try to read to them in English and Mandarin. My Chinese is conversational, but I have a hard time finding books for them because I’m not good at writing. Something like this with language learning tools would be awesome.

I also like making up stories when we go on hikes. Long, rambling stories about unicorns befriending spiders and flying to faraway lands.
jollyjerry
·9개월 전·discuss
Like the layout tiles you have for the photo thumbnails. Will dig through and learn some css. Have struggled with different size content to create a compact masonry layout.
jollyjerry
·9개월 전·discuss
Living in hongkong for a few months, and absolutely love exploring the different neighborhoods. I’d love something like this or walkscore but for local guides to contribute.
jollyjerry
·9개월 전·discuss
Radio is so much fun to learn. It’s liberating to learn for curiosity and joy rather than commercialization. The community is welcoming, and while not directly translatable for most paid work, it does teach general problem solving skills.
jollyjerry
·9개월 전·discuss
Financial independence tracker. https://jch.app

Redesigning investment holdings for wider screens and leaning on hotwired turbo frames. Thankful for once-campfire as a reference for how to structure the backend. The lazy loading attribute works great with css media queries to display more on larger viewports.

Enjoying learning modern css in general. App uses tailwind, but did experiment with just css on the homepage. Letting the design emerge organically from using it daily, prototype with tailwind, then slim it back down with plain css.
jollyjerry
·10개월 전·discuss
From a PWA, I'd prefer a push notification, but you'd get a different answer from each person you ask.
jollyjerry
·10개월 전·discuss
Looks good! Appreciate that it’s a pwa instead of an app because it’d be something I use rarely. My issue isnt with the app, it’s that I’d have to remember to upload a receipt and also to find it in this app if I needed it again.
jollyjerry
·10개월 전·discuss
3 years. Left work because I felt comfortable with finances and family life, but wanted to try something different. It’s been fun working on personal projects and sharpening old tools. Still figuring out what I want to do long term. Some ideas include becoming a CFP because I like helping people with their finances, working for a tech company in that domain, or expanding the personal project (jch.app) and building more community.

In a good headspace now, right after the first year was feeling lost on where to go next.
jollyjerry
·10개월 전·discuss
Ya, no need comments or updates to it either. But thought it was an interesting piece of web development that's come up in every web framework and server, but has not been pushed into the browser. Would be interesting as a js polyfill even.
jollyjerry
·10개월 전·discuss
Thanks for touching on accessibility. I believe that good accessibility leads to a better design. The nice thing about starting with HTML is there are good defaults.

I wrote another post about building a search form about progressively enhancing a search form (https://jch.github.io/posts/2025-01-30-building-modern-searc...). Starting with semantic <search> and <input> elements gives sane browser and screenreader behavior.

Perhaps my title came on too strong, but I'm not advocating against javascript. It's more about understanding capabilities HTML and CSS can handle, and what is better suited for JS.
jollyjerry
·10개월 전·discuss
The guide is concise and well written. I like how it builds in the same sequence I blogged about: HTML, CSS, JS, and introduces each in a small way with links for further study. I like how it starts with a static site, but I think the end of the guide could include an example for server side processing. It was clever to use 3rd party example like search with fetch, but an example with a small JS backend to process a form and persist to a database / file would tie it together. It sounds like server-side is out of scope for the framework, so perhaps a few examples of small backends and how to plug in?

When I was reading the header/footer section, it reminded me of this issue to push for first-class includes in web platform https://github.com/whatwg/html/issues/2791