Archive

Archive for the ‘tricks’ Category

FarmVille – New Enjoyment In Online Flash Gaming

November 22nd, 2009 Austin Leave a comment

FarmVille

facebook has done it again, being the leader in social networking it’s out done itself by launching on its own king of online flash gaming in the www (world wide web).

First when I heard about it from my friends and family, i thought its just another online game giving out trial games and then ask for money for playing the full game. But when i checked out the game i really liked it. And now  i am addicted to it.

In FarmVille you can plow, plant and harvest crops to earn money to further expand and improve your farmstead. You can also harvest trees and collect from animals.

It’s just a crazy world , farming your own land and it’s more fun when you see your own people interacting with by sending gifts, harvesting your crops or fertilizing your crops etc.

farmville

farmville

I AM TOTALLY ADDICTED TO IT NOW!!!!

and i know you are too, so what are yoiu waiting for…….. START FARMING NOW

More Info on Farville…..

Summary:

FarmVille is a real-time farm simulation game developed by Zynga, available as an application on the social networking website Facebook. The game allows members of Facebook to manage a virtual farm by planting, growing and harvesting virtual crops, trees, and livestock. Since its launch in June 2009, FarmVille has become the most popular game application on Facebook with 63.7 million active users on November 9th, 2009. FarmVille started as a duplicate of the popular Farm Town on Facebook.

More Info,,,,,,,,

Requirements:

Its requires the latest version of Adobe Falsh- flashplayer

Best browsers are: Firefox 3+ , IE7+ and Google Chrome 2+

All the best…. Don’t forget to help me in my farm!!!

Vote Now:

Clever Google Tricks

October 22nd, 2009 Austin 2 comments

If you are on the hunt for free desktop wallpaper, stock images, WordPress templates or the like, using Google to search your favorite social media sites is your best bet. The word “free” in any standard search query immediately attracts spam. Why wade through potential spam in standard search results when numerous social media sites have an active community of users who have already ranked and reviewed the specific free items that interest you. All you have to do is direct Google to search through each of these individual social media sites, and bingo… you find quality content ranked by hundreds of other people.
Examples:
site:digg.com free “desktop wallpaper”
site:reddit.com free “wordpress templates”
site:del.icio.us free “stock images”
site:netscape.com free “ringtones”
site:stumbleupon.com free icons

 Google for Music, Videos, and Ebooks - Google can be used to conduct a search for almost any file type, including Mp3s, PDFs, and videos. Open web directories are one of the easiest places to quickly find an endless quantity of freely downloadable files. This is an oldie, but it’s a goodie! Why thousands of webmasters incessantly fail to secure their web severs will continue to boggle our minds.
Examples:
Find Music: -inurl:(htm|html|php) intitle:”index of” +”last modified” +”parent directory” +description +size +(wma|mp3) “Counting Crows”
Find Videos: -inurl:(htm|html|php) intitle:”index of” +”last modified” +”parent directory” +description +size +(mpg|wmv) “chapelle”
Find Ebooks: -inurl:(htm|html|php) intitle:”index of” +”last modified” +”parent directory” +description +size +(pdf|doc) “george orwell 1984″

Bonus Material:
Here is a list of my favorite Google advanced search operators, operator combinations, and related uses:
link:URL = lists other pages that link to the URL.
related:URL = lists other pages that are related to the URL.
site:domain.com “search term = restricts search results to the given domain.
allinurl:WORDS = shows only pages with all search terms in the url.
inurl:WORD = like allinurl: but filters the URL based on the first term only.
allintitle:WORD = shows only results with terms in title.
intitle:WORD = similar to allintitle, but only for the next word.
cache:URL = will show the Google cached version of the URL.
info:URL = will show a page containing links to related searches, backlinks, and pages containing the url. This is the same as typing the url into the search box.
filetype:SOMEFILETYPE = will restrict searches to that filetype
-filetype:SOMEFILETYPE = will remove that file type from the search.
site:www.somesite.net “+www.somesite.net” = shows you how many pages of your site are indexed by google
allintext: = searches only within text of pages, but not in the links or page title
allinlinks: = searches only within links, not text or title
WordA OR WordB = search for either the word A or B
“Word” OR “Phrase” = search exact word or phrase
WordA -WordB = find word A but filter results that include word B
WordA +WordB = results much contain both Word A and Word B
~WORD = looks up the word and its synonyms
~WORD -WORD = looks up only the synonyms to the word

