This week it seems that the Gevey sim has stopped working on the iPhone 4. Whenever we try to dial 122 we get the message “Call Failed” right away. Normally you need to maintain the call for at least 2 seconds before moving onto the next step in the Gevey unlocking process. We’re not sure if… Continue reading Gevey sim not working on Rogers | Call failed on 122
Category: How To’s
Add MySQL User | Give them Permissions On a Database
This simple guide demonstrates adding a new user to mysql and giving that user full access rights to a particular db within MySQL. This is really useful when you want to create a new database user for a new wordpress isntall. You can do this from the command line of your server if you login… Continue reading Add MySQL User | Give them Permissions On a Database
Turn your Blog into a Mobile App for Nokia | Nokia App for Everyone
Nokia has made it incredibly easy for anyone who is connected to the internet to create their own application with the Ovi App Wizard. It basically captures the RSS feed from your blog and prints it to a neat looking, customizable, application frame that you can put on the Ovi store either for free or… Continue reading Turn your Blog into a Mobile App for Nokia | Nokia App for Everyone
Change jBoss 5 Default Port
This guide explains how to change the default port of jboss 5.x (which is 8080) to whatever port you want Open the server.xml file that corresponds to your deployment server i.e. vi <jboss-home>/server/default/deploy/jbossweb.sar/server.xml Find the line: <Connector protocol=”HTTP/1.1″ port=”8080″ address=”${jboss.bind.address}” Change port 8080 to whatever port you would like to use Restart jBoss
simple mysqldump example
This post shows how to export a database from the command line. You can export for backup purposes or you can export and move the sql database file to a new database server. Here is a simple example of using mysqldump on ubuntu linux: mysqldump -u root -p MY_DATABASE_NAME > /home/myuser/db_backup.2014.08.07.sql And here is how… Continue reading simple mysqldump example
Install Sun Java JDK on Ubuntu Linux
Here is the quick guide on installing the Sun Java jdk on Ubuntu Linux. I needed to do this on 10.04 server edition, but it should be the same for just about all versions. If you don’t want to do too much from the command line, substitute step 2 with: sudo gedit /etc/apt/sources.list to edit… Continue reading Install Sun Java JDK on Ubuntu Linux
Mark as Draft in Word 2010
This quick guide explains how to mark a Microsoft Word 2010 (or 2007) document as a draft (using that typical diagonal DRAFT text that goes across each page) Go to the Page Layout tab Select Watermark Choose Draft 1
Seam Generator Tutorial | Generate a crud web app in seconds
This is just a quick note on the steps to run through when using the seam generator. For a full walkthrough of how to build a java crud web application in under a minute, check out the video at the bottom of this page. ./seam setup ./seam create-project ./seam generate ./seam explode You’ll need to… Continue reading Seam Generator Tutorial | Generate a crud web app in seconds
How to Fix Error duplicate Id for a component selectParent
This error appears in in some projects created with seam 2 when you try to create or edit a record in the web ui. It seems to be a bug. You need to modify one line in either your seam-home/seam-gen/view/edit.page.xml.ftl or seam-home/seam-gen/view/edit.xhtml.ftl depending on your version of seam. open up the file and change this… Continue reading How to Fix Error duplicate Id for a component selectParent
How to Create a War File in Netbeans
In most default configurations netbeans, does not create a war file in the dist folder where you would expect it. By default it often just copies the exploded war file into the jboss or glassfish deploy folder. In order to create a war file: Right-Click your project in the explorer Select Properties Go to Build… Continue reading How to Create a War File in Netbeans