Posts

Programming Songs

1. Two Recursive functions calling each other Mujhe kuchh kehna hein mujhe bhi kuchh kehna hein pehle tum, pehle tum 2. The debugger Jab koi baat bigad jaye Jab koi mushkil pad jaye Tum dena saath mera hamnawaz 3. COM programming in VC++ Roop tera mastana Pyar mera deewana Bhool kahin hum se na ho jaye 4.From VC++ to VB Yeh haseen vaadiyan Yeh khula asmaan Aa gaye hum kahan 5. Untrackable bug -- aye ajnabi, tu bhi kabhi, awaaz de kahin se 6. Unexpected bug (esp. during presentation to client) Ye kya hua, Kaise hua, Kab hua, Kyon hua 7. And then to the client Jab hua, Tab hua, O chhodo, ye na socho 8. Load Balancing Saathi haath badhana ek akela thak jayega mil kar bojh uthana 9. Modem - talk on a busy connection suno - kaho, kaha - suna, kuch huwa kya? Abhee to nahin... kuch bi nahin 10. Windows getting open sourced Parde mein rahne do parda na uthao parda jo uth gaya to bhed khul jayeha allah meri tauba, allah meri t...

Reema Lagu : Reel Life Mother's Movie List

Image

How to Build Healthy and Strong Bones

How to Build Healthy and Strong Bones When we talk about bones two things come in our mind, Calcium and Vitamin D. While Calcium is important mineral for bones, Vitamin D leads to absorption of Calcium. Daily intake of Calcium and Vitamin D: 1 to 3 years old — 700 milligrams of calcium daily 4 to 8 years old — 1,000 milligrams of calcium daily 9 to 18 years old — 1,300 milligrams of calcium daily Adults up to age 50 should get 1,000 milligrams of calcium and 200 international units (IUs) of vitamin D daily. Adults over 50 should get 1,200 milligrams of calcium and 400 to 600 IU of vitamin D. * Kids 1 to 18 years old also should get 600 IU of vitamin D daily. Trying these for healthy bones: Sunlight: We often underestimate the power of nature. Without paying a single penny just go run or go for a walk in sunlight. It not only will keep you you fit but also provides Vitamin D that makes your bones stronger. Your body is designed to get the vi...

Ethical Hacking

What is Ethical Hacking? Ethical hacking   and   ethical hacker   are terms used to describe   hacking   performed by a company or individual to help identify potential threats on a computer or network. An ethical hacker attempts to bypass system security and search for any weak points that could be exploited by malicious hackers. This information is then used by the organization to improve the system security, in an effort to minimize or eliminate any potential attacks. What constitutes ethical hacking? For hacking to be deemed ethical, the hacker must obey the following rules: 1.      Expressed (often written) permission to probe the network and attempt to identify potential security risks. 2.      You respect the individual's or company's privacy. 3.      You close out your work, not leaving anything open for you or someone else to exploit at a later time. 4.   ...

Android Styles and Themes

Android Styles and Themes If you already know about Cascading Style Sheet (CSS) in web design then to understand Android Style also works very similar way. There are number of attributes associated with each Android widget which you can set to change your application look and feel. A style can specify properties such as height, padding, font color, font size, background color, and much more. You can specify these attributes in Layout file as follows: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:orientation="vertical" >      <TextView    android:id="@+id/text_id"    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:capitalize="characters"    android:textColor=...

Android Intent

Android Intent Intent is the negotiator between two activities or between two applications. It gives the ability to pass messages and data between the two entities. When writing applications for mobile, Intent is very handy, since it gives access to a lot of the OS services like opening the camera, a browser, displaying notifications and so on. Intents are instances of the  android.content.Intent  class. One of the most common uses for Intents is to  start new activities . Intents can also be used to broadcast messages across the system. Any application can register Broadcast Receiver  to listen for, and react to, these broadcast Intents. Android uses broadcast Intents to announce system events, like changes in internet connection status or battery charge levels. The native android applications such as the phone dialer & SMS Manager, simply register components that listen for specific broadcast Intents- such as "incoming phone call" or "SMS message r...