Compress Javascript and CSS Files Using PHP

September 25th, 2009 Austin Leave a comment

Enhance your Javascript and CSS resources:

I have been doing some web applications lately, and wanted to compress my Javascript and CSS files so that page loads are quicker and also the files are cached at all times.

So i thought to myself, that we could truncate the JS and CSS files by removing the unwanted spaces and characters.

So i began writing a script that does the following:

  1. Reads JS or CSS files(s) from a particular folder called either js or css.
  2. Removes all the unwanted characters and blank spaces.
  3. Creates a new file in a new directory called js_cache or css_cache.
  4. Wallla!! we have done it, you have successfully reduced the file file size.

The script will allow you to manage easily your Javascript and CSS resources and to reduce the amount of data transferred between the server and the client.

Performances:

We can say that the performance is better but not the best, but it works.

You would see a slight reduce in time between the server and the client.

Restrictions:

In CSS files there are no problems, but in case of Javascript there may some problems where single line comments are used like ‘// comment ‘.

Therefore always use multi line comments like /* comment */ if you want to use this script

Requirements:

  1. Create a folder for you project
  2. Dump all the js files in js folder and css files in css folder
  3. Then create two more folders js_cache and css_cache
  4. Copy and paste this script in the project directory
  5. Edit the script by changing the constant FILE_TYPE as js or css only
  6. Run the script
  7. New files will be created in js_cache and css_cache
  8. Wow, its done now use these file instead of the original one

ALL THE BEST…

HAPPY SCRIPTING…..

Do keep sharing!!!

Download file:

Compress Javascript and CSS Files Using PHP

Basic AJAX (Asynchronous JavaScript and XML)

September 12th, 2009 Austin Leave a comment

Ajax, sometimes written as AJAX (shorthand for asynchronous JavaScript and XML), is a group of interrelated web development techniques used on the client-side to create interactive web applications or rich Internet applications.

With Ajax, web applications can retrieve data from the server asynchronously in the background without interfering with the display and behavior of the existing page.


/**
* Declare global variable....
* @param string elementName this is to identify the elemnt in which the response should be dispalyed. like as div id (required)
*/
var elementName = "";

/**
* Open a connection to the specified URL, which is
* intended to provide an XML message. The specified data
* is sent to the server as parameters. This is the same as
* calling xmlOpen(“POST”, url, toSend, responseHandler).
*
* @param string url The URL to connect to.
* @param string toSend The data to send to the server; must be URL encoded.
* @param function responseHandler The Javascript function handling server response.
* @param function elementIdentify The elemnt in which the response should be dispalyed.
*/
function xmlPost(url, toSend, responseHandler, elementIdentify)
{
elementName = elementIdentify;
xmlOpen(“POST”, url, toSend, responseHandler);
}

/**
* Open a connection to the specified URL, which is
* intended to provide an XML message. No other data is
* sent to the server. This is the same as calling
* xmlOpen(“GET”, url, null, responseHandler).
*
* @param string url The URL to connect to.
* @param function responseHandler The Javascript function handling server response.
* @param function elementIdentify The elemnt in which the response should be dispalyed.
*/
function xmlGet(url, responseHandler, elementIdentify)
{
elementName = elementIdentify;
xmlOpen(“GET”, url, null, responseHandler);
/**
* This code can be used if you need to call the required function after every interval i.e seconds..
* setTimeout(“xmlGet(‘products.php’, notesResponseHandler)”,3000);
* setTimeout(“alert(‘products.php’)”,3000);
*/
}

