Web Development

Jack Reichert

Web Development

I come across random techniques while working and decided to start blogging them... For me to find later, for others who may need them and with the hope to get some feedback.

No More Passwords* – Log into WordPress using a QR Code

Download and try it yourself A short while ago I stumbled upon an interesting Hacker News conversation… Intrigued by the challenge, I decided to implement the theory as a WordPress plugin for all to use. So here’s the gory details…

Announcing: The Redesign – Part One

Edit: So, since this went up I got a full-time job… My plans are now to clean up the blog design and focus on side project that will benefit the community. At some point I may return to the long-sideways scroll

fontBefitting | Resizing Fonts to Fit Enclosing Element

This script is a work in progress. In a nutshell: Media queries are great. They are especially effective when building responsive websites. But they can be difficult to work out so that they cover every scenario. Media queries work especially

LessCSS and CSS3

The Gist: Use mixins.less for easy implementation of CSS3 properties. It is on GitHub available to all. Background: Read the other day about Twitter announced Bootstrap from Twitter. Immediately I dug in, like I do whenever I see something cool, to see how it

How to add a divider between menu items in css using only one selector

A popular way for dividing between menu items, or elements in general is the single border. li { border-right: 1px solid #000000; } The problem with doing that is how do you not have the border after the last element?