about 1 year ago - 1 comment
Okay, after Oracle went after google for patent rights i got interested in android more than ever so decided to jump right in and program something. Following is my first app: BMI Calculator Purpose Calculates BMI (Body Mass Index). Features Support multiple unit systems Bells and Whistles: Changing Unit System automatically changes the units inside Height
about 1 year ago - 1 comment
SSH is one of the most widely used protocols for connecting to remote shells. While there are numerous SSH clients the most-used still remains OpenSSH’s ssh. There is a plethora of tips and tricks that can be used to make your experience even better than it already is. Read on to discover some of the best
about 1 year ago - No comments
Today it was the second time i was asked by a friend to help him in fixing his openvpn on windows 7 and to tell you the truth it was exactly same problem that i had fixed before, before he had to reinstall windows that is. Being clumsy i didn’t make notes in the past
about 1 year ago - 1 comment
The quest to discover something new and fresh about Ubuntu, which is arguably the world’s most popular and best documented Linux distribution, is an almost ridiculous one to accept and an almost impossible one to fulfill. I felt like the Mission Impossible character, Jim Phelps, as I read the request from my editor. I expected
about 2 years ago - No comments
I did a post on this previously but didn’t go into much detail. Check this linux-mag article for a detailed guide on virtual box’s command line.
about 2 years ago - No comments
I have came across such a situation a million times where we move a machine from one IP to another (mostly when policy audits occur) and things stop working even though we modify DNS to reflect changes, just because some *beep* people still fiddle around with the old IP or some software were configured with
about 2 years ago - 2 comments
I experimented with google chromium last night for a bit and kindda like it. I am thinking of some ideas that i would like to implement in google chromium based on the response i get on this post. So everyone please answer the following questions to help me. Why wouldn’t you use google chromium os?
about 2 years ago - No comments
Google is currently in the middle of upgrading from ext2 to a more up to date file system. We ended up choosing ext4. This thread touches upon many of the issues we wrestled with, so I thought it would be interesting to share. We should be sending out more details soon. Read More/Original
about 2 years ago - No comments
I get lots of e-bills (utility, telephone, Internet, mobile, cable and so on) in a PDF format for my small business and I need to forward those to my accountant. However, all PDFs files are password protected. I don’t want to share my account password with anyone to just open my bills. Evince is a
about 2 years ago - 1 comment
Nginx comes with a simple module called ngx_http_access_module to allow or deny access to IP address. The syntax is as follows: deny IP; deny subnet; allow IP; allow subnet; # block all ips deny all; # allow all ips allow all; Read More/Original