Featured Posts

[APK] Seeder entropy generator to provide significant... I found this on the XDA website. It works amazingly well for all rooted Android phones. It will speed up your phone and prevent lagging. Made my HTC Sensation feel a lot more responsive. Hey everyone, So, I was experiencing significant lag as we all do from time to time, and decided I was going to get to the bottom of it. After tracing and debugging for hours, I...

Read more

Sky Go Android App released It certainly has been a long time coming and even though it comes with strings, Sky's "Sky Go" app has finally been released for Android. Don't get too excited just yet though. Sky Go will only work on supported Android devices running 2.2x and 2.3x. Not only that but to "ensure that our rights contracts are fully upheld we are also unable to support any Android devices...

Read more

Fixing the issue of the Asus Transformer TF101 not charging, SOLVED!Fixing the issue of the Asus Transformer TF101 not... I purchased an ASUS Transformer TF101 a few months ago and I have been very happy with it. That was until recently. When I plugged it in it would no longer charge. I read on multiple forums that this was a common issue for Transformer owners and some fixes included putting the transformer plug into the freezer to cool it down and also to bend the pins slightly to try to...

Read more

Google’s response to Siri is codenamed Majel, could... Interesting. I've not tried Siri nor do I know anyone that has an iPhone 4GS that can give me reports on it. By all accounts it's the dogs nutsack so hopefully this app will be just as good. Google’s response to Siri is codenamed Majel, could be released by end of year | Android and Me.

Read more

Carrier IQ: How the Widespread Rootkit Can Track Everything on Your Phone, and How to Remove ItCarrier IQ: How the Widespread Rootkit Can Track Everything... This post is especially for the paranoid amongst us. Recently an Android Developer discovered a rootkit called Carrier IQ that is capable of logging everything you do and worst of all it comes pre-installed on almost all smartphones, including Android, iPhone and Blackberry. Click on the link below for more information Carrier IQ: How the Widespread Rootkit Can Track...

Read more

[APK] Seeder entropy generator to provide significant lag reduction – xda-developers

Category : Android, DIY, HTC

I found this on the XDA website. It works amazingly well for all rooted Android phones. It will speed up your phone and prevent lagging. Made my HTC Sensation feel a lot more responsive.

Hey everyone,

So, I was experiencing significant lag as we all do from time to time, and decided I was going to get to the bottom of it.

After tracing and debugging for hours, I discovered the source of 90% of Android’s lag. In a word, entropy (or lack thereof).

Google’s JVM, like Sun’s, reads from /dev/random. For all random data. Yes, the /dev/random that uses a very limited entropy pool.

Random data is used for all kinds of stuff.. UUID generation, session keys, SSL.. when we run out of entropy, the process blocks. That manifests itself as lag. The process cannot continue until the kernel generates more high quality random data.

So, I cross-compiled rngd, and used it to feed /dev/urandom into /dev/random at 1 second intervals.

Result? I have never used an Android device this fast.

via [APK] Seeder entropy generator to provide significant lag reduction – xda-developers.

Use Google Chromium to display PDF

Category : Chrome, Chromium, DIY, Linux

I love Ubuntu and also Google Chromium web brwoser but one thing that annoyed me was the fact that you could not view PDF documents from within the browser. Instead these documents had to be downloaded and opened with a PDF reader. I scoured the interweb and found a solution.

Download the file libpdf.so and follow the instructions below to install it. Once you have copied the file to the folder restart Chromium and you should find that you can view PDF’s from within your browser.

Copy the above file to /usr/lib/chromium-browser/ You may need to run a root nautilus window for this. Press ALT+F2 and type gksu nautilus /usr/lib/chromium-browser/ minus the apostrophes.

via Use Google Chromium to display PDF documents

How to bypass a restrictive firewall using a ssh tunnel

Category : DIY, General, Internet, LAN, Linux

If you are at work or school and you are trapped behind a strict firewall then why not create a tunnel to your home computer and route all the traffic through that tunnel giving you unrestricted internet access.

All these directions are based on using a Linux based computer. I’m sure it can be done in Windows too I just haven’t tried it.

This post describes how to ssh to a personal server using authenticated proxy. SSH (Secure Shell) is typically used to log into a remote machine and execute commands, but it also supports tunneling, forwarding TCP ports and X11 connections; it can transfer files using the associated SFTP or SCP protocols.

Normally we use NetCat to ssh outside using proxy server but if its not support proxy user / pass to authenticate by proxy server and then ssh outside. Here we will use a package called connect.c.

connect.c is the simple relaying command to make network connection via SOCKS and https proxy. It is mainly intended to be used as proxy command of OpenSSH. You can make SSH session beyond the firewall with this command.

This can be achieved by other methods too but this works for me.

1) Download connect.c software.

wget http://www.meadowy.org/~gotoh/ssh/connect.c

2) Compile connect.c Using GCC

gcc connect.c -o connect

and then copy to directory in your PATH i.e /usr/bin or /usr/local/bin

cp connect /usr/bin

3) Congiure ssh_config

append following line

ProxyCommand /usr/bin/connect -H proxy.yourserver.com:8080 %h %p

4) Export Proxy User / Pass as variable

It is insecure but we have to used it. If your proxy doesnt use user/pass for authenticatio, you can skip this.

