home.social

Search

1000 results for “kitten_tech”

  1. 🥳 New Kitten Release

    • Added `target` and `data-*` to the list of safe attributes you can specify within curly brackets when writing Markdown in Kitten.

    Enjoy!

    :kitten:💕

    kitten.small-web.org

    #Kitten #KittenReleases #SmallWeb #SmallTech #Markdown #web #dev

  2. 🥳 New Kitten¹ release

    • Added `initialise()` hook to `kitten.Component` instances.

    This gets called at the end of the constructor and is handy if you don’t want to override the constructor and have to handle the `data` parameter and remember to call `super(data)`. You can still access passed data from `this.data`.
    
Note that the component is not part of the view hierarchy on the client at this point. If you have tasks you need to perform only once per page – for example, instantiating a child component to use in your view template – override the `onConnect()` handler instead which is guaranteed to be called just once when your component has successfully been added to a connected page.

    codeberg.org/kitten/app/src/br

    Enjoy!

    :kitten:💕

    ¹ kitten.small-web.org

    #Kitten #KittenReleases #SmallWeb #SmallTech #web #dev #components

  3. 🥳 New Kitten release

    ⁃ Bug fix: Kitten no longer awaits events bubbled from the client to the server.

    Kitten’s Streaming HTML workflow¹ transparently bubbles events from the client to the server so you can keep all your code on one tier and stream HTML updates to the page. Anyway, so I was awaiting events while bubbling them instead of just firing them off in parallel which meant that if you had delays, etc., in some of your event handlers, the timing of other event handlers would be affected. This is now fixed so your event handlers should fire independently of each other. (Your async event handlers will continue to work as intended so you can script animations, etc., by awaiting delays within them.)

    Enjoy!

    kitten.small-web.org

    :kitten:💕

    ¹ kitten.small-web.org/tutorials

    #Kitten #KittenReleases #SmallWeb #SmallTech #bugFix #events #StreamingHTML

  4. 🥳 New Kitten release

    ⁃ Bug fix: Kitten no longer awaits events bubbled from the client to the server.

    Kitten’s Streaming HTML workflow¹ transparently bubbles events from the client to the server so you can keep all your code on one tier and stream HTML updates to the page. Anyway, so I was awaiting events while bubbling them instead of just firing them off in parallel which meant that if you had delays, etc., in some of your event handlers, the timing of other event handlers would be affected. This is now fixed so your event handlers should fire independently of each other. (Your async event handlers will continue to work as intended so you can script animations, etc., by awaiting delays within them.)

    Enjoy!

    kitten.small-web.org

    :kitten:💕

    ¹ kitten.small-web.org/tutorials

    #Kitten #KittenReleases #SmallWeb #SmallTech #bugFix #events #StreamingHTML

  5. 🥳 New Kitten release

    ⁃ Bug fix: Kitten no longer awaits events bubbled from the client to the server.

    Kitten’s Streaming HTML workflow¹ transparently bubbles events from the client to the server so you can keep all your code on one tier and stream HTML updates to the page. Anyway, so I was awaiting events while bubbling them instead of just firing them off in parallel which meant that if you had delays, etc., in some of your event handlers, the timing of other event handlers would be affected. This is now fixed so your event handlers should fire independently of each other. (Your async event handlers will continue to work as intended so you can script animations, etc., by awaiting delays within them.)

    Enjoy!

    kitten.small-web.org

    :kitten:💕

    ¹ kitten.small-web.org/tutorials

    #Kitten #KittenReleases #SmallWeb #SmallTech #bugFix #events #StreamingHTML

  6. 🥳 New Kitten release

    ⁃ Bug fix: Kitten no longer awaits events bubbled from the client to the server.

    Kitten’s Streaming HTML workflow¹ transparently bubbles events from the client to the server so you can keep all your code on one tier and stream HTML updates to the page. Anyway, so I was awaiting events while bubbling them instead of just firing them off in parallel which meant that if you had delays, etc., in some of your event handlers, the timing of other event handlers would be affected. This is now fixed so your event handlers should fire independently of each other. (Your async event handlers will continue to work as intended so you can script animations, etc., by awaiting delays within them.)

    Enjoy!

    kitten.small-web.org

    :kitten:💕

    ¹ kitten.small-web.org/tutorials

    #Kitten #KittenReleases #SmallWeb #SmallTech #bugFix #events #StreamingHTML

  7. 🥳 @small-web/kitten version 6.2.2 released

    This is Kitten’s type library (see kitten.small-web.org/tutorials for a tutorial).

    This release fixes a few type errors that crept in in the previous release that were stopping it from being compiled with tsc. (You might want to do this if you’re creating, say, type declarations for your component app modules. For a tutorial on app modules, see the one on Database App Modules: kitten.small-web.org/tutorials)

    Also, some housekeeping: I’ve upgraded the type declarations of any third-party modules used to their latest versions.

    Enjoy!

    :kitten:💕

    #Kitten #SmallWeb #JavaScript #types #kittenGlobalsReleases

  8. The built-in database backup and restore feature in Kitten¹ (that actually works and is in the Kitten Settings section of every Kitten app) just saved my ass (again) :)

    Thank you, past me ;)

    ¹ kitten.small-web.org

    #Kitten #JSDB #backups #SmallWeb #SmallTech

  9. The built-in database backup and restore feature in Kitten¹ (that actually works and is in the Kitten Settings section of every Kitten app) just saved my ass (again) :)

    Thank you, past me ;)

    ¹ kitten.small-web.org

    #Kitten #JSDB #backups #SmallWeb #SmallTech

  10. The built-in database backup and restore feature in Kitten¹ (that actually works and is in the Kitten Settings section of every Kitten app) just saved my ass (again) :)

    Thank you, past me ;)

    ¹ kitten.small-web.org

    #Kitten #JSDB #backups #SmallWeb #SmallTech

  11. The built-in database backup and restore feature in Kitten¹ (that actually works and is in the Kitten Settings section of every Kitten app) just saved my ass (again) :)

    Thank you, past me ;)

    ¹ kitten.small-web.org

    #Kitten #JSDB #backups #SmallWeb #SmallTech

  12. Added information on HTML, CSS, and Markdown Fragments to the Kitten Components and Fragments tutorial, including a little TypeScript type declarations file you can add to your projects so you don’t get type warnings for them when you import them in your projects:

    kitten.small-web.org/tutorials

    Enjoy!

    :kitten:💕

    #Kitten #SmallWeb #SmallTech #web #dev #fragments #TypeScript

  13. Added information on HTML, CSS, and Markdown Fragments to the Kitten Components and Fragments tutorial, including a little TypeScript type declarations file you can add to your projects so you don’t get type warnings for them when you import them in your projects:

    kitten.small-web.org/tutorials

    Enjoy!

    :kitten:💕

    #Kitten #SmallWeb #SmallTech #web #dev #fragments #TypeScript

  14. Added information on HTML, CSS, and Markdown Fragments to the Kitten Components and Fragments tutorial, including a little TypeScript type declarations file you can add to your projects so you don’t get type warnings for them when you import them in your projects:

    kitten.small-web.org/tutorials

    Enjoy!

    :kitten:💕

    #Kitten #SmallWeb #SmallTech #web #dev #fragments #TypeScript

  15. Added information on HTML, CSS, and Markdown Fragments to the Kitten Components and Fragments tutorial, including a little TypeScript type declarations file you can add to your projects so you don’t get type warnings for them when you import them in your projects:

    kitten.small-web.org/tutorials

    Enjoy!

    :kitten:💕

    #Kitten #SmallWeb #SmallTech #web #dev #fragments #TypeScript

  16. Kitten Who Spent All Day Sleeping Now Ready For Big Night Of Sleeping Somewhere Else #fakeheadlines #cats #kittens

  17. @kitten @ka_so

    Honestly, I prefer
    #NHRL primarily because they're producing more new, regularly-scheduled, high-quality competition shows in places I can easily watch.

    If
    #BattleBots went back to a championship every year plus FaceOffs or whatever... frankly I'd just watch both. I'm not so strapped for screen time that I have pick one or the other.

  18. Update from Slate: This little boy is enjoying a nap with his new family ❤ 🐱 #kitten #fosterkitten #catsofmastodon #mastocats