Matthew Dean
Matthew Dean
Is there any evidence that, for modern browsers, setting something like `html { font-size: 10px; }` will not be scalable whereas `html { font-size: 62.5%; }` is? Or is there...
I don't understand why this is so difficult. Say you want an element with a 5px inset shadow. Create a VML element 5px inside the target element, and give the...
I dunno, maybe I have to learn some VML and throw something into this project. :-)
What about something other than VML's gradients? This might seem unconventional, but what about exploring something like VML extrusion? If you can extrude away from the visible object (into the...
Another idea: what about creating four elements, one on each side of the box, and creating a box shadow for each of them? Is that possible?
> Waiting on the returned promise is not practical @joepie91 It sounds like you may want to build a queue system, and after adding to the queue, return a promise....
In other words, the calls to setItem could be asynchronous, but the database writes could be synchronous.
Oh wait, a queue system is what @akhoury said. Oops.
Hmm, instead of always reading from disk, maybe there would be a way to push db updates into memory? Detect a change on disk and refresh?
Would this help you as a starting point? https://github.com/Crunch/Granola/blob/master/lib/map.js It's a work-in-progress, so there might be some edge cases where the value doesn't evaluate IIRC (haven't worked on it in...