CodyC
CodyC
Explore posts from servers
Aarktype
Created by CodyC on 3/23/2025 in #questions
How do I name a morph?
For writing little CLI tools that parse JSON data or config files, it's so nice to be able to just throw the error and give the end user something very easy to make sense of w/o having to roll error formatting code all the time.
7 replies
Aarktype
Created by CodyC on 3/23/2025 in #questions
How do I name a morph?
Other than this, so far ArkType has the best default error output of any of the TS validation libraries I've used. ❤️
7 replies
Aarktype
Created by sbs on 3/23/2025 in #questions
string.numeric.parse accepts empty strings and returns a NaN
> type("string.numeric.parse")("").summary
'must be a well-formed numeric string (was "")'
> type("string.numeric.parse")("").summary
'must be a well-formed numeric string (was "")'
4 replies
Aarktype
Created by sbs on 3/23/2025 in #questions
string.numeric.parse accepts empty strings and returns a NaN
What version are you on? I'm on 2.1 and it works as expected for me.
type("string.numeric.parse")("")
type("string.numeric.parse")("")
returns an error.
4 replies
Aarktype
Created by sbs on 3/23/2025 in #questions
string.numeric.parse accepts empty strings and returns a NaN
That feels like a bug. Docs say string.numeric morphs a "well-formed numeric string" and "" doesn't seem well-formed to me. 😅
4 replies
DDeno
Created by hob on 3/15/2025 in #help
high memory usage using compiled binary in docker
If you can compare the compiled binary size between the two different binaries that are showing the different memory usage, that might confirm that that's the issue.
15 replies
DDeno
Created by hob on 3/15/2025 in #help
high memory usage using compiled binary in docker
I just mean, you said you can compile it and run it outside of docker and it only takes 70mb. that's 1/10th the size. I wonder if you're compiling a very different set of dependencies. (and that --include dist/ looks like a likely cuplrit.)
15 replies
DDeno
Created by hob on 3/15/2025 in #help
high memory usage using compiled binary in docker
Running the compiled version of the app on my machine only uses around 70mb.
Is that binary also 682 MB? If not, it seems your build processes have diverged.
15 replies
DDeno
Created by hob on 3/15/2025 in #help
high memory usage using compiled binary in docker
700mb? And your dist/ was only 12MB? So you just have a LOT of dependencies?
15 replies
DDeno
Created by hob on 3/15/2025 in #help
high memory usage using compiled binary in docker
Yes, deno compile --include includes the file contents into the compiled file so that they're available at runtime without having to read them from disk.
15 replies
DDeno
Created by hob on 3/15/2025 in #help
high memory usage using compiled binary in docker
@hob how big is that dist/ that you include? I wonder if it's getting loaded into memory at startup?
15 replies
DDeno
Created by hob on 3/15/2025 in #help
high memory usage using compiled binary in docker
They have eventually dropped a bit
Have links for that? I'm interested in containerized performance. That almost sounds like a bug. (ex: JVMs used to use the OS memory, not the container memory, to allocate initial heap.)
15 replies
DDeno
Created by Santiago Aguilar Hernandez on 3/13/2025 in #help
How Node.js SQLite works on Deno?
if those will be reflected in Deno once Node.js deploys them
If you see a bug in Node.js, it might be interesting to test Deno's implementation to see if it's also present there. And I imagine the Deno team would appreciate a bug report if that's the case. I think one of the open issues/requests is for Node.js is to add async APIs, and I definitely hope Deno will implement that too once Node.js specifies the API. (Alternatively, I wouldn't mind Deno-specific async sqlite APIs, but I can see why it's simpler to just let Node design it so there aren't 2 to support.)
5 replies
DDeno
Created by dandv on 3/3/2025 in #help
Deno check/lint doesn't warn against obvious bugs
As for:
// Should warn on points[3] possibly being undefined
Unfortunately, even typescript "strict" mode doesn't enable this check. There is a LOT of code that just assumes your indexes are in-bounds. It can become tedious to check undefined for all cases. If you want that check, you have to enable: https://www.typescriptlang.org/tsconfig/#noUncheckedIndexedAccess
8 replies
DDeno
Created by dandv on 3/3/2025 in #help
Deno check/lint doesn't warn against obvious bugs
8 replies
DDeno
Created by dandv on 3/3/2025 in #help
Deno check/lint doesn't warn against obvious bugs
No description
8 replies
DDeno
Created by Sethu on 3/8/2025 in #help
Native file selector for Deno
If you publish a version of that lib, please ping me. Sounds useful!
14 replies
DDeno
Created by Sethu on 3/8/2025 in #help
Native file selector for Deno
I feel like Windows must have something similar to osascript? But I wouldn't know where to look off the top of my head. Maybe PowerShell commands?
14 replies
DDeno
Created by Sethu on 3/8/2025 in #help
Native file selector for Deno
BTW, since you'll be working with commands, if you haven't seen it yet, Dax is a much nicer interface for that than Deno.Command. I use it all the time. https://jsr.io/@david/dax#executing-commands
14 replies
DDeno
Created by Sethu on 3/8/2025 in #help
Native file selector for Deno
Yeah I was just thinking that might be a fun lib to write. 🙂
14 replies