/**
* Open a connection to the specified URL, which is
* intended to respond with an XML message.
*
* @param string method The connection method; either “GET” or “POST”.
* @param string url The URL to connect to.
* @param string toSend The data to send to the server; must be URL encoded.
* @param function responseHandler The Javascript function handling server response.
*/
function xmlOpen(method, url, toSend, responseHandler)
{
// alert(url);
if (window.XMLHttpRequest)
{
// browser has native support for XMLHttpRequest object
req = new XMLHttpRequest();
}
else if (window.ActiveXObject)
{
// try XMLHTTP ActiveX (Internet Explorer) version
req = new ActiveXObject(“Microsoft.XMLHTTP”);
}

if(req)
{
req.onreadystatechange = responseHandler;
req.open(method, url, true);
req.setRequestHeader(“content-type”,”application/x-www-form-urlencoded”);
req.send(toSend);
}
else
{
alert(‘Your browser does not seem to support XMLHttpRequest.’);
}
}

/**
* Handler for server’s response to notes.xml request.
* Notes are pulled from notes.xml and replace the
* contents of the DIV with id ‘notesSection’.
*/
function notesResponseHandler()
{
// Make sure the request is loaded (readyState = 4)
if (req.readyState == 4)
{
// Make sure the status is “OK”
if (req.status == 200)
{
var swappableSection = document.getElementById(elementName);
var str = req.responseText;
swappableSection.innerHTML = str;
}
else
{
alert(“There was a problem retrieving the XML data:\n” +
req.statusText);
}
}
}

/**
* When a file gets included in the page….
* Call the function on load or on click….
*/
//xmlGet(‘products.php’, notesResponseHandler);
//alert(‘called’);

XML-RPC

September 8th, 2009 Austin Leave a comment

XML-RPC and XML-RPC Server Classes

What is XML-RPC?

Quite simply it is a way for two computers to communicate over the internet using XML. One computer, which we will call the client, sends an XML-RPC request to another computer, which we will call the server. Once the server receives and processes the request it will send back a response to the client.

For example, using the MetaWeblog API, an XML-RPC Client (usually a desktop publishing tool) will send a request to an XML-RPC Server running on your site. This request might be a new weblog entry being sent for publication, or it could be a request for an existing entry for editing. When the XML-RPC Server receives this request it will examine it to determine which class/method should be called to process the request. Once processed, the server will then send back a response message.

For detailed specifications, you can visit the XML-RPC site: http://www.xmlrpc.com/

This can be easily implemented using CodeIgniter’s framework: http://codeigniter.com/

CodeIgniter’s XML-RPC classes permit you to send requests to another server, or set up your own XML-RPC server to receive requests. Overview XML-RPC is a Remote Procedure Calling protocol that works over the Internet.

http://www.codeignitor.com/user_guide/libraries/xmlrpc.html

An XML-RPC message is an HTTP-POST request. The body of the request is in XML. A procedure executes on the server and the value it returns is also formatted in XML. Procedure parameters can be scalars, numbers, strings, dates, etc.; and can also be complex record and list structures.

XML-RPC Specification : http://www.xmlrpc.com/spec

Object Oriented Programming Interview Questions

September 6th, 2009 Austin Leave a comment

OOPS Interview Questions - Basics and Advanced

These are some basics and advanced questions usually asked in the field of OOP (Object Oriented Programming) 

1) Explain the rationale behind Object Oriented concepts? Object oriented concepts form the base of all modern programming languages. Understanding the basic concepts of object-orientation helps a developer to use various modern day programming languages, more effectively.

2) Explain about Object oriented programming? Object oriented programming is one of the most popular methodologies in software development. It offers a powerful model for creating computer programs. It speeds the program development process, improves maintenance and enhances reusability of programs.

3) Explain what is an object? An object is a combination of messages and data. Objects can receive and send messages and use messages to interact with each other. The messages contain information that is to be passed to the recipient object.

4) Explain the implementation phase with respect to OOP? The design phase is followed by OOP, which is the implementation phase. OOP provides specifications for writing programs in a programming language. During the implementation phase, programming is done as per the requirements gathered during the analysis and design phases.

5) Explain about the Design Phase? In the design phase, the developers of the system document their understanding of the system. Design generates the blue print of the system that is to be implemented. The first step in creating an object oriented design is the identification of classes and their relationships.

