aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent/formats/vdir/save-delete.scm (unfollow)
Commit message (Collapse)Author
2022-03-15Add native UUID generator.Hugo Hörnquist
While not necessary, since we barely use UUID:s, it's still WAY faster, and nice to not depend on the system providing `uuidgen'. For comparison, number of UUID:s generated by different settups in 1 second: 65.000 :: guile native 700 :: guile shell-out 3.500.000 :: c native 100.000 :: libuuid - guile bindings 650.000 :: libuuid Tests where run with either (call-with-time-limit 1 (lambda () (let loop () (uuid) (set! count (1+ count)) (loop))) (lambda _ (display count))) or volatile unsigned long long count = 0; sigaction(SIGALARM, ...); alarm(1); for (;;) { uuid(); count++; } (let ((count 0)) (call-with-time-limit 1 (lambda () (let loop () ((@ (hnh util) uuidgen)) (set! count (1+ count)) (loop))) (lambda _ (format #t "exec count = ~:d~%" count))))
2022-02-01Move path-append to own module.Hugo Hörnquist
2022-01-31Move stuff from calp/util to hnh/util.Hugo Hörnquist
This is the first (major) step in splitting the generally useful items into its own library.
2021-12-22Cleanup modules.Hugo Hörnquist
Primarly this moves all vcompenent input and output code to clearly labeled modules, instead of being spread out. At the same time it also removes a handfull of unused procedures.
2021-09-29Start rework on js setup.Hugo Hörnquist
2020-08-24Move util modules into calp module..Hugo Hörnquist
2020-08-17Fixes.Hugo Hörnquist
2020-08-17Errors not correct in this context.Hugo Hörnquist
2020-08-17MOOREHugo Hörnquist
2020-08-17Start moving stuff out from output.Hugo Hörnquist
2020-08-13Comment about generalizing.Hugo Hörnquist
2020-08-13Changing calendar now unlinks old file.Hugo Hörnquist
2020-07-24Change internal fields to stat with a dash.Hugo Hörnquist
2020-07-22Let with-atomic-output-to-file break free.Hugo Hörnquist
2020-07-13Fix module error in (output vdir).Hugo Hörnquist
2020-07-08Move save-event to own module.Hugo Hörnquist
This hopefully resolves theh problems with (output ical) having bootstraping problems.