benjamin79

Results 10 issues of benjamin79

``` var request = require('request'); var formData = { source: fs.createReadStream( dir + filename), model: 'face' }; request.post({ url:'http://localhost:3350/scd/detect.objects', formData: formData }, function (err, httpResponse, body) { if (err) {...

BEGIN:VEVENT ....... \r\nDESCRIPTION:Bodytext ..... BEGIN:VALARM\r\nDESCRIPTION:REMINDER .... leads to the description "REMINDER" instead of "Bodytext"

some other guis have table view. Any chance?

UI
Nice to have

One Window, please

Nice to have

Thank you for making this. Using your boilerplate without any changes leads to the following behavior when doing the following steps: - Open user list in one browser - Open...

BEGIN:VEVENT ....... \r\nDESCRIPTION:Bodytext ..... BEGIN:VALARM\r\nDESCRIPTION:REMINDER .... leads to the description "REMINDER" instead of "Bodytext"

DTSTART;TZID=W. Europe Standard Time:20181227T130000 or DTSTART;TZID="W. Europe Standard Time":20181227T130000 leads to ``` start: {:error, {:invalid_timezone, "W. Europe Standard Time"}}, ``` Reason seems to be the missing lookup: https://github.com/bitwalker/timex/blob/master/priv/standard_to_olson.exs I´m not...

Hi, i have an array (columnsToSelect) of columns to which i want add another one `columnsToSelect.push("(firstname || ' ' || lastname) as fullname");` `SELECT ${sql(columnsToSelect)} FROM ${sql(table)}` I tried different...