6) Explain about a class? Class describes the nature of a particular thing. Structure and modularity is provided by a Class in object oriented programming environment. Characteristics of the class should be understandable by an ordinary non programmer and it should also convey the meaning of the problem statement to him. Class acts like a blue print.

7) Explain about instance in object oriented programming? Every class and an object have an instance. Instance of a particular object is created at runtime. Values defined for a particular object define its State. Instance of an object explains the relation ship between different elements.

8) Explain about inheritance? Inheritance revolves around the concept of inheriting knowledge and class attributes from the parent class. In general sense a sub class tries to acquire characteristics from a parent class and they can also have their own characteristics. Inheritance forms an important concept in object oriented programming.

9) Explain about multiple inheritance? Inheritance involves inheriting characteristics from its parents also they can have their own characteristics. In multiple inheritance a class can have characteristics from multiple parents or classes. A sub class can have characteristics from multiple parents and still can have its own characteristics.

10) Explain about encapsulation? Encapsulation passes the message without revealing the exact functional details of the class. It allows only the relevant information to the user without revealing the functional mechanism through which a particular class had functioned.

11) Explain about abstraction? Abstraction simplifies a complex problem to a simpler problem by specifying and modeling the class to the relevant problem scenario. It simplifies the problem by giving the class its specific class of inheritance. Composition also helps in solving the problem to an extent.

12) Explain the mechanism of composition? Composition helps to simplify a complex problem into an easier problem. It makes different classes and objects to interact with each other thus making the problem to be solved automatically. It interacts with the problem by making different classes and objects to send a message to each other.

 13) Explain about polymorphism? Polymorphism helps a sub class to behave like a parent class. When an object belonging to different data types respond to methods which have a same name, the only condition being that those methods should perform different function.

14) Explain about overriding polymorphism? Overriding polymorphism is known to occur when a data type can perform different functions. For example an addition operator can perform different functions such as addition, float addition etc. Overriding polymorphism is generally used in complex projects where the use of a parameter is more.

15) Explain about object oriented databases? Object oriented databases are very popular such as relational database management systems. Object oriented databases systems use specific structure through which they extract data and they combine the data for a specific output. These DBMS use object oriented languages to make the process easier.

16) Explain about parametric polymorphism? Parametric polymorphism is supported by many object oriented languages and they are very important for object oriented techniques. In parametric polymorphism code is written without any specification for the type of data present. Hence it can be used any number of times.

17) What are all the languages which support OOP? There are several programming languages which are implementing OOP because of its close proximity to solve real life problems. Languages such as Python, Ruby, Ruby on rails, Perl, PHP, Coldfusion, etc use OOP. Still many languages prefer to use DOM based languages due to the ease in coding.

Others Frequenlty Asked

1) Explain what is object oriented programming language? Object oriented programming language allows concepts such as modularity, encapsulation, polymorphism and inheritance. Simula is credited to be the first object oriented language. Objects are said to be the most important part of object oriented language. Concept revolves around making simulation programs around an object.

2) Name some languages which have object oriented language and characteristics? Some of the languages which have object oriented languages present in them are ABAP, ECMA Script, C++, Perl, LISP, C#, Tcl, VB, Ruby, Python, PHP, etc. Popularity of these languages has increased considerably as they can solve complex problems with ease.

3) Explain about UML? UML or unified modeling language is regarded to implement complete specifications and features of object oriented language. Abstract design can be implemented in object oriented programming languages. It lacks implementation of polymorphism on message arguments which is a OOPs feature.

4) Explain the meaning of object in object oriented programming? Languages which are called as object oriented almost implement everything in them as objects such as punctuations, characters, prototypes, classes, modules, blocks, etc. They were designed to facilitate and implement object oriented methods.

5) Explain about message passing in object oriented programming? Message passing is a method by which an object sends data to another object or requests other object to invoke method. This is also known as interfacing. It acts like a messenger from one object to other object to convey specific instructions.

6) State about Java and its relation to Object oriented programming? Java is widely used and its share is increasing considerably which is partly due to its close resemblance to object oriented languages such as C and C++. Code written in Java can be transported to many different platforms without changing it. It implements virtual machine.

7) What are the problems faced by the developer using object oriented programming language? These are some of the problems faced by the developer using object oriented language they are: – 1) Object oriented uses design patterns which can be referred to as anything in general. 2) Repeatable solution to a problem can cause concern and disagreements and it is one of the major problems in software design.

8) State some of the advantages of object oriented programming? Some of the advantages of object oriented programming are as follows: – 1) A clear modular structure can be obtained which can be used as a prototype and it will not reveal the mechanism behind the design. It does have a clear interface. 2) Ease of maintenance and modification to the existing objects can be done with ease. 3) A good framework is provided which facilitates in creating rich GUI applications.

9) Explain about inheritance in OOPS? Objects in one class can acquire properties of the objects in other classes by way of inheritance. Reusability which is a major factor is provided in object oriented programming which adds features to a class without modifying it. New class can be obtained from a class which is already present.

10) Explain about the relationship between object oriented programming and databases? Object oriented programming and relational database programming are almost similar in software engineering. RDBMS will not store objects directly and that’s where object oriented programming comes into play. Object relational mapping is one such solution.

11) Explain about a class in OOP? In Object oriented programming usage of class often occurs. A class defines the characteristics of an object and its behaviors. This defines the nature and functioning of a specified object to which it is assigned. Code for a class should be encapsulated.

12) Explain the usage of encapsulation? Encapsulation specifies the different classes which can use the members of an object. The main goal of encapsulation is to provide an interface to clients which decrease the dependency on those features and parts which are likely to change in future. This facilitates easy changes to the code and features.

13) Explain about abstraction? Abstraction can also be achieved through composition. It solves a complex problem by defining only those classes which are relevant to the problem and not involving the whole complex code into play.

14) Explain what a method is? A method will affect only a particular object to which it is specified. Methods are verbs meaning they define actions which a particular object will perform. It also defines various other characteristics of a particular object.

15) Name the different Creational patterns in OO design? There are three patterns of design out of which Creational patterns play an important role the various patterns described underneath this are: – 1) Factory pattern 2) Single ton pattern 3) Prototype pattern 4) Abstract factory pattern 5) Builder pattern

16) Explain about realistic modeling? As we live in a world of objects, it logically follows that the object oriented approach models the real world accurately. The object oriented approach allows you to identify entities as objects having attributes and behavior.

 17) Explain about the analysis phase? The anlaysis or the object oriented analysis phase considers the system as a solution to a problem in its environment or domain. Developer concentrates on obtaining as much information as possible about the problem. Critical requirements needs to be identified.

Create SEF Tags – Helpers

August 29th, 2009 Austin Leave a comment

SEF Helpers

This function will create unique links for your URL’s
It will genrate a string of different tags joined together.

// ------------------------------------------------------------------------

/**
* SEF Helpers
*
* @package SEO/SEM
* @subpackage Helpers
* @category Helpers
* @author SEO/SEM 316 Dev Team
* @link http://
*/

// --------------------------------------------------------------------------

/**
* Create SEF Tags
*
* This function will create unique links for your URL's
* It will genrate a string of different tags joined together.
*
* @category function
* @access public
* @param string
* @return string
*/
function create_sef_tags($tag_string='')
{
// Clean the string with all the dirty or unwanted characters
$mixed_search = array("!", "#", "$", "%", "^","&", "*", "(",
")", "+","=", "|", "\\", "{", "[",
"}", "]", ":", ";", "\"","'", "<", ",", ">", "?","/", "~", "`", "@", ".");
$mixed_replace = "";
$tag_string = str_replace($mixed_search,$mixed_replace,$tag_string);

// Replace space or underscore with (minus) character
$mixed_search = array(" ","_");
$mixed_replace = "-";
$tag_string = str_replace($mixed_search,$mixed_replace,$tag_string);

// Convert all the characters to lower case
$tag_string = strtolower($tag_string);

// Return formated string
return($tag_string);

}

Lets try and example :

// Example
echo create_sef_tags('@@Austin Noronha 316 Rockz.......@@');

Output:

austin-noronha-316-rockz

So enjoy the code………

Do you want to share this code or provide a short link to this post use :

http://wp.me/p7jlT-3

Mangalore – Simply The Best

July 18th, 2009 Austin 2 comments

Manglore - Nariyals(Coconuts)

Mangalore - Nariyals(Coconuts)

Mangalore (pronounced maengalor ; Tulu: Kudla, Kannada: Mangaluru; Konkani: Kodial, Beary: Maikala) is the chief port city of the Indian state of Karnataka. Bounded by the Arabian Sea and the Western Ghat mountain ranges, Mangalore is the administrative headquarters of the Dakshina Kannada (formerly South Canara) district in southwestern Karnataka.

Mangalore derives its name from the local Hindu deity Mangaladevi. It developed as a port on the Arabian Sea – remaining, to this day, a major port of India. Lying on the backwaters of the Netravati and Gurupura rivers, Mangalore is often used as a staging point for sea traffic along the Malabar Coast. The city has a tropical climate and lies on the path of the Arabian Sea branch of the South-West monsoons. Mangalore’s port handles 75% of India’s coffee exports and the bulk of the nation’s cashew exports.

How to go to Mangalore?

By plane:

Mangalore International Airport , at Bajpe, about 20 km from the city centre. Currently there are daily flights to Mumbai, Bangalore, Goa, Kochi and Calicut in the domestic segment and weekly/bi-weekly flights to Dubai, Abu Dhabi, Muscat (Oman), Doha (Qatar), Kuwait and Bahrain in the international segment.

Filghts: Air India, Jet Airways, Kingfisher Airlines, and Air India Express currently operate flights to Mangalore.

By train:

Mangalore has two big railway stations.

  • Mangalore Central (IR station code : MAQ) is located at Hampankatta, in the heart of the city. It is a terminus and is used only by the trains which terminate at Mangalore.
  • Mangalore Junction (IR station code : MAJN) is situated in Kankanady, about 5 km from the city centre. Most long-distance trains and all trains not terminating at Mangalore stop at this station.

I prefer the Private BUS ’s or the Train cause you can enjoy the Konkan Greenary and Lots more!!

How to get around in Mangalore?

By bus
There are numerous private bus companies which run bus services within the city of Mangalore and its suburbs. Public and Private Bus’s. The minimum bus fare is Rs. 3.25 .  In addition city bus service, there is limited stop (usually called express) .
By cab
White Ambassador Cabs / Indicas are available – usually used by passengers on long-haul routes.  Prepaid cabs are available from the airport to the city – this is generally at a flat rate of Rs. 350-400.
By Autorickshaws
They are available all throughout Mangalore City – starting fare is Rs.13. Pre-paid autos were available from the City Railway Station and the KSRTC bus stand at Bejai, but not any more.

I prefer the CELL ONE private pre-paid cabs. They are much more reasonable and the drivers are very friendly!!

Yummy Ice Creams !!!!

Ideals ice cream parlour

Ideals ice cream parlour

Ice creams - banana split, Gadbad, tiramisu

Ice creams - banana split, Gadbad, tiramisu

Ideals @ Hampankatta. There are three parlours (2 ideals, proximity located 200 metres of one another. One is located near the Milgres junction and the other one is near the next junction heading towards the market) 3rd one Pabba’s, at Lalbagh diagonally facing Saibeen Complex . Ideals is marked as one of the best ice cream in DK, when you are in mangalore this is a must try place. You have to try out “GADBAD” ice cream which is only available in Ideals and the best of all ice creams. Gadbad icecream is an old favorite which has dry fruits and fresh ones chopped up with nuts, layered with icecream (strawberry and vanilla) and topped off with Jello. Hot favorites are “CHOCOLATE DAD” and “TIRAMISU“.

If your one of the HIGH SPIRITS then !!!

The Liquid Lounge (Balmatta Road – the general youth hangout!) : Good music, good ambiance, good beer!

Lets be on the Safer Side!!

Three things will do more to prevent an upset stomach or other traveling aliments than anything else:

  1. Always choose water from filters (Aquaguard water) or bottled mineral water, just to be on the safe side.
  2. Carrying water free hand sanitizer is a must (Germ-X, Purell, etc.) Go ahead and eat with your hands like everyone else! Once you use your hand sanitizer your hands are cleaner than the silverware that was washed with water you don’t want to drink.
  3. Always choose foods that are steaming hot. Food is often prepared ahead of time so you want to see it cooked or see the steam coming of the food.

Best Churches !!!

St Lwarence Shurch

St Lwarence Shurch

St Lwarence statue

St Lwarence statue

St Lwarence - mass timings

St Lwarence - mass timings

St Lwarence Church - Address and Website

St Lwarence Church - Address and Website

  • St. Lawrence Church (A place of Miracle)
    Karkal-Attur,
    Attur North P.O. – 576 117
    Karkala Taluk, Udupi District
  • St. Aloysious, Milagris

In Brief:

  • Mangalore is a port city and the headquarters of Dakshina Kannada district in the coastal region of Karnataka State in India.
  • Mangalore is the gateway to Karnataka.
  • It is one of the five talukas (other than Bantwal, Puttur, Sullia, Belthangady taluks) of the Dakshina Kannada District. This District formerly had 8 talukas, but these were split in August 1997 and the remaining talukas, namely Udupi, Kundapur and Karkala then formed a part of the Udupi district,but there is no division found in the living of two cities.
Mangalore is named after the Goddess Mangaladevi. Other names used by the locals are ‘Mangalooru’ (Kannada), ‘Kudla’ (Tulu), ‘Kodial’ (Konkani), ‘Mikala’ (Beary) and ‘Mangalapuram (Malayalam),’Manjarun’(sanskrith).

Secure PHP Applications (PHP Security)

June 1st, 2009 Austin Leave a comment

To understand PHP security better let us first understand what is PHP and Security

Security is a process, not a product, and adopting a sound approach to security during the process of application development will allow you to produce tighter, more robust code.

(PHP Hypertext Preprocessor) A scripting language used to create dynamic Web pages. With syntax from C, Java and Perl, PHP code is embedded within HTML pages for server side execution. It is commonly used to extract data out of a database and present it on the Web page

PHP is a powerful scripting language for building web applications, and also one of the easiest ways for hackers to gain access to your web server. Developers need to understand how their scripts can be exploited in order to protect them.

PHP is widely used in many high-end applications that maybe a Web Based (Internet) or and Intranet Applications. We can say that from the total PHP in Web Based (Internet) Applications : 80% and Intranet Applications:20%.

As IBM as suggested few basic principles that we could follow to make our website secure and guard our application from any vulnerabilities:

Validate input
Guard your file system
Guard your database
Guard your session data
Guard against Cross-Site Scripting (XSS) vulnerabilities
Verify form posts
Protect against Cross-Site Request Forgeries (CSRF)
  1. Validate input
  2. Guard your file system
  3. Guard your database
  4. Guard your session data
  5. Guard against Cross-Site Scripting (XSS) vulnerabilities
  6. Verify form posts
  7. Protect against Cross-Site Request Forgeries (CSRF)

Windows XP DOS Commands And Tricks

May 28th, 2009 Austin Leave a comment

Very few of us know some trick of CMD of windows XP i have used many and also known some. So i have created a list of useful Win XP CMD tools that can be used.

Hope it helps you!!!!

ipconfig – Windows IP configuration

Useful for troubleshooting your internet connection. Displays the current IP address of your computer and the DNS server address. If you call your ISP for reporting a bad internet connection, he will probably ask you to run ipconfig.

fc – Free BeyondCompare in XP

FC is an advanced DOS Command that compares two files and displays the differences between them. Though the file comparison results are not as interactive as BeyondCompare or Altova DiffDog, fc is still very useful. You can even set fc to resynchronize the files after finding a mismatch.

type – open text files sans Notepad

Similar to Unix cat command, Type is my favorite DOS command for displaying the contents of a text files without modifying them. When used in combination with more switch, type splits the contents of lengthy text files into multiple pages. Avoid using the type command with binary files or you’ll hear alien PC beeps and see some greek characters on your PC.

ping – Say hello to another computer

Ping network command followed by the web-address or IP address tells you about the health of the connection and whether the other party is responding to your handshake request. Ping tool can also be used to convert the web address to a physical IP address.

tree – visual directory structure

You often need to take prints of your physical directory structure but XP has no simple “visual” commands for printing directory contents. Here, try the Tree DOS command and redirect the output to a text file.

tree > mydirectory.txt

print mydirectory.txt

attrib – make hidden files visible

Attrib lets you change attributes of System files and even hidden files. This is great for troubleshooting Windows XP. Say your XP doesn’t boot ever since you edited that startup boot.ini file (Hidden), use attrib to remove the Hidden attibute and edit the file using EDIT dos command.

assoc – which program will open that .xyz file

The assoc DOS command can be used to either isplay or even modify the file name extension associations. The command assoc .htm will quickly tell you the name of your default web browser (see picture)

move – more flexible than copy-paste

Say you got a lot of XLS and DOC files in you MyDocuments folder and want to move only those XLS files that have their name ending with 2006. In XP Explorer, you have to manually select each file and then cut-paste to another folder. However, the DOS move command make things much simpler. Just type the following at the command prompt:

move *2006.xls c:\2006Reports\

bootcfg

Configures, queries, or changes Boot.ini file settings.

defrag

Locates and consolidates fragmented boot files, data files, and folders on local volumes.

diskpart

Manages disks, partitions, or volumes.

driverquery

Queries for a list of drivers and driver properties.

eventcreate

Enables an administrator to create a custom event in a specified event log.

eventquery

Lists the events and event properties from one or more event logs.

eventtriggers

Displays and configures event triggers on local or remote machines.

fsutil

Manages reparse points, managing sparse files, dismounting a volume, or extending a volume.

getmac

Obtains the media access control (MAC) address and list of network protocols

helpctr

Starts Help and Support Center.

ipseccmd

Configures Internet Protocol Security (IPSec) policies in the directory service, or in a local or remote registry. Ipseccmd is a command-line version of the IP Security Policies Microsoft Management Console (MMC) snap-in.

logman

Manages and schedules performance counter and event trace log collections on local and remote systems.

openfiles

Queries, displays, or disconnects open files.

pagefileconfig

Displays and configures the paging file Virtual Memory settings of a system.

perfmon

Enables you to open a Performance console configured with settings files from Windows NT 4.0 version of Performance Monitor.

prncnfg

Configures or displays configuration information about a printer.

prndrvr

Adds, deletes, and lists printer drivers from local or remote print servers.

prnjobs

Pauses, resumes, cancels, and lists print jobs.

prnmngr

Adds, deletes, and lists printers or printer connections, in addition to setting and displaying the default printer.

prnport

Creates, deletes, and lists standard TCP/IP printer ports, in addition to displaying and changing port configuration.

prnqctl

Prints a test page, pauses or resumes a printer, and clears a printer queue.

relog

Extracts performance counters from performance counter logs into other formats, such as text-TSV (for tab-delimited text), text-CSV (for comma-delimited text), binary-BIN, or SQL.

sc

Retrieves and sets information about services. Tests and debugs service programs.

schtasks

Schedules commands and programs to run periodically or at a specific time. Adds and removes tasks from the schedule, starts and stops tasks on demand, and displays and changes scheduled tasks.

shutdown

Shuts down or restarts a local or remote computer.

systeminfo

Queries the system for basic system configuration information.

taskkill

Ends one or more tasks or processes.

tasklist

Displays a list of applications, services, and the Process ID (PID) currently running on either a local or a remote computer.

tracerpt

Processes event trace logs or real-time data from instrumented event trace providers and allows you to generate trace analysis reports and CSV (comma-delimited) files for the events generated.

typeperf

Writes performance counter data to the command window or to a supported log file format.

WMIC

Eases the use of Windows Management Insturmentation (WMI) and systems managed through WMI.