Jon Ege Ronnenberg
Jon Ege Ronnenberg
I don't know if I'm the only one who needs this, but because ecstatic is my main development server, I often wish I could see the requests in the console....
In my current project I need to set `Access-Control-Expose-Headers: Content-Length` https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Expose-Headers @jfhbrook I'm currently swamped at work, so would like to postpone our *hackathon* to beginning of February. I plan...
Code: ```js 'use strict' let testString = 'foo:napp2019' const regex = /(?\w+):(?\w+)(?\d+)/ui let res = regex.exec(testString) console.log(res.groups.year) console.log(res.groups.p) console.log(res.groups.name) console.log(regex.test(testString)) ``` Result: ``` > [email protected] test /Users/nappdev/projects/bugz/babel-plugin-transform-modern-regexp > babel --plugins...
Dragging within an element with `position: absolute` doesn't appear to work. This unit test highlight the issue. I'll work correcting this in another PR or an amendment to this.
I'm wondering, what is the minimum required fields in the configuration array? While searching the source code, I came across the `read` property. I couldn't find anything in the README,...
This is a highly experimental PR but so far I have made good progress, running all tests in a mysql docker instance. This requires docker to be installed: https://docs.docker.com/engine/installation/ I...
Since I use bower for everything, I think it's a shame that doctestjs doesn't support bower. I haven't publish doctestjs to the bower registry but everything is ready to be...
I really like the idea of using `inline-block` instead of floats but while developing it's a pain to use HTML comments ect. and the letter/word-spacing hack is pretty awful as...
## What's going wrong? I just logged into our server to read our logs and found this: ``` -rw-rw-r-- 1 services services 184K Mar 4 12:33 server-error.log -rw-rw-r-- 1 services...
that is easily forgotten when updating and resolves in `bower utf8#* mismatch Version declared in the json (2.0.0) is different than the resolved one (2.1.2)` from bower. Better leave that...