December 2010 archive

Integration, Storage and Management of Data

Comprehensive, meaningful data analyses are only possible if the datasets are bundled into a business query and integrated. These datasets can have different formats and sources. The data warehouse is therefore the basis for a business intelligence solution. Enterprise data is collected centrally in the Enterprise Data Warehouse of SAP NetWeaver BI. The data is …

Continue reading

Permanent link to this article: https://blog.openshell.in/2010/12/integration-storage-and-management-of-data/

Tips for using jQuery

Find if something is hidden: We use .hide(), .show() methods in jquery to change the visibility of an element. Use following code to check the whether an element is visible or not. if($(element).is(“:visible”) == “true”) { //The element is Visible } Center an element on the Screen: To make align the element to center. jQuery.fn.center …

Continue reading

Permanent link to this article: https://blog.openshell.in/2010/12/tips-for-using-jquery/

MNP–Mobile Number Portability

INTRODUCTION Mobile Number portability (MNP) enables mobile subscribers to change their service providers or their location without having to change their existing phone numbers. If the subscribers are not satisfied with the services of their service provider, they can change their service provider while retaining the existing phone number. This infuses competition among service providers …

Continue reading

Permanent link to this article: https://blog.openshell.in/2010/12/mnp-mobile-number-portability/

How do I find out If Running Kernel Is 32 Or 64 Bit?

Target Audience: Beginners of Linux/Unix Users Many beginners of Linux/Unix users might struggle or uncertain when they download softwares for Linux/Unix to choose correct software according to its kernel ie. 32 bit or 64 bit. The uname command gives you the solution. Execute the following command in terminal: $ uname -a If the result contains …

Continue reading

Permanent link to this article: https://blog.openshell.in/2010/12/how-do-i-find-out-if-running-kernel-is-32-or-64-bit/

Using find command in linux

Using find command in linux find is a powerful command in linux. If u understand it then u can do most thing using it. but in this post i am not going to teach the full power of  it but some basic usage. This is a simple one finding any .txt file in the home …

Continue reading

Permanent link to this article: https://blog.openshell.in/2010/12/using-find-command-in-linux/

5 CSS tricks you may not know

Using multiple classes together Usually attributes are assigned just one class, but this doesn’t mean that that’s all you’re allowed. You can actually assign as many classes as you like. For example: <div class=”class1 class2″></div> The class names are separates by a space. So that means “class1” and “class2” calls up the rules assigned to …

Continue reading

Permanent link to this article: https://blog.openshell.in/2010/12/5-css-tricks-you-may-not-know/

Get your free personal cloud -Ubuntu One

Introduction to Ubuntu One: Ubuntu One is a personal cloud for everyone. It’s just like syncing files, notes and contacts. You can access your contacts, notes or bookmarks from any computer or the web. The mind blowing thing in it is you can enjoy accessing your favorite music or stuff from a your iPhone and …

Continue reading

Permanent link to this article: https://blog.openshell.in/2010/12/get-your-free-personal-cloud-ubuntu-one/

SlideShow using jQuery

Creating Image Slide Show using jQuery: In the code below you will see a surrounding div (id slideshow-area) which holds our slideshow content scroll area and our next and previous buttons. Inside our scroll area we have a div to hold the content and finally the content itself. As far as html goes this is …

Continue reading

Permanent link to this article: https://blog.openshell.in/2010/12/slideshow-using-jquery/

CPU Power States

The CPU power states C0–C3 are defined as follows: C0 is the operating state. C1 (often known as Halt) is a state where the processor is not executing instructions, but can return to an executing state essentially instantaneously. All ACPI-conformant processors must support this power state. Some processors, such as the Pentium 4, also support …

Continue reading

Permanent link to this article: https://blog.openshell.in/2010/12/cpu-power-states/

Escape String Literals for SQL

To run a SQL query with text data containing single quotes ‘ as well as other SQL reserved punctuations, and to prevent SQL injections, you will always want to escape the text values before using them in a SQL query. mysql_real_escape_string() calls MySQL’s library function mysql_real_escape_string, which prepends backslashes to the following characters: x00, n, …

Continue reading

Permanent link to this article: https://blog.openshell.in/2010/12/escape-string-literals-for-sql/