Patrice LaFlamme
Patrice LaFlamme
OK, so ed25519 is out for the moment. I followed up by creating an RSA key, and restarting the repl, now I get: ``` user> (kit/sync-modules) 2022-01-09 17:06:54,655 [nREPL-session-590ea496-1654-4758-9e2d-f36504906f97] DEBUG...
yeah, I nuked the test app and re-created with clj-new, and I also created a new rsa ssh key with ` ssh-keygen -t rsa` ``` % ls ~/.ssh/id_rsa /Users/xxx/.ssh/id_rsa ```
yup, the PEM format worked! Thanks! And agreed that a key should not be a requirement to get something that is public..
@FongHou that works for me too, and I didn't need to blank out my ssh key name or passphrase in `kit.git-config.edn`. And it looks like https is the default now...
You're right that puri is strict. I think the http standard doesn't mandate arg[] as meaning "the arg[] parameter is an array", but that is how PHP was doing it,...
Doesn't install "out of the box" on a mac: magicffi error 'magic.h' file not found [fixed on master]
I managed to install a package, using brew, that has the `magic.h` file, the package is: `libmagic` It contains: ``` /opt/homebrew/Cellar/libmagic/5.44/include/magic.h /opt/homebrew/Cellar/libmagic/5.44/lib/libmagic.1.dylib /opt/homebrew/Cellar/libmagic/5.44/lib/pkgconfig/libmagic.pc /opt/homebrew/Cellar/libmagic/5.44/lib/ (2 other files) /opt/homebrew/Cellar/libmagic/5.44/share/man/ (2 files)...
Doesn't install "out of the box" on a mac: magicffi error 'magic.h' file not found [fixed on master]
I've forked magicffi to add the include dirs and lib dirs in the magicffi.asd: https://github.com/patrixl/magicffi This still requires manually symlinking `libmagic.dylib` to `libmagic.so`, if I can find how to tell...
Doesn't install "out of the box" on a mac: magicffi error 'magic.h' file not found [fixed on master]
Ok so here were the issues, which are now resolved: 1) ciel has a dependency which seems to require package local nicknames, therefore needs sbcl 2.3.x (or a newer asdf?)...