Readit News logoReadit News
hollowayaegis commented on Ask HN: Freelancer? Seeking freelancer? (August 2024)    · Posted by u/whoishiring
hollowayaegis · a year ago
Hello! SEEKING WORK.

  Location: Seattle, WA
  Remote: Yes
  Willing to relocate: Yes
  Technologies: React, PyTorch, Solidity, Node.js, C
  Résumé/CV: https://studio.sunflower.industries
  Email: team [at] sunflower [dot] industries
  Twitter: https://x.com/sunflowerindust
My main expertise is in building apps from the ground up, including research, design, and implementation. I am also skilled at working with PyTorch, and enjoy lower level work in C. I am open to both contract or consulting work as well as full-time roles. Looking forward to talking.

Experience (founder @ sunflower.industries):

  - built a web3 marketplace with 5,000+ users [1]
  - built an AI VST, including a custom PyTorch inference pipeline, with acquisition interest from major musicians [2]
  - prototyped AR avatars on the Magic Leap 2, and ported H.264 desktop streaming to the device [3]
  - built a novel code editor using bespoke AST transforms [4]
  - built a web3 game with custom, fast WebGL shaders  [5]
[1] https://art.sunflower.industries [2] https://audio.sunflower.industries [3] https://studio.sunflower.industries/work/ar-avatars [4] https://studio.sunflower.industries/work/next-gen-js-editor [5] https://polytope.space

hollowayaegis commented on Ask HN: Who wants to be hired? (August 2024)    · Posted by u/whoishiring
hollowayaegis · a year ago
Hello!

  Location: Seattle, WA
  Remote: Yes
  Willing to relocate: Potentially
  Technologies: React, PyTorch, Solidity, Node.js, C
  Résumé/CV: https://studio.sunflower.industries
  Email: team [at] sunflower [dot] industries
My main expertise is in building apps from the ground up, including research, design, and implementation. I am also skilled at working with PyTorch, and enjoy lower level work in C. I am open to both contract or consulting work as well as full-time roles. Looking forwards to talking.

hollowayaegis commented on Show HN: Supertone Shift – AI powered Real-time voice changer   product.supertone.ai/shif... · Posted by u/chaeeunlee9611
trashcluster · a year ago
If it was compatible as a VST plugin for DAWs it would be even more useful than a standalone software. From skimming through the website it seems that Supertone already make a VST plugin so it may be a matter of time before Shift becomes a VST too.
hollowayaegis · a year ago
Self plug, but I've been developing a local AI voice changing VST [1] (bring your own RVC models, or use builtins). It works in DAWs in realtime on modern macs.

[1] https://audio.sunflower.industries

hollowayaegis commented on Unloop: A generative music looper that doesn’t repeat itself   github.com/hugofloresgarc... · Posted by u/iyaja
hollowayaegis · 2 years ago
Super cool, realtime tools always seem the most promising. I also made an ai-assisted instrument, https://twitter.com/hollowaya_x/status/1641628603829096448 — automatic accompaniment with a midi LLM. (Source at https://github.com/cameronfr/SunflowerOS/blob/bd460284b428d4... )
hollowayaegis commented on Show HN: Sunflower Editor – like adding console.log to every line of your code   editor.sunflower.industri... · Posted by u/hollowayaegis
cbm-vic-20 · 4 years ago
Another fun example:

    function fib(n) {
      if(n == 0 || n == 1)
        return 1;
      else
        return fib(n-1) + fib(n-2);
    }

    fib(100);

hollowayaegis · 4 years ago
Haha, both of those cases are killing both the iframe and the UI. I have to get around to using totally different domain on the iframe to really take advantage of the Chrome process isolation. Previously I was using a really nice JS interpreter written in JS[0] before to solve that problem, but it ran 200 times slower than the browser interpreter(!)

[0] https://github.com/NeilFraser/JS-Interpreter

hollowayaegis commented on Show HN: Sunflower Editor – like adding console.log to every line of your code   editor.sunflower.industri... · Posted by u/hollowayaegis
hollowayaegis · 4 years ago
Creator here, thanks for checking out the editor!

Here are some more examples:

React: https://editor.sunflower.industries/?loadExample=reactExampl... . A 1500-line React app (in one file) will work just fine.

Hot Swapping: https://editor.sunflower.industries/?loadExample=replExample

Our goal is to make it easier to see what's happening in programs, and in doing so make coding faster. Eventually we want to build in the ability to deploy both frontend and backend (Node), all from the same editor page.

Please follow us on Twitter if you are interested in updates! https://twitter.com/SunflowerEditor

EDIT: oh, also collaboration is built in with Yjs. Just share your URL (the one that has ?room=...) with someone else.

hollowayaegis · 4 years ago
For anyone who wants to be notified specifically when an extension for VSCode/Atom/etc is released, please fill out this form!

https://tcjtes71z5j.typeform.com/to/edSjQ9AH

hollowayaegis commented on Show HN: Sunflower Editor – like adding console.log to every line of your code   editor.sunflower.industri... · Posted by u/hollowayaegis
ianberdin · 4 years ago
Yeah, debugging experience is hard for me. I wish your solution works for JetBrains IDEs.

I do javascript playground (https://PlayCode.io) too, and this feature will be shining

hollowayaegis · 4 years ago
Yes! I think seeing values is the next step in faster coding. DM me on Twitter if you want to talk!
hollowayaegis commented on Show HN: Sunflower Editor – like adding console.log to every line of your code   editor.sunflower.industri... · Posted by u/hollowayaegis
gavinray · 4 years ago
This is really similar to Quokka, which is a fantastic tool and worth every penny.

If you can build something portable, charge money for it IMO. I currently pay $50/year for this:

https://quokkajs.com/

hollowayaegis · 4 years ago
Quokka looks interesting. An extension is definitely a possibility and if so it would support DOM, Vue, NodeJS, Electron, etc — not just run things in a separate NodeJS instance.

The other route I am considering is integrating backend, hosting, and a market — so the site becomes a vertically integrated code creation place.

hollowayaegis commented on Show HN: Sunflower Editor – like adding console.log to every line of your code   editor.sunflower.industri... · Posted by u/hollowayaegis
gitgud · 4 years ago
Interesting, the steady state nature of the code reminds me of MS Excel! Which is a compliment by the way :)
hollowayaegis · 4 years ago
Thank you! Excel would be a lot less fun if it was like coding and you had to press “Run”, haha
hollowayaegis commented on Show HN: Sunflower Editor – like adding console.log to every line of your code   editor.sunflower.industri... · Posted by u/hollowayaegis
uxamanda · 4 years ago
This is really interesting, and I can see how this would be very useful, especially for someone like me who doesn't work with JS all day long.

FYI, when messing with the Array, I got into an unexpected state where clicking one of the entries selected it (applied it?) as the "grey" text, and I wasn't able to get back to the full array details.

As an aside, I have been using Joplin's Math Mode plugin[0] for a while, and this reminds me of it.

[0] https://discourse.joplinapp.org/t/plugin-math-mode/13254

hollowayaegis · 4 years ago
Haha sorry about that bug definitely one to fix soon.

I love the idea of instantly evaluated math -- I haven't used Math-Mode/Mathjs but I have used SymPy -- I think the barrier is the difficult syntax / typing it out. Though it's definitely a step towards Magic Paper[0]

[0] http://cognitivemedium.com/magic_paper/

u/hollowayaegis

KarmaCake day57February 6, 2019
About
Contact: My username @ outlook.com
View Original