Tv
Tv
Emacs by default uses dangling symbolic links to guard against accidentally editing the same file from two editors: https://www.gnu.org/software/emacs/manual/html_node/emacs/Interlocking.html In practice, this looks like ``` $ find -name '.#*' -ls...
routify 1.9.7 create `src/pages/test[slug].svelte`: ``` import { params } from '@sveltech/routify' export let slug; slug {JSON.stringify(slug)} params {JSON.stringify($params)} ``` visit `/testfoo`, observe output ``` slug "testfoo" params {"slug":"testfoo"} ``` Expected...
Routing is arguably the most important feature of something named "routify". The documentation for the `[slug]`, `_folder`, etc conventions are not offered prominently enough. As far as I can tell,...
I understand Routify started out as a SPA router, and a bunch of rollup config+plugins and/or Roxi can make it be more. But since the "more" part is actually also...
https://google.github.io/comprehensive-rust/generics/trait-objects.html has this diagram: https://github.com/google/comprehensive-rust/blob/c212a473ba4d060b209b654c0dd403328d6e137f/src/generics/trait-objects.md?plain=1#L41-L67 Quoting https://doc.rust-lang.org/reference/types/trait-object.html > Each instance of a pointer to a trait object includes: > > - a pointer to an instance of a type T...
### Describe the bug (This bug also occurs with `@sveltejs/[email protected]`, I'm talking about `1.0.0-next.36` because that's what introduced the issue.) I need a workaround for an ugly Safari bug, which...
Hi. I have a spreadsheet-like report that looks like category | cost -|- widgets | 42.00 gadgets | 1.10 thingies | 890.00 I would like to align the numbers so...
Typst input can read arbitrary files: ``` # adjust for the right amount of .. echo '#read("../../../etc/passwd")' >repro.typ typst repro.typ ``` The contents can be smuggled in innocent-looking PDFs with...
Right now, typst seems to contain hardcoded localization for English and German: https://github.com/typst/typst/blob/045a109600fa9127d22259287bbde62234cadb44/library/src/meta/figure.rs#L89 https://github.com/typst/typst/blob/045a109600fa9127d22259287bbde62234cadb44/library/src/meta/heading.rs#L143 https://github.com/typst/typst/blob/045a109600fa9127d22259287bbde62234cadb44/library/src/meta/outline.rs#L179 and so on. This doesn't seem like a great way forward.. And I'm saying this...
https://typst.app/docs/tutorial/advanced-styling/ > Now there is only one thing left to do: Style our headings. We need to make them centered and use small capitals. [...] > > ``` > #show...