Re: Show: dali — a pure-Nim indie assembler for Android .dex & .apk files

2019-05-13 Thread boia01
+1 super cool project. I hope somebody hires you and wants to take this further.

Re: Show: dali — a pure-Nim indie assembler for Android .dex & .apk files

2019-05-13 Thread rayman22201
> a hobby project I've been working on recently This is an impressively large and complex project for a "hobby" project lol! I don't have anything to add other than this is a really cool project, congratulations, and thank you for sharing.

Re: Conda

2019-05-13 Thread mratsim
I suppose there is already one since NimTorch requires Nim for its Conda build: [https://github.com/fragcolor-xyz/nimtorch/blob/master/conda/nimtorch/meta.yaml](https://github.com/fragcolor-xyz/nimtorch/blob/master/conda/nimtorch/meta.yaml)

Conda

2019-05-13 Thread 21fac5
I am curious to know if anyone would be willing to add / maintain a nim / nimble conda recipe (preferably via the conda-forge channel)? I think I would be very helpful for people like me who might want to integrate Nim into their data-analytics toolbox, or who are looking for something a

Re: Question about colorized output with nim (console application)

2019-05-13 Thread federico3
A working example: [https://github.com/FedericoCeratto/nim-dashing](https://github.com/FedericoCeratto/nim-dashing)

Re: Show: dali — a pure-Nim indie assembler for Android .dex & .apk files

2019-05-13 Thread akavel
@Libman I'm aware [you're against GPL](https://forum.nim-lang.org/t/4703); I have different views on the matter, and anyway, that's indeed my licensing choice for this particular project (which, by the way, is done purely in my spare time). Notably, I'd be willing to consider relicensing it in

Re: Show: dali — a pure-Nim indie assembler for Android .dex & .apk files

2019-05-13 Thread Libman
[GNU Affero General Public License v3.0](https://github.com/akavel/dali/blob/master/LICENSE) 

Re: Proposal for a more reliable CI

2019-05-13 Thread euant
Circle CI certainly supports scheduled jobs that support a cron syntax for specifying the schedule. See the docs here: [https://circleci.com/docs/2.0/workflows/#scheduling-a-workflow](https://circleci.com/docs/2.0/workflows/#scheduling-a-workflow)

Re: Question about colorized output with nim (console application)

2019-05-13 Thread qqtop
Take a look at [https://github.com/qqtop/NimCx](https://github.com/qqtop/NimCx) which was made for similar problems. You could do something like import nimcx var nocolor:bool = false printLnBiCol("exit (quitting the app)", colLeft = if nocolor==true: termwhite else:

Show: dali — a pure-Nim indie assembler for Android .dex & .apk files

2019-05-13 Thread akavel
Hi! I would like to share with you a hobby project I've been working on recently. The idea & motivation behind it is, to try and enable writing native (.apk) Android apps with Nim, without having to install and use Android Studio. What I want to share with you is the first major success on this

Re: Function overloading by dependent type

2019-05-13 Thread mratsim
That's a bug, during overloading concrete types overloads should have precedence over generics if they match.