Kyle J. Davis

Results 41 comments of Kyle J. Davis

Oh boy. Half a day lost on this. ``` im(200, 400) .background("#666666") .font("OpenSans-Light.ttf", 12) .stroke("#ffffff") .drawCircle(10, 10, 20, 10) .drawText(50,50,'drawn text') .out("caption: \"ImageMagick Text\"") .write("./brandNewImg.png", function (err) { console.log('error',err); console.log('done');...

I'm getting the same error. Is this related to the host container runtime having a policy that doesn't allow clone3?

Hey - just noticed that this was on the roadmap for 1.3 yet it's marked "breaking." The body of this issue does describe what's happening but if you just look...

On behalf of the maintainers of the project I agree that the term 'master' may be offensive to some people. [This project is committed to being a community where everyone...

@rursprung I don't think an API change like this would happen in a disorderly fashion - like any API change, it would go through a deprecation period on a major...

I'm interested in this and may try to drum something up to resolve the source map issue. @krasimir do you have any ideas on where to start?

I was literally just looking at those two links. Seems like exposing line numbers in Node is a bit complicated - I've played around with [the stacktrace method](http://stackoverflow.com/questions/11386492/accessing-line-number-in-v8-javascript-chrome-node-js) before. But...

I wasn't familiar with esprima, I may keep that in my back pocket. Talk about re-inventing the wheel though!

@jazblueful - Looks like Krasimir is digging the string interpolation thing, but I ran into some of the same problems you're having and it prompted me to write [DadaJS](https://github.com/stockholmux/dada-js). You...

As far as CSS that is pretty much [DadaJS](https://github.com/stockholmux/dada-js), a framework built on top of AbsurdJS. You can do things like this ``` [['h1','h2','h3'].join(','), { textAlign : center, overflow :...