Adam Sobotka

Results 22 comments of Adam Sobotka

Oh. I misunderstood the impact of what @lucacasonato is saying here. Ouch. It is logical if we think about the nature of the framework, but at the same time it...

I'd support moving this to discussion. The original feature request is not clear (Fresh does support databases). For me, the first thing I'd need to solve is caching and graphql,...

As much as I agree this is helpful and important, I respectfully disagree with the idea of anything we discuss as a "must have" for fullstack framework. Fresh is a...

Sure, will do. Thank you. On Mon, Aug 8, 2022, 12:52 AM Dawson Botsford ***@***.***> wrote: > Hi @vorcigernix , I'm open to considering > this. Can you make a...

So here is the repo that actually partly works: https://github.com/vorcigernix/essential-eth-deno The biggest problem for me is that sometimes I don't know what the helper functions do, I believe that we...

Yes, it is not super important and it is solvable. My thinking was that sometimes you don't need the server render part at all so it could be "cheaper on...

🤖 AI explorations: I built this https://etherpedia.vercel.app/ and I'll be happy to move this under foundation website (it was a weekend, for lulz project). I can provide thec ode and...

Same here. This is not an issue of the adapter though, it is a compatibility issue on the library side (unfortunately a very common thing).

I'd say that this will work only in case that confliction package is one of optional dependencies. On Thu, Mar 9, 2023, 2:09 AM RobKohr ***@***.***> wrote: > Based on...

route.path is ""? How about adding path observer like: ` observers: ['_pathChanged(route.path)'], _pathChanged: function() { this.async(function() { if (!this.route.path) { this.set('route.path', '/#/view1'); } }); }, `