home.social

#lookoverthere — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #lookoverthere, aggregated by home.social.

  1. @jonasgeiler @Habbie Thanks, Jonas :)

    Also see Look Over There! – which you can easily deploy yourself on a tiny VPS – it’s how I’m redirecting our old sites to archive.org (look-over-there.small-web.org/)

    #web #archiving #Kitten #SmallWeb #SmallTech #LookOverThere

  2. Just noticed an issue with Look Over There!¹ where some of the sites I was forwarding to archive.org began to fail.

    I’ve now documented the proper way to redirect to archive.org in Look Over There! and I also wrote a brief post on the relevant Reddit to alert the folks at The Internet Archive about this and suggest an improvement that could benefit findability on sites with redirects in general:

    reddit.com/r/theinternetarchiv

    ¹ e.g., See our instance for Small Technology Foundation at look-over-there.small-web.org

    CC @textfiles @brewsterkahle

    #TheInternetArchive #LookOverThere #SmallWeb #SmallTech #web #archiving

  3. …And there are more interesting tid-bits in there too:

    • See how I’m pushing Kitten’s Streaming HTML to its logical conclusion and streaming JavaScript from the server to the client to keep all logic on the server while implementing a client-side feature (copy to clipboard): codeberg.org/small-web/look-ov

    • Following on from that, note how the Toast component that’s triggered when something is copied looks (under the hood, Streaming HTML is htmx + WebSockets + some Kitten-specific magic and glues it all together and adds syntactic sugar): codeberg.org/small-web/look-ov

    • Finally, check out how layout components and slots work: codeberg.org/small-web/look-ov

    I think that’s all the intersting stuff I can spot at the moment.

    Have fun!

    :kitten:💕

    #Kitten #SmallWeb #SmallTech #SmallTechnologyFoundation #LookOverThere #code #StreamingHTML #htmx #websockets #nodeJS #web #dev

  4. …And there are more interesting tid-bits in there too:

    • See how I’m pushing Kitten’s Streaming HTML to its logical conclusion and streaming JavaScript from the server to the client to keep all logic on the server while implementing a client-side feature (copy to clipboard): codeberg.org/small-web/look-ov

    • Following on from that, note how the Toast component that’s triggered when something is copied looks (under the hood, Streaming HTML is htmx + WebSockets + some Kitten-specific magic and glues it all together and adds syntactic sugar): codeberg.org/small-web/look-ov

    • Finally, check out how layout components and slots work: codeberg.org/small-web/look-ov

    I think that’s all the intersting stuff I can spot at the moment.

    Have fun!

    :kitten:💕

    #Kitten #SmallWeb #SmallTech #SmallTechnologyFoundation #LookOverThere #code #StreamingHTML #htmx #websockets #nodeJS #web #dev

  5. …And there are more interesting tid-bits in there too:

    • See how I’m pushing Kitten’s Streaming HTML to its logical conclusion and streaming JavaScript from the server to the client to keep all logic on the server while implementing a client-side feature (copy to clipboard): codeberg.org/small-web/look-ov

    • Following on from that, note how the Toast component that’s triggered when something is copied looks (under the hood, Streaming HTML is htmx + WebSockets + some Kitten-specific magic and glues it all together and adds syntactic sugar): codeberg.org/small-web/look-ov

    • Finally, check out how layout components and slots work: codeberg.org/small-web/look-ov

    I think that’s all the intersting stuff I can spot at the moment.

    Have fun!

    :kitten:💕

    #Kitten #SmallWeb #SmallTech #SmallTechnologyFoundation #LookOverThere #code #StreamingHTML #htmx #websockets #nodeJS #web #dev

  6. …And there are more interesting tid-bits in there too:

    • See how I’m pushing Kitten’s Streaming HTML to its logical conclusion and streaming JavaScript from the server to the client to keep all logic on the server while implementing a client-side feature (copy to clipboard): codeberg.org/small-web/look-ov

    • Following on from that, note how the Toast component that’s triggered when something is copied looks (under the hood, Streaming HTML is htmx + WebSockets + some Kitten-specific magic and glues it all together and adds syntactic sugar): codeberg.org/small-web/look-ov

    • Finally, check out how layout components and slots work: codeberg.org/small-web/look-ov

    I think that’s all the intersting stuff I can spot at the moment.

    Have fun!

    :kitten:💕

    #Kitten #SmallWeb #SmallTech #SmallTechnologyFoundation #LookOverThere #code #StreamingHTML #htmx #websockets #nodeJS #web #dev

  7. …And there are more interesting tid-bits in there too:

    • See how I’m pushing Kitten’s Streaming HTML to its logical conclusion and streaming JavaScript from the server to the client to keep all logic on the server while implementing a client-side feature (copy to clipboard): codeberg.org/small-web/look-ov

    • Following on from that, note how the Toast component that’s triggered when something is copied looks (under the hood, Streaming HTML is htmx + WebSockets + some Kitten-specific magic and glues it all together and adds syntactic sugar): codeberg.org/small-web/look-ov

    • Finally, check out how layout components and slots work: codeberg.org/small-web/look-ov

    I think that’s all the intersting stuff I can spot at the moment.

    Have fun!

    :kitten:💕

    #Kitten #SmallWeb #SmallTech #SmallTechnologyFoundation #LookOverThere #code #StreamingHTML #htmx #websockets #nodeJS #web #dev

  8. You can really get a feel for what authoring a simple web app is like in Kitten (with the latest techniques/features), by checking out the source code for Look Over There!, the multi-site forwarding app with TLS forwarding support that I built recently:

    codeberg.org/small-web/look-ov

    There’s an instance of it I’m hosting for us at look-over-there.small-web.org to forward our archived sites – e.g., web0.small-web.org – to archive.org so we don’t break links on the web.

    If you want to run it locally, install Kitten (kitten.small-web.org) and then type: kitten run codeberg.org/small-web/look-ov (you can also clone the git repo manually and just run kitten from the working directory).

    Interesting places to look:

    • The index page (shows use of a Markdown page that imports and uses Kitten components) codeberg.org/small-web/look-ov

    • The admin page (notice the lock emoji at the end of the name? That’s all you need to add to a route to make use of Kitten’s automatic authentication. Since every Kitten site/app is protected by public-key encryption and we don’t have the concept of users (each site/app on the Small Web is owned by one person), the whole process can be automated for you. codeberg.org/small-web/look-ov

    • The Redirection component. This is what does all the hard work on the admin page. Along with the admin page, they showcase Kitten’s new/alternative (and as-of-yet mostly undocumented) class-based component model with event bubbling on the component hierarchy on the server. (Since this is resource intensive, it’s recommended you use it only when implementing authenticated routes where you’re sure only the site’s owner will be accessing the route.) codeberg.org/small-web/look-ov

    In any case, as Kitten and the rest of the Small Web ecosystem matures further, I’ll be documenting all this better and there will be even more examples and tutorials but, in case you’re one of those inquisitive types and you want to see what web development can be like if you’re *not* building centralised people farming machinery for Big Tech, have a play with Kitten.

    :kitten:💕

    #Kitten #SmallWeb #SmallTech #SmallTechnologyFoundation #LookOverThere #code #web #dev

  9. Ooh, what’s this?… Look Over There!
    (With apologies to Jaida Essence Hall)

    So the little app I teased earlier is ready and deployed and I have our own instance running at:

    look-over-there.small-web.org

    Look Over There! lets you forward multiple domains to different URLs with full HTTPS support.

    Why?

    We have a number of older sites that are becoming a chore/expensive to maintain and yet I don’t want to break the web. So I thought, hey, I’ll just use the “url forwarding” feature of my domain registrar to forward them to their archived versions on archive.org.

    Ah, not so fast, young cricket… seems some domain registrars’ implementations of this feature do not work if the domain being forwarded is accessed via HTTPS (yes, in 2025).

    So, given Kitten¹ uses Auto Encrypt² to automatically provision Let’s Encrypt certificates, I added a domain forwarding feature to it and created Look Over There! as a friendly/simple app that provides a visual interface to it.

    To see it in action, hit cleanuptheweb.org and you should get forwarded to the archived version of it on archive.org. I’m going to be adding more of our sites to the list in the coming days as part of an effort to reduce my maintenance load and cut down our expenses at Small Technology Foundation.

    Since it’s Small Web, this particular instance is just for us. However, you can run your own copy on a VPS (or even a little single-board computer at home, etc.) A link to the source code repository is on the site. Once Domain³ is ready for use (later this year 🤞), setting up your own instance of a Small Web app at your own server will take less than a minute.

    I hope this little tool, along with the 404→307 (evergreen web) technique⁴, helps us to nurture an evergreen web and avoid link rot. (And the source code, as little as there is because Kitten does so much for you, is a good resource if you want to learn about Kitten’s new class-based component and page model which I haven’t yet had a chance to properly document.)

    Enjoy!

    :kitten:💕

    ¹ kitten.small-web.org
    ² codeberg.org/small-tech/auto-e
    ³ codeberg.org/domain/app
    4042307.org

    #LookOverThere #Kitten #SmallWeb #SmallTech #web #archiving #evergreenWeb #dontBreakTheWeb #LetsEncrypt #https #TLS #webForwarding #urlForwarding #Domain

  10. Ooh, what’s this?… Look Over There!
    (With apologies to Jaida Essence Hall)

    So the little app I teased earlier is ready and deployed and I have our own instance running at:

    look-over-there.small-web.org

    Look Over There! lets you forward multiple domains to different URLs with full HTTPS support.

    Why?

    We have a number of older sites that are becoming a chore/expensive to maintain and yet I don’t want to break the web. So I thought, hey, I’ll just use the “url forwarding” feature of my domain registrar to forward them to their archived versions on archive.org.

    Ah, not so fast, young cricket… seems some domain registrars’ implementations of this feature do not work if the domain being forwarded is accessed via HTTPS (yes, in 2025).

    So, given Kitten¹ uses Auto Encrypt² to automatically provision Let’s Encrypt certificates, I added a domain forwarding feature to it and created Look Over There! as a friendly/simple app that provides a visual interface to it.

    To see it in action, hit cleanuptheweb.org and you should get forwarded to the archived version of it on archive.org. I’m going to be adding more of our sites to the list in the coming days as part of an effort to reduce my maintenance load and cut down our expenses at Small Technology Foundation.

    Since it’s Small Web, this particular instance is just for us. However, you can run your own copy on a VPS (or even a little single-board computer at home, etc.) A link to the source code repository is on the site. Once Domain³ is ready for use (later this year 🤞), setting up your own instance of a Small Web app at your own server will take less than a minute.

    I hope this little tool, along with the 404→307 (evergreen web) technique⁴, helps us to nurture an evergreen web and avoid link rot. (And the source code, as little as there is because Kitten does so much for you, is a good resource if you want to learn about Kitten’s new class-based component and page model which I haven’t yet had a chance to properly document.)

    Enjoy!

    :kitten:💕

    ¹ kitten.small-web.org
    ² codeberg.org/small-tech/auto-e
    ³ codeberg.org/domain/app
    4042307.org

    #LookOverThere #Kitten #SmallWeb #SmallTech #web #archiving #evergreenWeb #dontBreakTheWeb #LetsEncrypt #https #TLS #webForwarding #urlForwarding #Domain

  11. Ooh, what’s this?… Look Over There!
    (With apologies to Jaida Essence Hall)

    So the little app I teased earlier is ready and deployed and I have our own instance running at:

    look-over-there.small-web.org

    Look Over There! lets you forward multiple domains to different URLs with full HTTPS support.

    Why?

    We have a number of older sites that are becoming a chore/expensive to maintain and yet I don’t want to break the web. So I thought, hey, I’ll just use the “url forwarding” feature of my domain registrar to forward them to their archived versions on archive.org.

    Ah, not so fast, young cricket… seems some domain registrars’ implementations of this feature do not work if the domain being forwarded is accessed via HTTPS (yes, in 2025).

    So, given Kitten¹ uses Auto Encrypt² to automatically provision Let’s Encrypt certificates, I added a domain forwarding feature to it and created Look Over There! as a friendly/simple app that provides a visual interface to it.

    To see it in action, hit cleanuptheweb.org and you should get forwarded to the archived version of it on archive.org. I’m going to be adding more of our sites to the list in the coming days as part of an effort to reduce my maintenance load and cut down our expenses at Small Technology Foundation.

    Since it’s Small Web, this particular instance is just for us. However, you can run your own copy on a VPS (or even a little single-board computer at home, etc.) A link to the source code repository is on the site. Once Domain³ is ready for use (later this year 🤞), setting up your own instance of a Small Web app at your own server will take less than a minute.

    I hope this little tool, along with the 404→307 (evergreen web) technique⁴, helps us to nurture an evergreen web and avoid link rot. (And the source code, as little as there is because Kitten does so much for you, is a good resource if you want to learn about Kitten’s new class-based component and page model which I haven’t yet had a chance to properly document.)

    Enjoy!

    :kitten:💕

    ¹ kitten.small-web.org
    ² codeberg.org/small-tech/auto-e
    ³ codeberg.org/domain/app
    4042307.org

    #LookOverThere #Kitten #SmallWeb #SmallTech #web #archiving #evergreenWeb #dontBreakTheWeb #LetsEncrypt #https #TLS #webForwarding #urlForwarding #Domain

  12. Ooh, what’s this?… Look Over There!
    (With apologies to Jaida Essence Hall)

    So the little app I teased earlier is ready and deployed and I have our own instance running at:

    look-over-there.small-web.org

    Look Over There! lets you forward multiple domains to different URLs with full HTTPS support.

    Why?

    We have a number of older sites that are becoming a chore/expensive to maintain and yet I don’t want to break the web. So I thought, hey, I’ll just use the “url forwarding” feature of my domain registrar to forward them to their archived versions on archive.org.

    Ah, not so fast, young cricket… seems some domain registrars’ implementations of this feature do not work if the domain being forwarded is accessed via HTTPS (yes, in 2025).

    So, given Kitten¹ uses Auto Encrypt² to automatically provision Let’s Encrypt certificates, I added a domain forwarding feature to it and created Look Over There! as a friendly/simple app that provides a visual interface to it.

    To see it in action, hit cleanuptheweb.org and you should get forwarded to the archived version of it on archive.org. I’m going to be adding more of our sites to the list in the coming days as part of an effort to reduce my maintenance load and cut down our expenses at Small Technology Foundation.

    Since it’s Small Web, this particular instance is just for us. However, you can run your own copy on a VPS (or even a little single-board computer at home, etc.) A link to the source code repository is on the site. Once Domain³ is ready for use (later this year 🤞), setting up your own instance of a Small Web app at your own server will take less than a minute.

    I hope this little tool, along with the 404→307 (evergreen web) technique⁴, helps us to nurture an evergreen web and avoid link rot. (And the source code, as little as there is because Kitten does so much for you, is a good resource if you want to learn about Kitten’s new class-based component and page model which I haven’t yet had a chance to properly document.)

    Enjoy!

    :kitten:💕

    ¹ kitten.small-web.org
    ² codeberg.org/small-tech/auto-e
    ³ codeberg.org/domain/app
    4042307.org

    #LookOverThere #Kitten #SmallWeb #SmallTech #web #archiving #evergreenWeb #dontBreakTheWeb #LetsEncrypt #https #TLS #webForwarding #urlForwarding #Domain

  13. Ooh, what’s this?… Look Over There!
    (With apologies to Jaida Essence Hall)

    So the little app I teased earlier is ready and deployed and I have our own instance running at:

    look-over-there.small-web.org

    Look Over There! lets you forward multiple domains to different URLs with full HTTPS support.

    Why?

    We have a number of older sites that are becoming a chore/expensive to maintain and yet I don’t want to break the web. So I thought, hey, I’ll just use the “url forwarding” feature of my domain registrar to forward them to their archived versions on archive.org.

    Ah, not so fast, young cricket… seems some domain registrars’ implementations of this feature do not work if the domain being forwarded is accessed via HTTPS (yes, in 2025).

    So, given Kitten¹ uses Auto Encrypt² to automatically provision Let’s Encrypt certificates, I added a domain forwarding feature to it and created Look Over There! as a friendly/simple app that provides a visual interface to it.

    To see it in action, hit cleanuptheweb.org and you should get forwarded to the archived version of it on archive.org. I’m going to be adding more of our sites to the list in the coming days as part of an effort to reduce my maintenance load and cut down our expenses at Small Technology Foundation.

    Since it’s Small Web, this particular instance is just for us. However, you can run your own copy on a VPS (or even a little single-board computer at home, etc.) A link to the source code repository is on the site. Once Domain³ is ready for use (later this year 🤞), setting up your own instance of a Small Web app at your own server will take less than a minute.

    I hope this little tool, along with the 404→307 (evergreen web) technique⁴, helps us to nurture an evergreen web and avoid link rot. (And the source code, as little as there is because Kitten does so much for you, is a good resource if you want to learn about Kitten’s new class-based component and page model which I haven’t yet had a chance to properly document.)

    Enjoy!

    :kitten:💕

    ¹ kitten.small-web.org
    ² codeberg.org/small-tech/auto-e
    ³ codeberg.org/domain/app
    4042307.org

    #LookOverThere #Kitten #SmallWeb #SmallTech #web #archiving #evergreenWeb #dontBreakTheWeb #LetsEncrypt #https #TLS #webForwarding #urlForwarding #Domain

  14. @br00t4c
    Criticizing the wife of a Potus for how she cares for her husband is something #Fox will never have to worry about with #Melania. #LookOverThere #Squirrel