Show HN: Kalk, A calculator with math syntax, complex numbers
1–10 of 90 posts
Re: Show HN: Kalk, A calculator with math syntax, complex numbers
#2Re: Show HN: Kalk, A calculator with math syntax, complex numbers
#3(The pre-built Linux binary segfaults before it can show the result on my ArchLinux box, but the cargo installed one works like a charm.)
Re: Show HN: Kalk, A calculator with math syntax, complex numbers
#4I usually use the interactive Python prompt when doing calculations, but kalk takes it up a notch. Well done! (The pre-built Linux binary segfaults before it can show the result on my ArchLinux box, but the cargo installed one works like a charm.)
Hm that's strange though, it seems to work for me (also on Arch). What calculation did you do?
Re: Show HN: Kalk, A calculator with math syntax, complex numbers
#5I usually use the interactive Python prompt when doing calculations, but kalk takes it up a notch. Well done! (The pre-built Linux binary segfaults before it can show the result on my ArchLinux box, but the cargo installed one works like a charm.)
Thank you! I made this as a replacement for using the Python prompt for calculations actually haha. Hm that's strange though, it seems to work for me (also on Arch). What calculation did you do?
>> 1+2
fish: Job 1, './kalk-linux' terminated by signal SIGILL (Illegal instruction)Re: Show HN: Kalk, A calculator with math syntax, complex numbers
#6Earlier quoted context omitted.
Thank you! I made this as a replacement for using the Python prompt for calculations actually haha. Hm that's strange though, it seems to work for me (also on Arch). What calculation did you do?
Any calculation, even simple ones >> 1+2 fish: Job 1, './kalk-linux' terminated by signal SIGILL (Illegal instruction)
Re: Show HN: Kalk, A calculator with math syntax, complex numbers
#7Earlier quoted context omitted.
Thank you! I made this as a replacement for using the Python prompt for calculations actually haha. Hm that's strange though, it seems to work for me (also on Arch). What calculation did you do?
Any calculation, even simple ones >> 1+2 fish: Job 1, './kalk-linux' terminated by signal SIGILL (Illegal instruction)
Re: Show HN: Kalk, A calculator with math syntax, complex numbers
#8Earlier quoted context omitted.
Thank you! I made this as a replacement for using the Python prompt for calculations actually haha. Hm that's strange though, it seems to work for me (also on Arch). What calculation did you do?
Any calculation, even simple ones >> 1+2 fish: Job 1, './kalk-linux' terminated by signal SIGILL (Illegal instruction)
Re: Show HN: Kalk, A calculator with math syntax, complex numbers
#9Earlier quoted context omitted.
Any calculation, even simple ones >> 1+2 fish: Job 1, './kalk-linux' terminated by signal SIGILL (Illegal instruction)
Well, that's not a segfault. It's more likely that it's being compiled with an incorrect/specific architecture (e.g. using AVX2 instructions). Though it really shouldn't be using such instructions for basic math. It is possible the instruction pointer is getting messed up too.
And thanks for fixing the two issues so fast.
Re: Show HN: Kalk, A calculator with math syntax, complex numbers
#10Earlier quoted context omitted.
Any calculation, even simple ones >> 1+2 fish: Job 1, './kalk-linux' terminated by signal SIGILL (Illegal instruction)
Hmm, that's very strange, considering I'm running a very similar setup (Arch and fish). I wonder if it could be an issue with the library I'm using for big floats..