Program Download – IE CHROME – “is not commonly downloaded and could be dangerous.”

The best resources are this blog post and this blog post. To sum up: Sign you package with an authenticode signature. Don’t be malware (I’m sure you got that covered). Logo your software (if it’s not a browser plug-in). This can be a frustrating process, so hang in there. Microsoft has not disclosed how many … Read more

Creating FacesMessage in action method outside JSF conversion/validation mechanism?

You can use FacesContext#addMessage() to add a FacesMessage to the context programmatically. FacesContext facesContext = FacesContext.getCurrentInstance(); FacesMessage facesMessage = new FacesMessage(“This is a message”); facesContext.addMessage(null, facesMessage); When you set the client ID argument with null, it will become a global message. You can display and filter them using <h:messages /> <h:messages globalOnly=”true” /> The globalOnly=”true” … Read more

Catch keypress with android

You can either handle key events from a view or in general for your whole application: Handle onKey from a View: public boolean onKey(View v, int keyCode, KeyEvent event) { switch (keyCode) { case KeyEvent.KEYCODE_ENTER: /* This is a sample for handling the Enter button */ return true; } return false; } Remember to implement … Read more

Get all messages from Whatsapp

Whatsapp store all messages in an encrypted database (pyCrypt) which is very easy to decipher using Python. You can fetch this database easily on Android, iPhone, Blackberry and dump it into html file. Here are complete instructions: Read, Extract WhatsApp Messages backup on Android, iPhone, Blackberry Disclaimer: I researched and wrote this extensive guide.