#henrik

development and technology stuff

Javascript UI Dialogs

Nice one > UIKit. Might be an addition to my basic template of choice.

Filed under  //   Development   javascript  

Flashless page-flip

Some time ago this could only be done with Flash. Now it works if you have a decent browser installed (chrome, ff10, ...). Se it in action >> turnjs.

Filed under  //   css   javascript  

Mac OS X Lion > Disable “Reopen Windows When Logging Back In”

Finally found this one. It's a script which simply does the following:

  defaults write com.apple.loginwindow LoginHook /usr/bin/loginfix.sh 

The loginfix-script has the following contents:

  #!/bin/bash
  rm /Users/*/Library/Preferences/ByHost/com.apple.loginwindow.*

To revert back to original behaviour:

  sudo defaults delete com.apple.loginwindow LoginHook

Filed under  //   Mac  

Inline edit

This one could be quite useful for inline editing >> Jeditable

Filed under  //   Development   javascript  

Fresh Windows 7 Update Installation

Just remember how to install windows7 upgrade installation on a fresh harddisk.

Heise Link:

Steps:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup\OOBE
MediaBootInstall = 0

 

slmgr -rearm

 

Windows+Pause 

Filed under  //   Windows 7  

HTML5 Layout Template

I really like Bootstrap from twitter. Also quite interesting is this one - maybe I will try it out for the mobile stuff >> HTML5Reset.

Filed under  //   html  

Using Twitter-Bootstrap with DataTables

To display tabular data I rely on the DataTales jQuery Plugin. Really nice UI and easy backend integration. For a new mini project I wanted to style the UI of DataTables the same as Bootstrap. I was quite lucky because someone already did this for me.

There is a blog entry on the DataTables blog giving an overview of how to achive this.

Filed under  //   Development   css   javascript  

Suggest Textbox

Nice suggest effect with jQuery.suggest.

Filed under  //   Development   javascript  

Automatically save forms

Save form input automatically to local storage aka autosave sisyphus.js

Filed under  //   Development   javascript  

HTML5 UI

For my next fun-project I will try out this combination.

HTML 5 UI framework
Template bootstrap (already used, is perfect)
Backend implementation (already like this one) 

Filed under  //   Development   html   java   javascript