HN user

eg312

162 karma

contact: alex at eg312 dot com

Posts18
Comments30
View on HN
github.com 8mo ago

Show HN: A simple drag and drop tool to document and label fuse boxes

eg312
26pts6
github.com 2y ago

Show HN: A simple app to create .gitignore files

eg312
20pts5
github.com 3y ago

Show HN: A tool to document and label fuse boxes

eg312
1pts0
github.com 3y ago

Show HN: Simple loan payment calculator and stats

eg312
2pts1
reactivedoc.com 4y ago

Show HN: Create Interactive Documents with Plain Text

eg312
5pts0
alexadam.dev 5y ago

A Browser Extension to highlight your favorite music on r/ListenToThis

eg312
1pts0
apps.apple.com 5y ago

Show HN: Take a (sync) Break: Create and Sync work-break timers and schedules

eg312
4pts0
github.com 5y ago

Show HN: Convert an Image to Sound Spectrogram

eg312
6pts0
github.com 6y ago

Show HN: A script to backup your GitHub and Gitlab repos as .zip files

eg312
3pts0
github.com 7y ago

Show HN: A tool to create printable UI mockups and wireframes templates

eg312
155pts30
github.com 7y ago

Show HN: Meetup Utils – Create ready to print posters and indicators for meetups

eg312
10pts0
github.com 7y ago

Show HN: Highlight your favorite music genres on www.reddit.com/r/listentothis/

eg312
2pts0
github.com 8y ago

Show HN: A tool to embed a screenshot in an image that has a certain size

eg312
1pts0
github.com 9y ago

Show HN: Sport stats UI components

eg312
12pts0
github.com 9y ago

Show HN: A Web Extension to save a page or selection as eBook

eg312
106pts25
github.com 10y ago

Show HN: Turn the current directory into a new GitHub repository

eg312
3pts2
github.com 10y ago

Show HN: Glitch Studio – Dynamic .png Glitch

eg312
4pts0
github.com 11y ago

Show HN: An Eclipse plugin to make it easier to search on internet

eg312
1pts0

Yes, it's inspired by it but I didn't like the fact that all the available options are hidden and I had to search every time I wanted to add something.

With my app, you can organize you favorite gitignores as lists.

Docusaurus 2.0 4 years ago

I just needed a quick way to write in MD and have 'templates' with parameters to avoid copy/paste/replace, especially when documenting shell commands.

I needed a way to document my shell scripts (or code snippets) and to quickly replace “parameters”. For example, if you want to download a YT video as mp3, you have to remember this command “youtube-dl --extract-audio --audio-format mp3 <video URL>” . You can use the autocomplete & history in the terminal but you still have to remember parts of the command and replace the old URL with the new one. You can also save it in a text file, and replace <video URL> … too many select/replace/copy/paste ops…

A few months ago I made a good enough solution for my problem https://github.com/alexadam/reactive-doc - it saves ~ 10 minutes/day when I have to run complex devops scripts. And I can quickly share the ‘docs’ because they are just plain html files / or markdown.

Now I just finished the next iteration - better ‘syntax’ for input widgets, runnable @shell commands and a web based terminal https://github.com/alexadam/shell-driver with custom filters and selection actions (useful for me)

Next steps: add more features to the web based terminal -> convert history to scripts, autocomplete with parameters, command palette & context aware menus, multiple terminals (with tabs or panels). I also want to add support for React components in the MD editor.

I'm not targeting printers and I don't want to depend on them. If a user wants to print on demand his notebook, there will be that option (if possible).

Also, I'm not targeting consumers. Since the engine is already opensource, I don't have a problem making the whole app open.

"I would personally pay for is the ability to have my custom designed notebook printed and shipped to me" -> I think the core feature is how easily you can design your custom notebook. There are already p-o-d services and you can just use Photoshop or Word for editing. But they are too complex.

What I was trying to say is that, maybe, some companies would pay for custom widgets that hook to a db and display nice graphs & tables to quickly create business reports. But I don't think those companies care about p-o-d because they already have their own providers.

So far, the business model is: free everything except for the cloud storage (if any) and premium widgets & layouts. I would not add a premium over the p-o-d price since I have no control over the quality and I would offer it as a 'bonus', like an option to link the app to a 3rd party printer of your choice.

Anyway, thanks for the input, it really helped me! If you want to keep in touch, let me know.

Great advice!

The printing quality & shipping will be a problem and I was thinking to offer the print on demand just as a 'secondary' option, not a feature.

Probably it would be more profitable to create custom widgets and designs for companies or exporting the layouts as standalone, mini-apps - something like an UI/app editor (what you see is what you get) - that are also printable :)

I'm working on an app to create custom notebook layouts by drag-and-drop graphical widgets with the option to print on demand the result: https://notebookeditor.com/

I have a lot of ideas on how to improve it and I think there are many use cases, especially for creating custom educational materials. But I haven't found the product market fit until now and I don't have a clear plan on how to monetise it.

The 'front-end' product is 80% done but there is no 'back-end' yet - I'm still thinking if I should do it as saas or a standalone desktop/mobile app.

If interested, contact me at: alex @ myhnusername .com

PS. some of the images I used on the website are copyrighted and I didn't ask for permission or give credit. Sorry! I'll fix it asap.

The blurriness is a problem… With the pdf library I’m using (jsPDF) I cannot export the SVG directly so I convert it to an image and then embed the image in the pdf. To solve the problem, I can increase the converted image’s resolution but then the pdf becomes huge (~20 MB, for example). There is a ‘quality’ parameter in the code, maybe I’ll expose it in the UI and you can find an optimum value. I’ll try to find a way to export or ‘write’ the svg data directly in the pdf, I think it’s the best way to do it.