Andrew Fallows
Andrew Fallows
A clear HTML5 canvas should have nothing on it. In my usage, calling ```ctx.clearRect(0, 0, this.canvasWidth, this.canvasHeight) ``` and then drawing new stuff on the canvas still results in a...
My code calls `ctx.drawImage(img, startX, startY, width, height)` on the C2S object I maintain for my canvas, but when I serialize and download the SVG, the `x` and `y` attributes...
https://www.polymer-project.org/0.5/
I don't see anything in the documentation about loading a font via data-url, so my guess is that this isn't supported, but I would like to confirm that. If that...
In my vimrc I have: ``` set winminheight = 0 let g:miniBufExplMinSize = 1 ``` If I do _ to maximize a window, MBE is squashed. I see a statusline,...
``` /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/ beautifulsoup4-4.4.0-py2.7.egg/bs4/__init__.py:166: UserWarning: No parser was explicitly specified, so I'm using the best available HTML parser for this system ("html.parser"). This usually isn't a problem, but if you run...
With this plugin enabled, typing commands after first receiving a prompt (i.e. immediately after the last command finishes) has no visible output for about 2 seconds. Once character start to...
If ArnoldC ever supports hash maps, I nominate this one-liner as the operator for reading the value for a given key. Example: Given the map `{ "choppa" : "now" }`,...
Recently updated from a very old gem version (1.4.3) to sourcing the gem from Github. Loading a video the following way: ``` class YoutubeVideo def initialize(guid) @guid = guid @config...
Simple example: ``` $ = whacko.load('This should be alone'); console.log($.html()); ``` I expect and want the output from that log statement to be: ``` This should be alone ``` Instead,...