Cris Ward

Results 26 issues of Cris Ward

I was using an older version of the mysql library (v2) with `node-rate-limiter-flexible` https://github.com/animir/node-rate-limiter-flexible/wiki/MySQL To configure it I have this line ```javascript import connect,{sql} from "@databases/mysql"; const db = connect(process.env.DATABASE_URL)...

We proxy a wildcard domain through to chalet. If we have a project with the word chalet in the subdomain, the proxying doesn't work, it instead just shows the chalet...

First, thanks for maintaining this tool. Been using hotel for years and your battle against code rot is very much appreciated. I expose my chalet setup via a reverse proxy,...

I'm struggling to get deploy keys / hostkeys to work. My remote git server has a non-standard port number. Has anyone had any luck setting this up? I've tried ```...

It is possible to do runtime compilation of templates? I'm thinking for development purposes, so the crystal server wouldn't need restarting after template updates. A bit like when using Jade...

enhancement

I've recently contributed stylus support for riot. https://github.com/riot/riot/pull/1069 There are a number of bootstrap stylus modules on npm - ie https://github.com/maxmx/bootstrap-stylus These contain the css for each module as a...

After a crash of the host machine, my mariadb instances are crash. I can't connect with mariadb:console, I just get the following error. ``` ERROR 2013 (HY000): Lost connection to...

There is a line in the guide which says >Routes are matched in the order they are defined. The first route that matches the request is invoked. I'm not sure...

enhancement
help wanted

Not so much an issue, as something I will try to do. The below article recommends checking specific headers between the request response cycle, as well as other considerations to...

https://github.com/sveltejs/svelte-virtual-list/blob/master/VirtualList.svelte#L122 `.scrollTo` only exists on window in IE. So this cause an error to be thrown. https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollTo This can be fixed by adding a check first ```javascript viewport.scrollTo && viewport.scrollTo(0,...