Live data from Hacker News

Show HN: I created a URL shortener that can be entirely hosted on GitHub Pages

github.com

81–90 of 182 posts

Re: Show HN: I created a URL shortener that can be entirely hosted on GitHub Pages

#81
Neat project. What were your ideas for storing the content in git version history? (i.e as files itself?)

Shameless plug for a similar project that i did few years back: A (partial) static site generator based on github issues :) https://github.com/geekodour/gitpushblog

Re: Show HN: I created a URL shortener that can be entirely hosted on GitHub Pages

#82

Interesting. This could be considered as abuse of github issues though.

I've seen quite a few uses of the issues page as a discussion forum too. I certainly wouldn't consider any of it "abuse", however.

I wonder if anyone has made this observation before in regards to such things: "Anything that can be used to store arbitrary data, will be used to store arbitrary data."

Re: Show HN: I created a URL shortener that can be entirely hosted on GitHub Pages

#83
Congrats! I really love this concept for two reasons.

First I'm always fascinated by smart solutions that make use of existing free (as in beer) infrastructures to provide a service with open-source software. In this way we truly get FOSS.

Second, I really like the idea that the information on where the shortened url redirects to is publicly available. I know that solutions like bitly.com do provide a way to preview the shortend url, but I think this is just more transparent, although admittedly a little bit less obvious.

Re: Show HN: I created a URL shortener that can be entirely hosted on GitHub Pages

#85
post #5

Earlier quoted context omitted.

That’s clever! I once did the same, except I used a static site generator that I would push to Github and deploy on Netlify.

I’d love to know more about how you did this!

It’s really simple; I used Jekyll, every URL was a post with a simple template that did the redirection.

Re: Show HN: I created a URL shortener that can be entirely hosted on GitHub Pages

#86
post #5

Earlier quoted context omitted.

That’s clever! I once did the same, except I used a static site generator that I would push to Github and deploy on Netlify.

Yeah I suspect you could do something nifty along these lines with Netlify Functions.

I didn’t even use Netlify functions, it was all just HTML and a few lines of JavaScript.

Re: Show HN: I created a URL shortener that can be entirely hosted on GitHub Pages

#88
post #80

Earlier quoted context omitted.

I launched this a few months ago so getting to the first page of google search results is a bit challenging.

Maybe allow users to shorten links for free (without account) so that your domain becomes recognizable. bitly became popular that way And target enterprises with custom URL's. They look very good Maybe copy some features adjust has (deep linking and redirecting to respective app stores with tracking parameters) https://www.adjust.com/glossary/deep-linking/

Without account, shortening invited spammers and lead to security concerns and it was difficult to deal with that.

Businesses that I target have set up custom domains and reap more benefit from it.

I eventually plan to retire default shortening domain(blanq.io) and only offer custom domains.

Re: Show HN: I created a URL shortener that can be entirely hosted on GitHub Pages

#89

Better be ready for the malicious links. I'm the developer of https://t.ly/ link shortener. I spend most of my time adding in protection to prevent people from using the service for malicious links.

Thank you for the advice! I love that domain though, have always been trying to find a 4 character URL shortener since GoDaddy killed x.co. Will definitely use your service more than I use my own HAHA. That being said, my project is not meant to be seriously used, just kinda a cool hack that is not meant to work forever/work reliably. Appreciate your comments and all the best for your service! You just gained one more (non) malicious user!
Post reply on HN