𝕤𝕥𝕖𝕧𝕖𝟘𝟚𝟘𝟠𝟙𝟝𝟘𝟜
Explore posts from servershow to clear import cache of an file?
My project uses
import
to load submodules.
And I want to make submodules reloadable without stopping the project: clearing the import
cache of all mjs
and ts
files in the submodule folder and reimporting the entrypoint file.
Is this possible to do in deno?8 replies
Is it possible for `.net` to create exe files smaller than 1kb?
In general, I've been trying to do something related to the smallest exe files lately
In my searches, I've seen that the smallest .net-based exe file appears to be 1kb:
https://blog.washi.dev/posts/tinysharp/
At the same time, I've also seen some even smaller exe files for native X64 that are just over two hundred bytes:
https://github.com/ayaka14732/TinyPE-on-Win10
I'm wondering if it's possible for .net based exe files to be smaller than 1kb?In my current experiments I've tried removing the
NUL
byte at the end of the generated exe file, but the program will become unrunnable.1 replies