HackerTrans
TopNewTrendsCommentsPastAskShowJobs

Hyperlisk

no profile record

Submissions

[untitled]

1 points·by Hyperlisk·2 месяца назад·0 comments

HB25-1330 Exempting Quantum Computing Equipment Right to Repair

leg.colorado.gov
3 points·by Hyperlisk·7 месяцев назад·0 comments

Paperbak, Paper Backups

ollydbg.de
7 points·by Hyperlisk·в прошлом году·1 comments

Fixing White Balance on Mac Air

nicktrevino.com
1 points·by Hyperlisk·в прошлом году·0 comments

Show HN: Host your own Go modules with conr

code.nicktrevino.com
2 points·by Hyperlisk·в прошлом году·0 comments

Show HN: A Personal Cash Flow Simulator

nicktrevino.com
1 points·by Hyperlisk·в прошлом году·0 comments

Building a Personal Website with ChatGPT

nicktrevino.com
1 points·by Hyperlisk·в прошлом году·0 comments

Writing Code for the RG35XX H

blog.hyperlisk.net
1 points·by Hyperlisk·2 года назад·0 comments

comments

Hyperlisk
·6 месяцев назад·discuss
This reminds me of a related issue: http://iscaliforniaonfire.com/
Hyperlisk
·12 месяцев назад·discuss
perma.cc is great. Also check out their tools if you want to get your hands dirty with your own archival process: https://tools.perma.cc/
Hyperlisk
·в прошлом году·discuss
Here is some related software from many years back: https://ollydbg.de/Paperbak/index.html
Hyperlisk
·в прошлом году·discuss
Here's one method for this that I have bookmarked: https://miunau.com/posts/dynamic-text-contrast-in-css/
Hyperlisk
·в прошлом году·discuss
This is interesting. I really like the DSL. It is a little limited though, just because it works on the month-level only.

One thing that I think is missing is having different dates for transactions to occur. So like some things happen just once ever, or transactions on the last day of the month which shifts.

This just means the stats that are given by this app are a bit rough. Looking at the source it seems to estimate the projections. Not a bad thing, just something to note.

I recently translated my own script-based cash flow simulator to a web app as well, which might be interesting: https://nicktrevino.com/tools.cashflow-simulator.html

One last thing, if you haven't heard of Wails, and you like Golang, I recommend it when thinking about making a desktop version of a web app: https://wails.io/
Hyperlisk
·в прошлом году·discuss
Nice! I share a similar set of thoughts and ideals around configuration languages and I'm working on one as well. Mine has a very similar syntax, so you might be interested! You can find it if you dig through my comments.
Hyperlisk
·в прошлом году·discuss
That's not true. I just wrote a similar comment about design coming first. If you've written software for awhile you just know what it looks like and which design patterns will be useful. Then when you see what your LLM says is the right code you can glance at it and see if it is even on the right track.

If you're trying to LLM your way to a new social site you're going to need to know what entities make up that site and the relationships they have ahead of time. If you have no concept of an idea then of course the LLM will be "correct" because there were no requirements!

Software design is important today and will be even more important in the future. Many companies do not require design docs for changes and I think it is a misstep. Software design is a skill that needs to be maintained.
Hyperlisk
·в прошлом году·discuss
This is my experience as well. I've been skeptical for a long time, but recent releases have changed my mind (it's important to try new things even if skeptical). Large context windows are game-changers. I can't copy/paste fast enough.

The future is coming, but you still need fundamentals to make sure the generated code has been properly setup for growth. That means you need to know what you expect your codebase to look like before or during your prompting so you can promote the right design patterns and direct the generation towards the proper architecture.

So software design is not going away. Or it shouldn't for software that expects to grow.
Hyperlisk
·в прошлом году·discuss
Yes! Another vote for CC-BY-NC-SA! I release my code under this license as well, even snippets I post on my (tiny) blog.

I think this is what a lot of people would use if it were more known about. I feel like a lot of people do not actually read what a license provides and just default to MIT because it is widely used.
Hyperlisk
·в прошлом году·discuss
This looks nice with a friendly UI. I've been very happy with Caddy[1], but this seems like something I might recommend to someone that is new to the web environment.

[1] https://caddyserver.com/docs/quick-starts/static-files
Hyperlisk
·в прошлом году·discuss
Are you ready to get naked?

  ['style','link[rel=stylesheet]','link[type="text/css"]'].forEach(selector => document.querySelectorAll(selector).forEach(e => e.parentNode.removeChild(e)));
  document.querySelectorAll('[style]').forEach(el => el.removeAttribute('style'));
My little page seems to pass (submitted things here previously, but it's not naked currently)
Hyperlisk
·в прошлом году·discuss
I'm working on a configuration file format. I see a lot of complexity in the current space, and not enough thought put into the use-cases for a configuration language.

YAML is prone to typos, TOML does not seem obvious to me, and JSON is not as easy to edit.

I've been designing CLEO:https://code.nicktrevino.com/cleo/

The focus is on a configuration language that a single application would use. Not a system-level configuration that might need control flow, etc.

It is at a solid state right now, though it's not officially released yet as I slowly validate it with usage.