Matthew Leach

Results 15 comments of Matthew Leach

Looking at the latest [Yubikit](https://github.com/Yubico/yubikit-ios), they do have a PC/SC interface to the key over NFC. Perahps we could 'hook this up' to the GPG library that pass uses to...

Hi there, this looks like a missing dependency (one that's probably not listed in the `README.md`). The `LT_SYS_SYMBOL_USCORE` symbol is needed as MacOS prepends a `__` before symbols. Since there...

Hmm, good idea. I've never tried it. Any pointers on how to get a cygwin build enviroment up and running?

Hi Graham, Thanks for the request. Your project sounds very interesting! If bic could help, that would be brilliant. i686 support is something that I've been considering (it's always good...

Hmm, seems to work for me: ``` $ cat test.c int foo(int n) { return n * 2; } $ gcc -shared -o foo.so test.c $ ./src/bic -l ./foo.so BIC>...

Very strange. Looking at the code it first attempts to open the file as written on the command line [here](https://github.com/hexagonal-sun/bic/blob/9e58a2e3cf9cbf3c74d107ced0a0a499d06da67c/src/main.c#L82) and I would have expected this to work. If you...

Many thanks for looking at this. I would have thought that `dlopen()` would be smart enough to know where to find `libm` and open it for you. I've just tried...

Hi there, This looks like a great idea! Any help that you can offer would be definately be appreciated. I'll start reading the docs.

@hmatuschek I'm wondering if that's the same issue that I'm seeing. I've just got a new 878 and tried to read the pre-installed code plug which has 1549 TGs programmed...

Additionally, I would have also expected to be able to add decimal amounts to cents: ``` currency(123.98, {fromCents: true, precision: 4}).format() ``` Which would yield: `$1.2398`, I'm currently getting `$0.0124`....