home.social

Search

481 results for “develwithoutacause”

  1. Speaking of not writing documentation: I also prototyped a very cool idea for how to greatly simplify the developer experience of *and* make it understand even more complex dependency graphs.

    Still more experimenting to be done, but I'm hopeful this is a viable strategy and will be a big improvement for developers! 😁

  2. Released a new version of #rules_prerender with full #Preact support built-in.

    github.com/dgp1130/rules_prere

    Getting closer and closer to something I'd be willing to call a 1.0.0!

    Biggest open issue is still actually writing all the documentation, though I keep getting distracted by other features.

  3. Released a new version of #rules_prerender with full #Preact support built-in.

    github.com/dgp1130/rules_prere

    Getting closer and closer to something I'd be willing to call a 1.0.0!

    Biggest open issue is still actually writing all the documentation, though I keep getting distracted by other features.

  4. Released a new version of #rules_prerender with full #Preact support built-in.

    github.com/dgp1130/rules_prere

    Getting closer and closer to something I'd be willing to call a 1.0.0!

    Biggest open issue is still actually writing all the documentation, though I keep getting distracted by other features.

  5. Released a new version of #rules_prerender with full #Preact support built-in.

    github.com/dgp1130/rules_prere

    Getting closer and closer to something I'd be willing to call a 1.0.0!

    Biggest open issue is still actually writing all the documentation, though I keep getting distracted by other features.

  6. Released a new version of with full support built-in.

    github.com/dgp1130/rules_prere

    Getting closer and closer to something I'd be willing to call a 1.0.0!

    Biggest open issue is still actually writing all the documentation, though I keep getting distracted by other features.

  7. Apparently #Preact (or #JSX / #VDom) cannot directly render comments: github.com/preactjs/preact/iss

    I get why that's not super useful in a client-side context, but particularly for server-side rendering use cases I would expect to be able to render comments. I would expect to be able to render any arbitrary DOM structure, but I guess that's not possible out of the box?

    Not sure if there any workarounds to render comments in Preact. I'm not immediately able to find anything, might be a challenge to work around.

  8. Apparently #Preact (or #JSX / #VDom) cannot directly render comments: github.com/preactjs/preact/iss

    I get why that's not super useful in a client-side context, but particularly for server-side rendering use cases I would expect to be able to render comments. I would expect to be able to render any arbitrary DOM structure, but I guess that's not possible out of the box?

    Not sure if there any workarounds to render comments in Preact. I'm not immediately able to find anything, might be a challenge to work around.

  9. Apparently #Preact (or #JSX / #VDom) cannot directly render comments: github.com/preactjs/preact/iss

    I get why that's not super useful in a client-side context, but particularly for server-side rendering use cases I would expect to be able to render comments. I would expect to be able to render any arbitrary DOM structure, but I guess that's not possible out of the box?

    Not sure if there any workarounds to render comments in Preact. I'm not immediately able to find anything, might be a challenge to work around.

  10. Apparently #Preact (or #JSX / #VDom) cannot directly render comments: github.com/preactjs/preact/iss

    I get why that's not super useful in a client-side context, but particularly for server-side rendering use cases I would expect to be able to render comments. I would expect to be able to render any arbitrary DOM structure, but I guess that's not possible out of the box?

    Not sure if there any workarounds to render comments in Preact. I'm not immediately able to find anything, might be a challenge to work around.

  11. Apparently (or / ) cannot directly render comments: github.com/preactjs/preact/iss

    I get why that's not super useful in a client-side context, but particularly for server-side rendering use cases I would expect to be able to render comments. I would expect to be able to render any arbitrary DOM structure, but I guess that's not possible out of the box?

    Not sure if there any workarounds to render comments in Preact. I'm not immediately able to find anything, might be a challenge to work around.

  12. @mdh I can definitely see the argument that better #RPC technologies would reduce the desire for the client and the server to be the same language. Though in my experience I don't think I've ever seen shared logic in the API layer beyond #TypeScript types.

    The environments are so different between the browser and Node that you have to really go out of your way to write portable #JavaScript.

    Server-side rendering is the killer feature which usually shares code between the frontend and backend. If we could do that without either:

    1) forcing the client JS to run on the server or
    2) duplicating the rendering logic on the server

    then users would have a lot more freedom to pick their preferred server language and ecosystem. #HydroActive does this.

    youtu.be/zL0TzFY6aj0

    Even if that was super successful, I doubt it would meaningfully reduce the developers using Node. JavaScript os just too big and developers don't want to context switch between different languages IMHO.

  13. @mdh I feel like there could definitely be some meaningful progress here. A form of #CSP and a `--no-eval` sound straightforward.

    I'm not sure how #gRPCWeb factors into this though. From a security perspective, how is that different from a traditional #HTTP #REST service?

  14. @mdh I feel like there could definitely be some meaningful progress here. A form of #CSP and a `--no-eval` sound straightforward.

    I'm not sure how #gRPCWeb factors into this though. From a security perspective, how is that different from a traditional #HTTP #REST service?

  15. @mdh I feel like there could definitely be some meaningful progress here. A form of #CSP and a `--no-eval` sound straightforward.

    I'm not sure how #gRPCWeb factors into this though. From a security perspective, how is that different from a traditional #HTTP #REST service?

  16. @mdh I feel like there could definitely be some meaningful progress here. A form of #CSP and a `--no-eval` sound straightforward.

    I'm not sure how #gRPCWeb factors into this though. From a security perspective, how is that different from a traditional #HTTP #REST service?

  17. @mdh I feel like there could definitely be some meaningful progress here. A form of and a `--no-eval` sound straightforward.

    I'm not sure how factors into this though. From a security perspective, how is that different from a traditional service?

  18. Looking into the current state-of-the-art for #NodeJS security and I'm kind of baffled by how primitive it is compared to browsers.

    * No #TrustedTypes.
    * No `SafeHtml`.
    * No #ContentSecurityPolicy.
    * No permission abstractions.
    * Not even a way to ban `eval()`.

    Best thing I've found is `--frozen-intrinsics`, which is interesting, and I don't think there's a browser equivalent. You still have to freeze `globalThis` though to get much value out of it.

    nodejs.org/en/docs/guides/secu

    There are also some interesting security policies, which look like they have a lot of potential. However they're all experimental right now and seem focused on code integrity.

    nodejs.org/api/permissions.htm

    This this really the state-of-the-art for #Node security right now? Am I missing something?

  19. I do have an initial draft of a post about how #web developers confused #bundlers and #BuildSystems and screwed over the entire #tooling ecosystem.

    This is kind of the same point, and maybe I just need to finish that damn post.

  20. I do have an initial draft of a post about how #web developers confused #bundlers and #BuildSystems and screwed over the entire #tooling ecosystem.

    This is kind of the same point, and maybe I just need to finish that damn post.

  21. I do have an initial draft of a post about how #web developers confused #bundlers and #BuildSystems and screwed over the entire #tooling ecosystem.

    This is kind of the same point, and maybe I just need to finish that damn post.

  22. I do have an initial draft of a post about how #web developers confused #bundlers and #BuildSystems and screwed over the entire #tooling ecosystem.

    This is kind of the same point, and maybe I just need to finish that damn post.

  23. I do have an initial draft of a post about how developers confused and and screwed over the entire ecosystem.

    This is kind of the same point, and maybe I just need to finish that damn post.

  24. Question for people using #MicroFrontends and #Monorepos: What do your #integration tests look like?

    The #Google model of monorepos always builds everything at HEAD, but doing so would not catch version skew issues that come with independent deployments. That implies that your integration tests _cannot_ just build and run everything at HEAD, you actually have to deploy each change individually to a staging environment and alert on failures.

    That feels like a much more complex setup than I'm used to seeing for integration tests. Do people actually do this or is version skew a giant blind spot for microfrontend testing?

  25. After a lot of work, I've finally landed a release of #Bazel #rules_prerender which is compatible with #aspect_rules_js! github.com/dgp1130/rules_prere

    This has been a long time coming, and the issue shows how big a change this was (github.com/dgp1130/rules_prere). It didn't help that I kept getting distracted with other things and forgot everything I was doing. 😅

    #aspect_rules_js does seem like a solid improvement and it sets up #rules_prerender for a lot of awesome improvements in the future (#ESM, #bzlmod, better bundling, etc.) Super excited about where we can take this next!

    Shout out to @alexeagle and Greg Magolan (who I don't think is on Mastodon?) for their help, couldn't have done it without you!

  26. After a lot of work, I've finally landed a release of #Bazel #rules_prerender which is compatible with #aspect_rules_js! github.com/dgp1130/rules_prere

    This has been a long time coming, and the issue shows how big a change this was (github.com/dgp1130/rules_prere). It didn't help that I kept getting distracted with other things and forgot everything I was doing. 😅

    #aspect_rules_js does seem like a solid improvement and it sets up #rules_prerender for a lot of awesome improvements in the future (#ESM, #bzlmod, better bundling, etc.) Super excited about where we can take this next!

    Shout out to @alexeagle and Greg Magolan (who I don't think is on Mastodon?) for their help, couldn't have done it without you!

  27. After a lot of work, I've finally landed a release of #Bazel #rules_prerender which is compatible with #aspect_rules_js! github.com/dgp1130/rules_prere

    This has been a long time coming, and the issue shows how big a change this was (github.com/dgp1130/rules_prere). It didn't help that I kept getting distracted with other things and forgot everything I was doing. 😅

    #aspect_rules_js does seem like a solid improvement and it sets up #rules_prerender for a lot of awesome improvements in the future (#ESM, #bzlmod, better bundling, etc.) Super excited about where we can take this next!

    Shout out to @alexeagle and Greg Magolan (who I don't think is on Mastodon?) for their help, couldn't have done it without you!

  28. After a lot of work, I've finally landed a release of #Bazel #rules_prerender which is compatible with #aspect_rules_js! github.com/dgp1130/rules_prere

    This has been a long time coming, and the issue shows how big a change this was (github.com/dgp1130/rules_prere). It didn't help that I kept getting distracted with other things and forgot everything I was doing. 😅

    #aspect_rules_js does seem like a solid improvement and it sets up #rules_prerender for a lot of awesome improvements in the future (#ESM, #bzlmod, better bundling, etc.) Super excited about where we can take this next!

    Shout out to @alexeagle and Greg Magolan (who I don't think is on Mastodon?) for their help, couldn't have done it without you!

  29. After a lot of work, I've finally landed a release of which is compatible with ! github.com/dgp1130/rules_prere

    This has been a long time coming, and the issue shows how big a change this was (github.com/dgp1130/rules_prere). It didn't help that I kept getting distracted with other things and forgot everything I was doing. 😅

    does seem like a solid improvement and it sets up for a lot of awesome improvements in the future (, , better bundling, etc.) Super excited about where we can take this next!

    Shout out to @alexeagle and Greg Magolan (who I don't think is on Mastodon?) for their help, couldn't have done it without you!

  30. #Idea: Open a new #GoogleDoc and write out a bunch of bullet points about a document/memo/essay you want to write then click "Extensions > Convert to Prose". This would call #ChatGPT (or whatever) and convert those bullet points into a full doc which structures the ideas, elaborates a bit, and provides a concrete starting point.

    I know I always start docs with a bunch of bullet points and slowly expand on them. Having a robot start that process would help get complex ideas on paper and help with the "blank document" problem.