Hacker Newsnew | past | comments | ask | show | jobs | submit | dotneter's commentslogin

https://fooqux.com/ - an experimental article aggregator about software development. For several years now, I've had a routine of collecting articles on topics that interest me throughout the week and then reading them over the weekend. To help organize and streamline this process, I created this website. The main idea is to gather tech articles in one place and process them with a LLM — categorize them, generate summaries, and try experimental features like annotations, questions, etc. I hope this service might be useful to others as well.

https://fooqux.com/ - an experimental tech article aggregator. For several years now, I've had a routine of collecting articles on topics that interest me throughout the week and then reading them over the weekend. To help organize and streamline this process, I created this website.

The main idea is to gather tech articles in one place and process them with a LLM — categorize them, generate summaries, and try experimental features like annotations, questions, etc.

I hope this service might be useful to others as well. You can sign up with github account to submit your articles as well. I would appreciate any feedback.


I am trying to build something similar but for the tech articles https://fooqux.com/


https://fooqux.com/ - an experimental tech article aggregator. For several years now, I've had a routine of collecting articles on topics that interest me throughout the week and then reading them over the weekend. To help organize and streamline this process, I created this website.

The main idea is to gather tech articles in one place and process them with a LLM — categorize them, generate summaries, and try experimental features like annotations, questions, etc.

I hope this service might be useful to others as well. You can sign up with github account to submit your articles as well.


https://fooqux.com/ - an experimental tech article aggregator.

For several years now, I've had a routine of collecting articles on topics that interest me throughout the week and then reading them over the weekend. To help organize and streamline this process, I created this website.

The main idea is to gather tech articles in one place and process them with a LLM — categorize them, generate summaries, and try experimental features like annotations, questions, etc.

I hope this service might be useful to others as well.


That looks great. Are you aiming to automate the gathering process or let users self-serve by creating their own list of bookmarks (then processing the pages on your side)?


Thanks. For now, I don't have any plans to automate this process. Users simply add articles to the site, as in other aggregators, and can filter content by tags.

What would the ideal process of working with this kind of site look like for you?


I'm not sure, my work and hobbies are niche areas of computer science so I find myself wanting very specific filters. That's probably not a requirement for the typical web stack engineer.



Option to view previous days would be great.


https://ptol.github.io/hexyzland/ - creative coding with hexagons


Is it possible to use Wasp without framework as just a language, similar to something like Smithy?

For example I could describe my application with Wasp, write some code generator and generate my own code with it?

Would it make any sense to use it like this?


Our compiler is split into Analyzer which produces AppSpec, which is the central intermediate representation, and then Generator, that based on AppSpec produces the react / node web app.

So yes, you could use just Analyzer to produce AppSpec, and then write your own generator that will based on that AppSpec generate your own code! AppSpec currently exists only as Haskell in-memory data structure, but it could be relatively easy serialized via JSON and then imported in some other language.

You can see more about this in this README, there is a nice diagram showing parts of compiler (Analyzer, AppSpec, Generator): https://github.com/wasp-lang/wasp/tree/main/waspc#readme .

The reason why we already ensured this split was because the plan is in the future to have multiple different Generators, and also to allow users to write either their whole Generators or plugins that modify AST (AppSpec). We haven't explored this further yet, and probably won't push much in this direction until we get to Wasp 1.0, but we certainly want to work on it more in the future!


Are there any advantages to use lenses instead of immer?


we use both a lens library and an immutable data structures library. lenses are not a data structure, but a path into it


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: