Search

Rss Posts

Rss Comments

Login

 

Author Archive

Earth Hour 2009

Mar 28

earth_hour_by_racuntikus

Earth Hour 2009 is here. Did I said today? Saturday 28th or March 2009 needs some actions from your side readers. Come one, as from 8.30-9.30 pm, switch off your lights. Yeah, for just one hour. :D (Time to go wild, you got one hour :P )

Oops, the poster above talks what Earth Hour is. I guess the time, the event will be taking place has been well chosen. It would not affect a significant number of people on duty at that time and many would have already finished dinner. Or would it be having candle light dinners. Today is your chance. :D

There was one missing element, 8.30 is referring to our local time or to particular time zone? And the official web site quoted 8:30PM local time, wherever you live on planet earth. Saturday 28 March 2009″. It is quite logical for the time being our local time, or else it would have served no purposes. The designated time would have been while we were sleeping or even during our working time. No use. :D

So do you think you will be doing this? Waiting to hear you in the comments. :D

On Earth Hour website there is also a section, “Earth Connect” where can share this views. Be sure to drop tips over there. :D

Would you Participate in Earth Hour 2009
View Results

I created a Group at flickr for you to share picture on Earth Day 2009. People show us the darkness that reigns or how people do not know about this event. Keep tuned. :D

Unknown Traffic Source or Improper Tracking?

Mar 26

Statistics

I had quite a nice surprise today. Visting the homepage, I saw the feed counter showing 35 subscribers. I was awed. It just took 1 night to shoot from 25 subscribers to 35?

I kind of headed to Google Analytics to take a look at the reports. Fortunately or unfortunately, there were nothing to help me deduce the magical source.

My suspect list.

  1. Tutorialized
  2. Good Tutorials
  3. Search Engines (primarily Google)
  4. Some referring weblogs
  5. Direct Traffic

We have 8.56% Direct Traffic (quite very low), 19.84% Referring Websites, 71.60% Search Engines.

I have heard people writing we get most of our traffic from search engines. And the above mini-stats confirmed. Given the unappropriate way I have used my Google Analytics tracking potentials, I have got a rather handicapped statistics report. Who is to be blamed? I guess me. :P
There is an emerging need to track internal traffics and proper outside geekscribes traffic. Got any tips? Throw it in the comments.

Don’t forget, subscribe to receive news by feeds or email. :D

Follow us on Twitter Today

Mar 21

Twitter

Fishing for subscribers is not a so easy task. Be it feed subscribers or email subscribers. I have brought back to life our Twitter account. Time to get some followers. :D

Motivations of use Twitter (Follow us on twitter)

  • New posts updates directly in your twitter account
  • A level of proximity between YOU and US.
  • Short tips and tricks to be digested on your twitter

How can I use twitter?

There are many application for using twitter. Here is a small list:

  • TweetDeck – Based on Adobe Air
  • TwitterFox – Firefox Addon (Get updates in your web browser)
  • Twhirl – Based on Adobe Air
  • Twitter Web Interface (not an application)

The aboe mentioned would be sufficient to cater for your needs. I would propose you to use TweetDeck. :D It may seem bulky, but no, it is give an added benefit to “workflow”. Don’t forget to Follow GeekScribes.

PHP – The Basics of the Language

Mar 15

Today I will be talking  a bit on PHP’s syntax and constructs. Previously I had given a small introduction on PHP. Now is the time to get your feet wet. Before going even further you should have PHP and MYSQL minimally running on your machine a.k.a localhost (You can go for an elaborate discussion on localhost at wikipedia or stick to my simple description. Refers to your own machine also addressed by 127.0.0.1).  I know you are a Geek, you may want to do your own setup but yet, I would recommend you to take a look at integrated packages such as:

  1. Xampp (my preference)
  2. Wamp
  3. EasyPHP

As far as I know personally I have heard of these three packages. There are more out there in the wild. Xampp would be enough for all your development tasks. Please bear in mind these packages are meant only for development purposes. They are not to be used on a live website.

Continuing where I left. Lets talk syntax. uhh, let me remind you coding scripting in PHP is very different from conventional programming. As I say often, PHP has a philosophy, a way of getting things done. :) Don’t be afraid.

read all »

PHP – An Overview

Oct 18

PHP has been going strong since its very first public release. Today it is among the leading scripting language powering the web; think Google, YouTube, Digg and the likes. You might and might not have got the feeling of dynamism after I have mentioned the previous websites. Yes, you make the ground move. You can turn your old static page into a living one (dynamic), well I am talking about PHP right now. I am not going to bias you into thinking that we have got only PHP for this particular need; we have got asp .net as an example.

PHP is still a young language under under heavy development, with its developers writing and rewriting its core, improving it with each new release. You must be at least aware that we are in the object oriented generation. As from version 4, PHP has object oriented available for you to play with. With now its 5 series it has improved object oriented, but cannot be compared with Java and C++ language object orientation. Yet, it is sufficient for us to write beautifully.

I will now try build up your thinking stream; how you should do it in PHP. :)

PHP can be embedded anywhere in HTML. For instance we can display a simple text using PHP and html. Before going any further, PHP is used for its logical potential as compareds as the HTML counter part which offers us only the “displaying” ability. PHP does all the processing and its end product is some “HTML” that you will use for displaying. I am sure you must have this part right in your head.

<html>
<head>
<title>A simple html and php example</title>
</head>

<body>
Here is a <?php echo ‘simple text’; ?>
</body>

</html>

After running the above snippet in your web server you will have the below html code when viewing its source in your web browser.

<html>
<head>
<title>A simple html and php example</title>
</head>

<body>
Here is a simple text
</body>

</html>

Quite simple? This is the stepping stone. Get the feel of it.

Try to think!!! What will it be like having hundreds of tit bits of php codes in your html. Urhh? Sounds messy? In fact, it becomes real messy. To counter this, you cal use templating engine. May be Smarty? This is the most recommended nowadays. I will talk about it in a later post. :)

Data is something unmissable for most of our websites. We all want a data backbone to play with. MySql? PostgreSql? Oracle? PHP can interface with almost any database server you can think of, urhh?? it can do so too with a simple access database (not a server). Connectors make this possible for us. We don’t need to know the underlying details.

I would recommend you to use MySql as your back-end. Open-source, free and strong going. And, it has made a reputation on the market.

PHP is a loosely typed language, that is it we do not need to strictly declare a variable in our script. We can do so as we go. Sounds good? Yes, but it is disadvantageous. (I will cover it in another post). We can cast from one data type to another. It just happens smoothly and it makes you mad while debugging at times.

PHP does not comes with a predefined security toolkit that you can just use. But, it comes with functions that you can use to build the weapon to fight evilness. :P

We are given even more flexibility, we  can break down our code into its very own sub modules and include them together to make the whole “thing” or even put it anywhere we want it to.

I guess I have been able to try to build up a new thinking stream. Where you should maybe be heading. We will next be talking about syntax in my post.

In short PHP is a hot enough scripting language to mess with. It is your choice to love or hate it. Keep the reason(s) to yourself.

Spice up your live messenger

Jul 27

We can’t go around without having a nice chit chat. Online, Instant Messaging has bridged this gap. Google it and these will be endless lists of services providing Instant Messaging services; some for free, others for a low price that we often call premium. Without doubt we must all have heard of MSN or Windows Live Messenger; the most used free service from Microsoft. Today I will try to pave a path from a simple to a more customised Live Messenger.

What you will need?:

  1. Windows Live Messenger
  2. A-Patch
  3. Live Messenger Plus

If you don’t have a “passport.net” account head over there and signup for one. Remember you can use any email address for this purpose. Preferably, one from Google, Gmail will do.

After having downloaded Windows Live Messenger, which is a freeware, install it into your computer(s). This is quite easy, just follow the steps in the wizard. :) Now, you can sign in and start chatting right away!!! But will you be doing it? Perhaps yes, perhaps no. If you are reading this it must be out of curiosity or for satisfying your needs. :P

I will be proceeding with patching Windows Live Messenger first. Launch the downloaded patch (A-Patch) and you will be asked to tick what you will want to “power up” your “chat world”. :P Please note that we would be using windows live messenger 8.1 for our purpose. Personally I removed the ads as they were intruding. (I am not imposing). You can use your common sense and your requirements to tick they various possibilities available for customisation. You may like to play around with he nudge, remove the limit ;-)

I can now say we have a “cleaner” live messenger as you wanted it to be. If you have not yet downloaded Live Messenger Plus do so now. It allows us to extends Live Messenger 2 ways; plugins and skins. Plugins allowing us to add on more options and automating some processes. In addition you can code plugins to suits your specific needs. Quite handy? Skins gives you the opportunity to dress up Windows Live Messenger to your taste.

Here are some of my favourite plugins that you may like to try:

  • Display Picture Changer – Allows you to have a “dynamic” like display picture. It scrolls through a set of picture and changes your display picture for a set time period.
  • Linked Chats – Allows you to share what your are chatting with friends. It is a convenient way over the traditional copy and paste.
  • LinkSaver – You often receive links from your contacts. Configure it to save them into a file directly. Thus, no need to ask again if you missed it or do not have history to revert to.
  • ReduceMem -You can often witness the memory consumption of WLM, with ReduceMem you can reduce if many folds. I have not tested it well but it seems that it works miracles.

This is a small list but keep tuning I will write more. It is a post after months of no writing. Thanks for your readership. I am back.

Why we are all liable to receive a DMCA notice?

Jun 22

Bittorrent is one of the most famous way to share data among users. The files ranges from legal to illegal. This method of transmission is very much vulnerable to many exploits. Given its popularity, one ca imagine the number of illegal files like music, movies, tv shows and the likes are alive in the community. The immediate benefiters of these media are going berserk of what is happening. They are getting lesser than ideally they should be. Here come into scene, the monitoring agencies to track down those infringing copyrights. read all »