Live data from Hacker News

Ask HN: Who wants to collaborate?

news.ycombinator.com

51–60 of 501 posts

Re: Ask HN: Who wants to collaborate?

#51
I want the web to be more end-user programmable. Web apps big and small should offer plugin extension mechanisms! Ideally plug-ins are frictionless to author, and powerful enough to build fun UIs. Today, only really big premier apps like Figma and Google Docs have this kind of feature.

One problem is that it’s very difficult for an app to run arbitrary, untrusted user code in a way that’s secure and efficient, especially in the browser. Apps need to worry about XSS and unintended remote code execution, much less try adding those things as a feature.

I started working on a Typescript/WebAssembly library around the QuickJS JavaScript runtime to address this need. QuickJS runs modern ES2020 and provides an API for the host process to set CPU and memory budgets for the execution environment, which is completely sandboxed. My work so far exposes a basic interface to create VMs, expose APIs from the host to the guest, and evaluate code.

Repo: https://github.com/justjake/quickjs-emscripten

NPM: https://www.npmjs.com/package/quickjs-emscripten

Areas of work:

- Make the library importable as ES modules on the web without a Webpack build step.

- Design higher-level but still security-conscious APIs for building plugin systems on top of the existing library.

- Expose more QuickJS C APIs to library users.

- Performance or ergonomic improvements.

If you share any of these goals or would like to help out, please drop me a line on GitHub (eg by opening an issue), or via any of the links on my HN profile.

Re: Ask HN: Who wants to collaborate?

#52
post #28

I'm with a friend and we're focusing on building cool SaaS projects as a way to improve our product building skills and possibly make some money. At the moment we have a HR platform that one client is using and we're looking to build other stuff - we have some ideas in the making. If anyone wants to join

I have been looking for similar like minded focuses. I spend a lot of time in the DevOps space while always expanding to other areas. Please do reach out, sean (at) ulation (dot) com

Sent you an email!

Re: Ask HN: Who wants to collaborate?

#53

I'm with a friend and we're focusing on building cool SaaS projects as a way to improve our product building skills and possibly make some money. At the moment we have a HR platform that one client is using and we're looking to build other stuff - we have some ideas in the making. If anyone wants to join

Hey there, I'm interested in your HR Platform and maybe expanding that? If you've got one client already, it might be scalable! Currently I'm working on wordpress plugin development to try and make small software that I cant bring to market quickly. Would you wanna connect?

Hey there! Sure! Sent you an email!

Re: Ask HN: Who wants to collaborate?

#54
I'm working on a voice computing project to bring text-to-speech to new audiences.

I think it's totally under-utilised and an easy-to-use tool of generating voicegrams could be super-sharable and - more importantly - useful from a cognitive perspective.

I think that cognitive differences could be levelled using text-to-speech! And provide an alternative and measurable way of consuming quality content.

My email is in my profile!

Re: Ask HN: Who wants to collaborate?

#55
Working in a GENERAL relational language (ie: not just a query one, like SQL, but general to make full apps, like python/delphi/c# + linq):

https://tablam.org

that is my attempt to resurrect the spirit of the FoxPro/dbase kind of tools.

Is on Rust, and is also my way to sharp my skills on it.

Now, I'm in the process of improve the parsing to be robust like in Rust, so i can show good error messages:

https://github.com/brendanzab/codespan

and also, hopefully, implement a solid type inference that work fine with the challenge of infer joins like "customer CROSS JOIN address".

---

The idea, long-term, is create a tool alike MS Access/FoxPro+Excel that I think could be great for a lot of companies (that are using stuff like "BigData" tools -like hadoop- when them are struggling with more fundamental issues!) and improve the condition of make business apps/analysis.

I already hear some interest when the vision is described in full, and I certain any company that use Excel/Access to deal with data and/or make business apps is anemically served by it.

The alternatives now are only for the cloud, and I instead wanna a local-first/on-premise offering...

Re: Ask HN: Who wants to collaborate?

#56
I'm writing a FHIR server in NodeJS. The currently widely used FHIR server is a JAVA based monolith called HAPI FHIR.

I haven't seen many alternatives to FHIR server other than HAPI FHIR. It's a super challenging project and I'm not even sure I can pull it off.

Feel free to collaborate - https://github.com/rukshn/aurora

Re: Ask HN: Who wants to collaborate?

#58
I'm working on Nap[1], a fast, file-based framework for defining and running HTTP integration tests via the CLI.

The ultimate goal is to embed Nap into the SDLC--tests that are defined during development and then run during CI/CD. I'm closing in on a V1 release of the CLI tool, at which point I'll be looking to start expanding on the feature-set and add a UI.

I could use contributors who are comfortable building something Postman-esque as e.g. a VSCode plugin that could take advantage of the file-based nature of my project and make it more approachable for the masses.

[1]: https://github.com/davesheldon/nap

Re: Ask HN: Who wants to collaborate?

#59
post #51

I want the web to be more end-user programmable. Web apps big and small should offer plugin extension mechanisms! Ideally plug-ins are frictionless to author, and powerful enough to build fun UIs. Today, only really big premier apps like Figma and Google Docs have this kind of feature. One problem is that it’s very difficult for an app to run arbitrary, untrusted user code in a way that’s secure and efficient, especi…

I expect you already know about this, but Secure EcmaScript is a similar project: https://medium.com/agoric/ses-securing-javascript-in-the-rea...

Similarly the older Caja project: https://en.wikipedia.org/wiki/Caja_project

Post reply on HN