Top
Best
New

Posted by bpierre 5 hours ago

nowhere: an entire website encoded in a URL(hostednowhere.com)
69 points | 53 commentspage 2
anonymous1e 4 hours ago|
Where is the URL???? any example/demo.
wateralien 4 hours ago||
https://nowhr.xyz/s#yzXyzs8PcDbxyQ_0KbYMzzRNytKNyE0JDM0x8zT2...
brazzy 4 hours ago||
https://hostednowhere.com/ actually contains a webapp that allows you to build such URLs for a handful of site templates

Yes, it's not communicated very clearly.

hyperific 2 hours ago||
See also: https://smolsite.zip

Posted to HN in 2023

https://news.ycombinator.com/item?id=37408150

fainpul 4 hours ago||
Similar to mdview.io (markdown only, not offline) and a suggestion I made a while back:

https://tinyurl.com/mrpas5dc

Velocifyer 3 hours ago||
Why don't they just use a data: URI?
vbezhenar 2 hours ago|
data:text/html,%3C%68%31%3E%64%61%74%61%20%55%52%4C%20%69%73%20%6E%6F%74%20%77%65%62%20%73%63%61%6C%65%3C%2F%68%31%3E
anonymous1e 4 hours ago||
This is cool and fun, but the sites created by this wouldn't be accessible through search engines as its not hosted anywhere.

So, its just like sending your sites link through email/whatsapp or any other channel. I don't know what the real usecase for this idea could be!!!!

cidra 2 hours ago|
Digital restaurant menus!
oleggromov 3 hours ago||
If you could only send a text message...
hoppp 4 hours ago||
Could just share a file then?
cagenut 4 hours ago||
similar enough that i'll share, I think i learned this from an HN comment, you can put the code for a page in the url (with obvious limits):

this works as a "url" in both chrome and safari:

  data:text/html, <html contenteditable><head><title>notes</title></head><body><textarea rows=36 cols=140></textarea></body></html>
jefc1111 4 hours ago||
I like these. I have one which gives you a little HTML playground. It's in my favourites and I use it quite a lot for jotting things down.

data:text/html,<pre onkeyup="(function(d,t){d[t]('iframe')[0].contentDocument.body.innerHTML = d[t]('pre')[0].textContent;})(document,'getElementsByTagName')" style="width:100%;height:48%;white-space:pre-wrap;overflow:auto;padding:2px" contenteditable></pre><iframe style="width:100%;height:48%">

Doublon 3 hours ago|||
I have one bookmark that will copy to clipboard the current page URL + an anchor to the highlighted text:

    javascript:(function(){navigator.clipboard.writeText(`${window.location}#:~:text=${escape(window.getSelection().toString())}`);%20console.log("copied!");%20})();
Pretty useful to share a specific part of a page to someone else.

For example it will give you this: https://news.ycombinator.com/item?id=47888337#47888930#:~:te...

jdiff 3 hours ago||
This also is quite handy for inlining SVGs in CSS, although I believe you have to mark the encoding as utf-8.
halfcat 4 hours ago||
Was this forked from the nocode project?

https://github.com/kelseyhightower/nocode

More comments...