I did something similar for personal use with cloudflareworker that would trigger and send it to a personal slack (probable not the best storage but works for now). The best part i found was I learnt Progressive Web App to be able to "install" it to phone and let you hit the share button to ship the url to my worker and it would take care of it for me. Not sure if OP already have it in the app but i find that to be v…
Show HN: Linkidex – save and sort the URLs you care about
31–40 of 55 posts
Re: Show HN: Linkidex – save and sort the URLs you care about
#32Nicely done OP! How can I check on the status of bookmark importing? I exported from FF and it said the import began, but I'm not sure how/where to check the progress on that. Do I just refresh until they show up on the main page?
I see one import failed due to something on my side. I've identified the issue and have a fix, I'll follow up as soon as its deployed. Sorry for the inconvenience!
Re: Show HN: Linkidex – save and sort the URLs you care about
#33I love it. I have this thing where I keep tabs open as a bookmark.. I wonder if this is going to help me get rid of all these tabs.
Re: Show HN: Linkidex – save and sort the URLs you care about
#34It looks like my personal instance of archivebox does such things for me.
Re: Show HN: Linkidex – save and sort the URLs you care about
#35Looks good.
Also how’d you manage making it mobile friendly? That because it’s a progressive web app?
Re: Show HN: Linkidex – save and sort the URLs you care about
#36What database do you use? Sqlite? Looks good. Also how’d you manage making it mobile friendly? That because it’s a progressive web app?
We are using Material UI (https://mui.com/material-ui/getting-started/overview/) on the front end which is what makes the website responsive and mobile friendly. MUI has been great to work with, I highly recommend it.
The Progressive Web App part of things (https://developer.mozilla.org/en-US/docs/Web/Progressive_web...) is what makes Linkidex still mostly work if your internet goes down, and lets users "download" the front end web application to their phone so it behaves like a native mobile app would. For example, users who download Linkidex get an icon on their home screen that opens Linkidex, and the url bar isn't visible when the app is open, despite the downloaded app just being a web page thats opened with your phone's default browser.
Re: Show HN: Linkidex – save and sort the URLs you care about
#37Nicely done OP! How can I check on the status of bookmark importing? I exported from FF and it said the import began, but I'm not sure how/where to check the progress on that. Do I just refresh until they show up on the main page?
Making the error reporting of import / export is very high on my todo list. Right now the user just has to wait and doesn't get feedback, which is a bad experience. I see one import failed due to something on my side. I've identified the issue and have a fix, I'll follow up as soon as its deployed. Sorry for the inconvenience!
Re: Show HN: Linkidex – save and sort the URLs you care about
#38What database do you use? Sqlite? Looks good. Also how’d you manage making it mobile friendly? That because it’s a progressive web app?
The database is PostgreSQL. We are using Material UI ( https://mui.com/material-ui/getting-started/overview/ ) on the front end which is what makes the website responsive and mobile friendly. MUI has been great to work with, I highly recommend it. The Progressive Web App part of things ( https://developer.mozilla.org/en-US/docs/Web/Progressive_web... ) is what makes Linkidex still mostly work if your internet goes do…
How is it you can use postgresql as database but your app still works offline? Been looking for a bookmarking app that works offline so that sounds cool
Re: Show HN: Linkidex – save and sort the URLs you care about
#39Earlier quoted context omitted.
The database is PostgreSQL. We are using Material UI ( https://mui.com/material-ui/getting-started/overview/ ) on the front end which is what makes the website responsive and mobile friendly. MUI has been great to work with, I highly recommend it. The Progressive Web App part of things ( https://developer.mozilla.org/en-US/docs/Web/Progressive_web... ) is what makes Linkidex still mostly work if your internet goes do…
Awesome, material UI does look nice. How is it you can use postgresql as database but your app still works offline? Been looking for a bookmarking app that works offline so that sounds cool
This isn't how Linkidex works right now, but using Linkidex as an example, the front end could queue up tasks such as "create link abc", "delete link "bcd", and "edit link cde" when offline. Then when your device regains an internet connection, it could send all of its queued up tasks to the back end and reconcile the changes with the database. PWAs make this kind of thing possible, and fairly simple to implement.
I am a huge fan of "The net ninja" on YouTube, and he has a great tutorial on PWAs: https://www.youtube.com/watch?v=4XT23X0Fjfk Note this is 3 years old and front end stuff changes quickly so this may be slightly out of date, but I still recommend this video series. PWAs are awesome.
Edit:
To clarify about linkidex working offline, you can still search your links when offline, assuming you loaded your links before going offline. You can't create, edit, or delete anything though, and if you refresh the app it will fail to reload just like any other web page. Maybe its unfair for me to say it 'mostly' works offline. I'll do a better job communicating this in the future.
Re: Show HN: Linkidex – save and sort the URLs you care about
#40Earlier quoted context omitted.
Notion Databases are neat! I’m not familiar with them, I just glanced over some of the documentation. I think its safe to say Notion Databases would let you create your own Linkidex (or your own todo list app, or your own food macro tracking app, etc) as long as you are willing to spend the time building and maintaining it, which you must if you have already put in the work! May I ask what made you choose notion vs a…
Notion is an interesting tool because it’s so general-purpose and flexible. In the past I used different tools for bookmarks, notetaking, project organization, recipes, reading lists, etc. I got tired of everything having different UI and features and ended up moving all of that to Notion. I think the main features that led me to choose Notion were: - Fully cross-platform (web, desktop, mobile) - Browser extension (P…