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)
Decoding a dynamic field in Go
I get a response from an external API that has a field which can have 2 values:
{"field": []}
or
{"field": {"key1": "value", "key2": "value"...
arakibi
Votes: 0
Answers: 2
base58 decoding & storing big numbers?
I am trying to make a base58 decoder in c following this tutorial
https://learnmeabitcoin.com/technical/base58
To convert a base58 value in to base10,
you take each character index and multiply it wit...

user14570759
Votes: 0
Answers: 1
split data in a single column into multiple columns in oracle
my_table :
Name
Value
item_1
AB
item_2
2
item_3
B1
item_1
CD
item_1
EF
item_2
3
item_3
B2
item_4
ZZ
required output:
item_1
item_2
item_3
item_4
AB
2
B1
ZZ
CD
3
B2
...
Wera
Votes: 0
Answers: 2
how to get the arm instruction disassembly of Global Offset Table (GOT) and plt
I am trying to generate the disassembly of dhrystone. The following commands were used:
aarch64-none-linux-gnu-gcc -O0 -mtune=cortex-a77 -mcpu=cortex-a77 --static -c -DHZ=60 -O2 -fno-inline -fno-pie d...

Tom Jose
Votes: 0
Answers: 0