python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How do I re-build django's password hashing in nim?
I'm rewriting my webapplication from Python (Django) to Nim (Prologue).
I want to keep using Django's database that it has provided me with thus far, but I'm struggling how to re-build the way Django ...

Philipp Doerner
Votes: 0
Answers: 1
Nim 1.4 Compile - Modify default compile flags on MacOS - issue with clang ld: library not found for -lrt
For some reason on my Mac when I am using nim 1.4 with clang it always builds with the -lrt compile flag which breaks since that's not on Macs.
So every time I need to do nim c --listCmd [my nim file]...
Clarence Liu
Votes: 0
Answers: 1
How to map seq[type] to seq[type.field] with a generic fieldname?
I am building a web application and using an ORM called norm. As such, I have an SQL database with a bunch of tables, all of which correspond to various Models that I have in nim. Often enough, they a...

Philipp Doerner
Votes: 0
Answers: 1
Nim - Norm - How to get related fieldnames at compile time
Heyho,
I am using norm, an orm in the nim programming language.
I have 2 different models such as this:
import std/options
import norm
type
A {.tableName: "Surprise".} = ref object of M...

Philipp Doerner
Votes: 0
Answers: 1