jim108dev

Results 12 comments of jim108dev

Also, please correct me if I am wrong. The backend gives specific error messages ``` Errors and Status Codes If a request fails any validations, expect a 422 and errors...

@Thorium Thank you for the quick reply! At https://fsprojects.github.io/SQLProvider/core/sqlite.html it is stated: > If System.Data.SQLite.dll is in the location where NuGet places it by default, you don't have to submit...

I have tried to get it working under windows with https://github.com/fsprojects/SQLProvider/tree/master/tests/SqlProvider.Core.Tests/SQLite I had to change the copy path to the dlls: ``` ``` and I get ```log C:\Users\User\Documents\github\SQLProvider-master\tests\SqlProvider.Core.Tests\SQLite\Program.fs(25,11): error FS3033:...

Hi @dbrattli, thanks for the reply. What I really do a lot lately is piping with pandas and it is not type safe with pylance.,e. g. ```python df_train_features = (df_train_source.pipe(filter_value,...

I see. On the readme it says: "Avoid currying, not supported in Python by default and not a well known concept by Python programmers." Does this mean I have to...

I have created a function which selects the keys first and performs a lookup: ```fsharp let partJoin (keySelect:'R->'V) (df1:Frame

@murata2makoto Yes, you are right. I should have paid more attention to your solution. Maybe you could turn on syntax highlighting, makes it easier to read. Also at your program...

Thank you. That was very informative. The second version of my `findByCredentials` function uses the `crypt` function. `litPG` works, `lit` although `password` is a string, double escapes. So I guess,...

OK, what is intended way to insert and update the password with `crypt(password, gen_salt('bf'))`? It's not clear, the methods are super general.

Ok thanks. I have created a fake table with my function in it and fed it to insert. ```purescript selectPassword :: forall s. Password -> FullQuery s { password ::...