How to add google chrome omnibox-search support for your site?

Chrome usually handles this through user preferences. (via chrome://settings/searchEngines) However, if you’d like to implement this specifically for your users, you need to add a OSD (Open Search Description) to your site. Making usage of Google Chrome’s OmniBox [TAB] Feature for/on personal website? You then add this XML file to the root of your site, … Read more

Base64 Encoding Image

As far as I remember there is an xml element for the image data. You can use this website to encode a file (use the upload field). Then just copy and paste the data to the XML element. You could also use PHP to do this like so: <?php $im = file_get_contents(‘filename.gif’); $imdata = base64_encode($im); … Read more