Karim Ratib
Karim Ratib
Looks great so far Caio thanks! And yeah an auto-generated CRUD would be :dancer: There are a few read-only entity methods that already exist, e.g. https://github.com/infojunkie/quizzical/blob/master/src/entity/Enrollment.ts#L44 - we would want...
Another option here found on HN today: https://github.com/acro5piano/typed-graphqlify
Picking up where this left off with TypeGraphQL + Apollo Server
Can you explain more what you mean by > the function hyperlink is unknown What fails and at which stage (during import, during display, etc.) ?
Yes, this function is not implemented in SocialCalc. To make it work, you need to implement this JavaScript function yourself. You can see an example at http://cgit.drupalcode.org/sheetnode/tree/js/sheetnode.js#n33 (of course, your...
Sounds good to me :-) We don't need the Perl files, and yes we can simplify the demo files to just one.
The root cause seems to be in a difference between Excel's implicit type conversions (used in the comparison above between a string and a number) and SocialCalc's. Not sure how...
Thanks for this PR. With it, I was able to make partial matches easily: ``` jp.scope({ normalizeCompare: (a,b) => { return a.toLowerCase().includes(b.toLowerCase()); }}); jp.nodes(books, `$..sheets[?(normalizeCompare(@.title, '${query}'))]`) ``` https://github.com/infojunkie/sheetdex
When I change https://github.com/dimitri/pgloader/blob/master/src/parsers/command-db-uri.lisp#L253 to ``` :name (getenv-default "PGDATABASE" user) ``` i.e. don't use `dbname`, the `PGDATABASE` value is used correctly. Why is `dbname` being populated with the value of...
I found that `dbname` comes into this block with the value `""`, instead of `NIL`, causing the `(or dbname)` condition to be true and hence the confusion. I replaced this...