Angius
Explore posts from serversCDCloudflare Developers
•Created by Angius on 3/24/2025 in #general-help
Trying to enable AI Labirynth results in request timing out

3 replies
`ts-match` unable to infer types properly
I'm using the
ts-match
library to do some pattern matching on an object, and it seems unable to infer most types properly. Perhaps someone has experience with it.
My code is https://pastie.io/htxtti.ts and I'm seeing errors left, right, and center.
* 1: Type 'unknown' is not assignable to type '[typeString: string | undefined, skipImport: boolean]'
* 9: Object literal may only specify known properties, and 'enum' does not exist in type 'Matcher<never, unknown, any, any, unknown>'
* 10: Property 'enum' does not exist on type 'never'
* 10: Parameter 'e' implicitly has an 'any' type
* 13: Object literal may only specify known properties, and 'oneOf' does not exist in type 'Matcher<never, unknown, any, any, unknown>'
* 15: Property 'oneOf' does not exist on type 'never'
* 24: Object literal may only specify known properties, and 'properties' does not exist in type 'Matcher<never, unknown, any, any, unknown>
* 26: Property 'properties' does not exist on type 'never'
* 27: Argument of type 'unknown' is not assignable to parameter of type 'Type'
* 35: Object literal may only specify known properties, and 'type' does not exist in type 'Matcher<never, unknown, any, any, unknown>'
* 36: Property 'type' does not exist on type 'never'
For reference, the type I'm matching on is
2 replies
Aspire user secrets not available in prod environment
I created a prod profile in launchsettings of my apphost:
and everything works when I run the
dev
profile, but prod
profile throws
at me, on the last line here
Those values come from usersecrets, could that be the issue?6 replies
CDCloudflare Developers
•Created by Angius on 3/7/2025 in #workers-help
Email worker doesn't work, logs and tail are empty
I have a very simple worker:
Whenever I send an email to the address the worker is supposed to work for, it's rejected. I only see it in the email routing dashboard, and the error message is
Worker call resulted in an error: Worker call failed for 3 times, aborting...
The logs are empty, wrangler tail
gives me no output either.2 replies
Excerpt does not work
I have
.md
files with <!--more-->
delimiter in them.
I'm trying to render just that excerpt with
but it just doesn't work, it renders the entire post instead.
What's more, after inspecting post
, it turns out this object doesn't have the excerpt
property, despite the docs stating that every item that has <!--more-->
will have it.11 replies
Aspire project won't run if `applicationUrl` given in `launchSettings.json`
Weirdest shit ever...
and going to
https://localhost:5001
results in endless loading until the request times out, but
makes the link not show on Aspire dashboard, true, but manually going to https://localhost:5001
works just peachy...
My Aspire config if it matters:
39 replies
EF Core 1-1 relationship with automatic discriminator
I have a
CommentsThread
entity and multiple ICommentable
entities (Blogpost
, Profile
, Document
, etc.) that all reference it:
now, I would like a way to easily find what the comments thread belongs to. Does it contain comments of a blogpost? User profile? Document?
One way I figured was to reverse the relationship, and instead have a bunch of nullable FKs in the CommentsThread
entity, pointing to all the ICommentable
s. That way, I could do some
but it all seems iffy at best.
Ideally, what I would like instead, was some
properties on the CommentsThread
, with CommentsSource
being an enum.
Problem is, I have nary a clue how to do that. I considered maybe computed columns, but they seemingly can only reference the current entity.20 replies
Adding Blazor to an existing Razor Pages project
I decided that messing around with SSR and JS for the admin panel is not worth the hassle and I'll just make it with Blazor. I don't care about the bundle size, I don't care about SignalR connections, seems to be a perfect fit.
I think I did everything correctly, but I'm still getting errors out the wazoo.
but going to
/panel
results in the following:
With the whole log being https://pastie.io/bcixjg.yml3 replies
Typing `parseArgs` from `@std/cli` properly
I'm having trouble figuring out how would I type the result of
parseArgs
with collect
setting.
the error is caused by the function taking a { [key: string] string }
as the second parameter, while args[path]
is typed as unknown[]
.
The code works, just so we're clear, it's just the types that error out.2 replies
`Microsoft.Extensions.Logging` and Serilog compatible timing library?
I'm currently using https://github.com/nblumhardt/serilog-timings to log how much time a given operation took. It was nice and all when I was using a static logger, but I wanted to switch to an injected
ILogger
instance.
Problem is, SerilogTimings
works on a Serilog.ILogger
instance, not MEL.ILogger
which feels kinda smelly to me.
Is there any other library I could use with Serilog and MEL that would let me easily time whatever operations?4 replies
Getting route data from a WebAPI without Swagger
The way I'm currently generating TS clients, is I use NSwag to get the OpenAPI spec, then I have a tool written in JS that parses that json and generates TS clients. I was thinking of eliminating some steps from that, though.
The way I see it, I should be able to make a console app that references my WebAPI project, and somehow get the route data from there. All nicely typed and all. Bypassing Swagger completely.
Can't figure out how, though
15 replies
✅ SkiaSharp canvas scale not scaling
I have a method that takes an
int[,]
array with ones and zeroes. Based on that, I want to create an image, that is optionally resized and blurred.
Creating the image at 1:1 scale works, blurring it works as well, but for the love of me I cannot get it to scale...
5 replies