export HTTP_PROXY_USER=your_username
export HTTP_PROXY_PASSWORD=your_password

Thats it now you can ssh outside without any restriction :)

 

Controlling Web Access with Squid

Category : DIY, LAN, Linux

 

 

 

 

 

An in depth article on setting up SQUID to control web access on your network.

Quick HOWTO : Ch32 : Controlling Web Access with Squid – Linux Home Networking.

The closer the chapel the further from God

Category : DIY

The title says it all. I don’t know if you are a regular reader but if you are you probably noticed that the formatting of my saite has been in terrible condition since the middle of May.

I work in I.T. and deal with web related issues on a daily basis but when it came to fixing my own site I just kept putting it on the long finger.

Anywho this is just a quick note to say that it’s back up and running and I’ll be posting some good stuff in the coming months.

HTC Desire HD from Froyo to Gingerbread

1

Category : Android, DIY, General, HTC

I’ve been meaning to root and flash my HTC Desire HD for a while now and today I finally took the bull by the horns and attempted the procedure.

I’m not sure if it was just me or if the process was actually as difficult as I made it. After approximately 5 hours of tinkering I eventually rooted the phone and installed a custom ROM called Cyanogenmod 7.0.

First impressions are positive. The phone seems more responsive and I seem to be making less typing errors which makes me think that the keyboard functionality has been upgraded.

Here’s some images of my phone now. I must admit it was worth the effort in the end.


Streeme – Run your own music server

Category : DIY

After my last post about running your own search engine I thought that I would carry on the trend by introducing Streeme.

Streeme is a HTML5 based music server that will allow you to stream your entire mp3 music collection to any device that is connected to the web.

Streeme is cross platform and is available for Windows, Mac and Linux.

Streeme is relatively easy to set up but it does involve installing a web server on your PC and opening ports on your router (if you want to be able to access your music from outside your home)

Check the link below for some more info.

Streeme - Web Based music server

streeme – Project Hosting on Google Code.

D.I.Y. Car Phone Mount

2

Category : Car, DIY, General, Mount

Not being one for having an original idea or thought I decided to rewrite my own version of a Lifehacker article that I read about creating your own car mount for your mobile phone.

Step 1 – Get your hands on a large Bulldog clip.

image

Step 2 – Pop the handles off the bulldog clip

image

Step 3 – Get a pliers and hold the looped edge in place while bending the clips upwards with your hand (see Step 4)

image

Step 4 – The handles of the clip should look like this when you are done.

image

Step 5 – Put the handles back on to the bulldog clip so that the bend in both handles are pointing towards each other.

image

Step 6 – Put some elastic bands around the bottom of the handles for a bit of resistive tension.

image

Step 7 – Pop your phone in between the handles for a D.I.Y. phone mount.

image

image

You can clip the bulldog clip on to the air vents of your car to keep them in place and then attach your phone for an easy cheap phone car mount.

You can also accessorize the mount by wrapping wool or twine around the handles to cover the metal and give the phone a little bit more grip and protect the outside of the phone.

Happy hands-freeing.

Some useful ways to use Dropbox

Category : DIY, General

In an earlier post I declared my love for Dropbox and it got me in trouble with my wife so in this post I’m going to try to show you why I love it so much, hopefully appease my wife and maybe, if I’m lucky, get Dropbox into my lovelife!!!

I am an avid reader of Lifehacker and a few weeks ago they posted up some useful ways to use Dropbox. Dropbox, once installed appears as a folder on your computer and is treated as a local folder by your computer. As a result you are able to do some amazing things using Dropbox.

I don’t have too many original thoughts in my head so I’m going to scour the web and try to collate the 5 best ways to use Dropbox.

1. Automatically download Torrents – Set your torrent client to automatically start torrents that are stored in a particular folder. Set the ‘watched’ folder to be a Dropbox folder, that way you can put .torrent files into the Dropbox folder wherever you are and they will automatically download.

2. Install a Password Protection program like KeePass in your dropbox that way you will have all your passwords automatically secured and synced across all of your computers.

3. Set your webcam to save video to your Dropbox in order to view security footage whereever you are. There are a lot of programs on the internet that allow you to set up a webcam that will record video whenever it detects motion. This guide is for Windows users, This guide is for Mac users, This is for the Ubuntu users

4. Use Dropbox as your Documents Folder. This is a great idea if you don’t hold images and music in your Documents folder. If you Right Click on My Documents (Windows users) and go to the location tab and change the target to point to your Dropbox folder then you will find that you have a completely synced My Documents folder on all your Windows PC’s (once you do the same to each PC that you own) and you’ll be able to access your files on your phone, your netbook or your iPod.

5. Install Portable Firefox into your Dropbox folder and browse the web using this browser that way you will always have your history, your bookmarks and your password synced between all your computers.

If you use Dropbox in any other useful ways then let me know in the comments section.

Make a Wi-Fi Extender

Category : DIY, General

I love reading Instructibles.com as there are always a few write ups that are cheap and work. I have read a lot about free WiFi extenders using cardboard and aluminium foil but I have never given it a go.

Check out the link and the instructions from the link below. It gives you a template to print out and all! Just remember to protect your wireless network from leechers!

Make a Wi-Fi Extender.