Show HN: I made a site to catalogue 10,000 CC0-licensed stock photos
1–10 of 65 posts
Re: Show HN: I made a site to catalogue 10,000 CC0-licensed stock photos
#2Re: Show HN: I made a site to catalogue 10,000 CC0-licensed stock photos
#3Re: Show HN: I made a site to catalogue 10,000 CC0-licensed stock photos
#4I really like both the selection and the color chooser! Did you do any manual selection of the photos?
The selection is mostly based on the source sites I chose, like Unsplash, which all have only good-quality photos. The aim was to show all of the images from those sites.
The actual download and analysis of the images is done on my local machine, and each image has its own JSON file. These are then used to populate/modify the database, so I can track any changes to each image's data (if I add/remove keywords, for example) using Git.
Re: Show HN: I made a site to catalogue 10,000 CC0-licensed stock photos
#5Re: Show HN: I made a site to catalogue 10,000 CC0-licensed stock photos
#6Hi - for some reason the search bar keeps changing my search terms eg Australia --> Australium
I've tagged the images with singular terms to make them easier to search, so it will change terms like "bridges" to "bridge", or "men" to "man", unless I override each term. If anyone can suggest a better way, I'd be very grateful.
I'll add "Australia" as an override, for now. Thanks for pointing it out.
Re: Show HN: I made a site to catalogue 10,000 CC0-licensed stock photos
#7Re: Show HN: I made a site to catalogue 10,000 CC0-licensed stock photos
#8Hi - for some reason the search bar keeps changing my search terms eg Australia --> Australium
Sorry — that'll be the search trying to get a singular term from a plural. I've tagged the images with singular terms to make them easier to search, so it will change terms like "bridges" to "bridge", or "men" to "man", unless I override each term. If anyone can suggest a better way, I'd be very grateful. I'll add "Australia" as an override, for now. Thanks for pointing it out.
Alternatively, you can use the Levenshtein distance to find words close to the search term (like its singular form).
Re: Show HN: I made a site to catalogue 10,000 CC0-licensed stock photos
#9Hi - for some reason the search bar keeps changing my search terms eg Australia --> Australium
Sorry — that'll be the search trying to get a singular term from a plural. I've tagged the images with singular terms to make them easier to search, so it will change terms like "bridges" to "bridge", or "men" to "man", unless I override each term. If anyone can suggest a better way, I'd be very grateful. I'll add "Australia" as an override, for now. Thanks for pointing it out.
https://en.wikipedia.org/wiki/Stemming
Most major languages should have a library available to handle this for you.
Re: Show HN: I made a site to catalogue 10,000 CC0-licensed stock photos
#10I really like both the selection and the color chooser! Did you do any manual selection of the photos?
Thanks! The selection is mostly based on the source sites I chose, like Unsplash, which all have only good-quality photos. The aim was to show all of the images from those sites. The actual download and analysis of the images is done on my local machine, and each image has its own JSON file. These are then used to populate/modify the database, so I can track any changes to each image's data (if I add/remove keywords,…