Archive for posts tagged with “how-to”
Inside-Only CSS Table border-spacing
0 commentsAuthor: Steven Vachon
When working with a <table>
or display:table
layout, getting some nice space between each cell can be a real pain. Resorting to hacks like padding
or a transparent border
sometimes work, but not if you need a visible border or box-shadow
. Read more
Decluttered Elevating Desk
0 commentsAuthor: Steven Vachon
Apparently, I have a computer job.
Sitting at the desk all day takes its toll on your shoulders and eventually your health, so I decided to purchase an elevating, or “height-adjustable” desk. Exercise aside, I am now healthier, always comfortable and get more work done in less time as I require fewer body breaks.
There was a downside to this, however: the cables! Read more
Single-File Facebook OAuth 2.0 Example
0 commentsAuthor: Steven Vachon
I couldn’t find a simple, straight-forward example of this stuff. Facebook’s documentation isn’t wasn’t extremely clear either. Read more
Shuffle and Randomize Arrays in ActionScript and JavaScript
0 commentsAuthor: Steven Vachon
I’d been looking around for the best solution for this and most of what I had found either performed poorly or wasn’t quite random enough. Not so strangely in the end, the best solution was the most basic. Read more
Folder Names with a Colon in Mac OS X
0 commentsAuthor: Steven Vachon
When it comes to organizing a folder collection of any sort, the folder’s name plays a key role in finding your data in the future. One thing that’s always bothered me about folders with Windows and Mac was that they restricted me from using the colon character. Call me anal, but when you’re dealing with subtitle within subtitle, dashes take slightly longer to read. Read more
_global Across Remote ActionScript Timelines
0 commentsAuthor: Steven Vachon
Like many Flash developers, I like writing classes and optimizing bandwidth with remote libraries. ActionScript 1 uses prototypes to extend methods to a function object, and to be able to access that class globally, one would use _global
. Unfortunately, global do not work as well as they’re explained to. This bug is resident in all minor versions of Flash Player 6, and still exists in Flash Player 7. Read more