QR Code Terminal

qrcode-terminal is a tiny npm module that allows you to encode text as a QR code and render it to a UNIX-compatible terminal. // render QR code to the console qrcode.generate(‘http://michaelbrooks.ca’); // return QR code as a string qrcode.generate(‘http://michaelbrooks.ca’, function (qrcode) { console.log(qrcode); }); QR Code Terminal →

Sublime Web Inspector — Debug JavaScript in SublimeText

Set and remove breakpoints right in SublimeText See all console messages with level See object properties See a stack and all variables (local, global, closure) Evaluate selection on current call frame Live reload Sublime Web Inspector →

Snappy & User Friendly Dropdown Menus

At every position of the cursor you can picture a triangle between the current mouse position and the upper and lower right corners of the dropdown menu. If the next mouse position is within that triangle, the user is probably moving their cursor into the currently displayed submenu. If the cursor goes outside of the …