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.

Ask HN: What Are You Working On?

6 pointsby adawg4almost 3 years ago
Wanted to see why you are working on it + why you think it is cool.

4 comments

mikewarotalmost 3 years ago
I&#x27;ve had a long time itch to redo HTML. I now have the time and resources to focus exclusively on that and a few other projects that eventually all intertwine.<p>HTML doesn&#x27;t let you annotate a file, it requires you to modify it.<p>I propose instead to put markup in 1 or more layers separate from the underlying text (or video, or audio, etc.). It&#x27;s a simple matter to split HTML into these layers, each byte inbound is part of an HTML tag, or the underlying source to be marked up.<p>As each tag comes it, the source byte count is recorded as the start, and length is set to 0 When the tag closes, length = (source byte count - start)<p>Separating the tags from the source solves a lot of navigation issues. Any modifications to the plaintext could be saved as operational transforms, thus all markup layers could have those same transforms applied in a straightforward manner.<p>Layers of markup could be turned on and off, or even have an value analogous to Opacity applied to them.<p>Layers could composed of multiple sources as well, allowing for transclusion and many of the other ideas from Ted Nelson&#x27;s Xanadu.<p>My goal in the end is to be able to compose documents which draw from many sources, into a view (or set of views) that helps convey complex ideas with a rich context without the need to create a forest of HTML pages. I want to fulfil the vision of the Memex laid out by Bush in 1945.<p>After that, then we get to apply this idea to source code, and things get really interesting.<p>---<p>On the back burner, is MSTOICAL, my fork of STOICAL, which is a fork of STOIC, a forth dialect that supports types and type checking in a manner much unlike Fig-Forth. (I&#x27;m not a C programmer, and there&#x27;s a lot of code to review, I&#x27;m thinking the first project will help annotate the second)
linkddalmost 3 years ago
Kubirds[0], a Cloud Native Supervision Engine.<p>In the Cloud, monitoring and supervision is all about metric collection and analysis. The good old days of alerting (with tools like Nagios, Icinga, Zabbix, ...) seems to have been forgotten.<p>IMHO, numbers (metrics) are good for machines, not humans. Alerts provide a very simple way of detecting what&#x27;s wrong. This is why CI&#x2F;CD tools have a &quot;Green&#x2F;Red&quot; status for their pipelines (hello Jenkins, Github Actions, Gitlab CI, ...) and you could build &quot;weather dashboard&quot;[1] representing the current state of your infrastructure.<p>I (and many coworkers at the time) found that scaling a Nagios or equivalent is unnecessarily hard&#x2F;complicated. You basically have to maintain 2 infrastructures, your production and your monitoring. It takes time and energy.<p>Kubirds is a solution for this. It is a Kubernetes Operator, built upon TektonCD[2], so your monitoring will scale along your Kubernetes Cluster. It provides alerting with 4 states (success, failure, regression, fixed) and notifications in a Plug&#x27;N&#x27;Play way. You put your supervision workload in Docker images, write some simple Kubernetes resources and voila! Your supervision is up and running.<p>This implies that supervision can (and is) more than just monitoring. Everything that must be run periodically and whose status is something you care about, is a supervision workload.<p>We are currently using it to run our monitoring infrastructure, and to build a trading bot (not for crypto) with a partner. And possibly other use cases in the future[3].<p>[0] - <a href="https:&#x2F;&#x2F;kubirds.com" rel="nofollow">https:&#x2F;&#x2F;kubirds.com</a><p>[1] - <a href="https:&#x2F;&#x2F;kubirds.com&#x2F;img&#x2F;screenshots&#x2F;dashboard-weather.png" rel="nofollow">https:&#x2F;&#x2F;kubirds.com&#x2F;img&#x2F;screenshots&#x2F;dashboard-weather.png</a><p>[2] - <a href="https:&#x2F;&#x2F;tekton.dev" rel="nofollow">https:&#x2F;&#x2F;tekton.dev</a><p>[3] - <a href="https:&#x2F;&#x2F;1-click-notify.carrd.co&#x2F;" rel="nofollow">https:&#x2F;&#x2F;1-click-notify.carrd.co&#x2F;</a>
zkirillalmost 3 years ago
A search engine that queries all nutrition databases simultaneously. Many countries publish their own databases in incompatible formats. Why work on it? Our customers want to search and reference this data, and our current solution needs an upgrade (SQLite). Why is it cool? Tricky problem to solve because of different language nuances, spelling mistakes, sample errors. And nobody (AFAIK) has ever done this before.
WalterGRalmost 3 years ago
A browser extension to enable tagging of arbitrary elements (though typically text such as a submission title, comment, email subject...) on arbitrary websites, as part of a pipeline for arbitrary NLP &#x27;stuff&#x27; - sentiment analysis, classification, etc.<p>Why I think it&#x27;s cool? I think NLP is cool. I like language.