python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Liquibase creates column as BIGINT in Postgres even though "INT" is specified in config
I have the following liquibase script snippet:
<changeSet author="h311z" id="20220406-1" runInTransaction="false">
<createTable tableName="states&qu...
h331z
Votes: 0
Answers: 1
Problem reading from rest api with autogenerated BigInt Id
I'm having some issues with my rest api when I try to read from database.
My server stack right now is NestJS + Prisma + Cockroachdb
At first when I generated a new User, with a POST, all went great a...
pedrosc94
Votes: 0
Answers: 0
How to divide BigInt by decimal in Javascript?
I have this code below:
let n = 100n;
let x = 0.1;
console.log(n/x); // Throws error
Error:
TypeError: Cannot mix BigInt and other types, use explicit conversions
How do I divide a BigInt by a deci...
Helix
Votes: 0
Answers: 2
AArch64: compare 256-bit unsigned integers
While learning Arm NEON instruction set, I tried to implement 256-bit numbers comparison (A <= B). Below is the implementation I ended up with, but I doubt my approach is good. Maybe there's some w...
Alexander Zhak
Votes: 0
Answers: 1