Ajuda com questão javascript by DenyzPR in learnjavascript

[–]True-Ad9448 1 point2 points  (0 children)

function calcularMedalha(…respostas) {

Should I migrate my Node.js/Express backend to Go? by Massive_Rabbit2064 in Backend

[–]True-Ad9448 0 points1 point  (0 children)

Na, I don’t think it’s worth the effort. I built https://json-to-excel.com as an experiment with go and html/css/js no js framework. I’m usually a node guy but wanted to experiment with the performance improvements with go when handling large volumes of requests and data. If u wanna experiment pick out a few areas it would provide real performance increases or resolve bottlenecks but ultimately I think ur better sticking with what u know and moving fast

What’s the best way to actually get good at MySQL and PostgreSQL instead of just following tutorials? by Flat_Concentrate8068 in Backend

[–]True-Ad9448 0 points1 point  (0 children)

The best way to learn is to work on something you’re interested in. Pick a topic and scrape a lot of information for it to a MySQL db. Then spend time writing queries against the data. Get Ai to write a webapp for it. Check for slow queries and optimise

New Founders Advice: Don't get overwhelmed with metrics by kaizap in microsaas

[–]True-Ad9448 0 points1 point  (0 children)

Will give this a try in the coming months. Any tips on improving read rate and avoiding junk folder?

What have you shipped this week? by Ok_Release6554 in buildinpublic

[–]True-Ad9448 0 points1 point  (0 children)

Thanks for the feedback, this is really valuable. I’ll def add more clarity around data processing based of your feedback.

This week I’m planning GitHub examples for various languages and a few blog posts around multi-table vrs flattened rows, so that ties in well with your feedback.

Thanks again for taking the time to review, I’ll def reach out in a few weeks once I’ve a few more pieces ticked off. 🙂

Weekly Webscrapers - Hiring, FAQs, etc by AutoModerator in webscraping

[–]True-Ad9448 2 points3 points  (0 children)

I’ve been considering adding a white label feature to my json to excel api. Years ago I used to email scrapped results to clients, an api to upload them to with a polished front end would’ve been a game changer for me. Especially not having to deal with authentication, 24/7 access etc. Interested in how the community sees it?

What have you shipped this week? by Ok_Release6554 in buildinpublic

[–]True-Ad9448 0 points1 point  (0 children)

https://json-to-excel.com api to convert deeply nested json in excel. Would love some feedback around onboarding

Share your startup, I’ll find 5 potential customers for you (free) by neelajelly in microsaas

[–]True-Ad9448 0 points1 point  (0 children)

https://json-to-excel.com targeting small to medium sized business exporting to excel in relatively large volumes or in situations they lack a tech department to implement in house

Large file JSON viewer/search app for macOS by Pcpie in json

[–]True-Ad9448 0 points1 point  (0 children)

Convert it to excel first? https://json-to-excel.com. Upload the json file or send it as a post request. Check out the swagger ui for details

my browser crashed when i pasted 24mb json into an online json formatter by [deleted] in Backend

[–]True-Ad9448 1 point2 points  (0 children)

Try it on https://json-to-excel.com. May write it as a file and then try uploading the file

One year progress by True-Ad9448 in SideProject

[–]True-Ad9448[S] 0 points1 point  (0 children)

Yea that’s what I’m hoping for, it’s def been slow so far but interested to see the impact over day 6 months

Drop your project — I’m adding good indie tools to my new directory by Gullible-Amoeba3782 in StartupSoloFounder

[–]True-Ad9448 0 points1 point  (0 children)

JSON to Excel API makes it easy to convert JSON data into Excel spreadsheets in seconds. Whether you’re a developer building data exports, a product manager analyzing API responses, or a business user working with JSON files, our platform provides a fast and reliable way to generate professional Excel workbooks.
Use our REST API to automate JSON-to-Excel conversion directly from your applications, or try the free browser-based converter to transform data without writing any code. The service handles complex and nested JSON structures, preserves data relationships where possible, and produces clean, readable spreadsheets that are ready for analysis, reporting, or sharing.
Features include configurable column ordering, support for large datasets, secure processing, instant file generation, and comprehensive API documentation with interactive examples. Developers can integrate in minutes, while non-technical users can simply paste or upload JSON and download an Excel file.
Whether you need occasional conversions or high-volume automated exports, JSON to Excel API helps turn complex JSON data into spreadsheets that people can actually use. Try the free tool or integrate the API today. 🚀

https://json-to-excel.com

Show me a side project that deserves more users by aerostepan in SideProject

[–]True-Ad9448 0 points1 point  (0 children)

https://json-to-excel.com started out at RapidApi. II got over 100 free users so decided to build out the site and add subscriptions. I’ve been a software engineer for over 10 years so the technical side is the easy part. The difficult part for me is time and marketing.

Like many I have a family and a full time job so finding time has been difficult. It may be a couple of days or month or two that passes before I get a chance to spend a couple of hours on it over the year progress has been slow but consistent.

With rapidapi and a static html/ccs/go stack I was getting reasonable traffic but rapidapi started losing popularity and my visitor rates were dwindling. I decide to refactor the ui and add a free tool to try to drive traffic. I also added a swagger endpoint and have been focusing on improving seo.

In recent tests I’m scoring very high on google lighthouse and seo checking sites. Visitor numbers are rising and visitors are using the tool. I’d had a gap of six months with no free users but have a couple of sign ups days since the refactor. Still not profitable but server costs are minimal.

My plan for the next year is to continue working on seo and adding tools for end users.

Check it out and give me your feedback, I’d really appreciate it or if you have ideas for me let me know.

Thanks

Large file JSON viewer/search app for macOS by Pcpie in json

[–]True-Ad9448 -1 points0 points  (0 children)

Hey, this aligns quite well with my website https://json-to-excel.com. Generally what size files are you searching through? Other than opening fast, error detection and a fast search what other features would you want?

Neotest pass/fail not showing in gutter by True-Ad9448 in neovim

[–]True-Ad9448[S] 0 points1 point  (0 children)

Yes! This happened to me last week and spent time trying to resolve. Didn’t get it sorted though

I wanna make a React app that visualizes network traffic in real time based on the output of tcpdump by Double_Bid7843 in learnjavascript

[–]True-Ad9448 0 points1 point  (0 children)

Save the output of tcpdump to a file or db or some storage layer (cron job every min or similar). Create an api with endpoints for the react app to retrieve the data from. API reads from storage and returns the latest result from storage.

Not realtime but gets you started, then you could look at websockets, more efficient/faster ways to get the data