Requiemu
Requiemu
What is the license of this project? Can I use it in my personal project?
``` let data = { "Name": ["Apples", "Mango", "Banana", "Pear"], "Count": [21, 5, 30, 10], "Price": [200, 300, 40, 250] } let df = new dfd.DataFrame(data, {index: ["a", "b", "c",...
Negative value change after uint256.FromBig and then ToBig: ``` func TestReverse(t *testing.T) { a, _ := big.NewInt(0).SetString("-1", 10) u, _ := uint256.FromBig(a) areverse := u.ToBig() fmt.Println(areverse, areverse.Sign(), a.Sign()) // areverse:...
The sql query string for feed api throw error 'relation "followers" does not exist', because the 'followers' should be 'Followers'. This PR also add double quotes to words containing uppercase...
According to API specification, updating user information should use 'put' http method rather than 'patch' method.