Saturday, April 14, 2012

Meditation




Meditation is universal. It transcends all divides like religion, country and culture. It is a gift given to mankind to access the infinite spirit not limited by any identity. It is the only tool that can aid a person to return to innocence.
Modern life style has high exposure to anger, hate, fear and other negative emotions. These human emotions have a high tendency to duplicate and spread. For example, when a person gets cheated, he starts to suspect everything around him. This also has an impact on people around him. These emotions form strong impressions and opinions on an individual and social level. The result of which is an insecure individual and an unstable society.
Meditation helps an individual overcome these emotions to facilitate a calm peaceful mind and a healthy and stress free body.Upon daily practice an individual will blossom into an unshakable personality. With increase in the number of people who are clam, peaceful and healthy will facilitate a social transformation, enabling a society that is trusting, happy and content.


100 Benefits of Meditation

Physiological benefits:
1. It lowers oxygen consumption.
2. It decreases respiratory rate.
3. It increases blood flow and slows the heart rate.
4. Increases exercise tolerance.
5. Leads to a deeper level of physical relaxation.
6. Good for people with high blood pressure.
7. Reduces anxiety attacks by lowering the levels of blood lactate.
8. Decreases muscle tension
9. Helps in chronic diseases like allergies, arthritis etc.
10. Reduces Pre-menstrual Syndrome symptoms.
11. Helps in post-operative healing.
12. Enhances the immune system.
13. Reduces activity of viruses and emotional distress
14. Enhances energy, strength and vigor.
15. Helps with weight loss
16. Reduction of free radicals, less tissue damage
17. Higher skin resistance
18. Drop in cholesterol levels, lowers risk of cardiovascular disease.
19. Improved flow of air to the lungs resulting in easier breathing.
20. Decreases the aging process.
21. Higher levels of DHEAS (Dehydroepiandrosterone)
22. Prevented, slowed or controlled pain of chronic diseases
23. Makes you sweat less
24. Cure headaches & migraines
25. Greater Orderliness of Brain Functioning
26. Reduced Need for Medical Care
27. Less energy wasted
28. More inclined to sports, activities
29. Significant relief from asthma
30. Improved performance in athletic events
31. Normalizes to your ideal weight
32. Harmonizes our endocrine system
33. Relaxes our nervous system
34. Produce lasting beneficial changes in brain electrical activity
35. Helps cure infertility (the stresses of infertility can interfere with the release of hormones that regulate ovulation).

Psychological benefits:
36. Builds self-confidence.
37. Increases serotonin level, influences mood and behavior.
38. Resolve phobias & fears
39. Helps control own thoughts
40. Helps with focus & concentration
41. Increase creativity
42. Increased brain wave coherence.
43. Improved learning ability and memory.
44. Increased feelings of vitality and rejuvenation.
45. Increased emotional stability.
46. improved relationships
47. Mind ages at slower rate
48. Easier to remove bad habits
49. Develops intuition
50. Increased Productivity
51. Improved relations at home & at work
52. Able to see the larger picture in a given situation
53. Helps ignore petty issues
54. Increased ability to solve complex problems
55. Purifies your character
56. Develop will power
57. Greater communication between the two brain hemispheres
58. Respond more quickly and more effectively to a stressful event.
59. increases one’s perceptual ability and motor performance
60. Higher intelligence growth rate
61. Increased job satisfaction
62. Increase in the capacity for intimate contact with loved ones
63. Decrease in potential mental illness
64. Better, more sociable behavior
65. Less aggressiveness
66. Helps in quitting smoking, alcohol addiction
67. Reduces need and dependency on drugs, pills & pharmaceuticals
68. Need less sleep to recover from sleep deprivation
69. Require less time to fall asleep, helps cure insomnia
70. Increases sense of responsibility
71. Reduces road rage
72. Decrease in restless thinking
73. Decreased tendency to worry
74. Increases listening skills and empathy
75. Helps make more accurate judgments
76. Greater tolerance
77. Gives composure to act in considered & constructive ways
78. Grows a stable, more balanced personality
79. Develops emotional maturity

Spiritual benefits:
80. Helps keep things in perspective
81. Provides peace of mind, happiness
82. Helps you discover your purpose in life
83. Increased self-actualization.
84. Increased compassion
85. Growing wisdom
86. Deeper understanding of yourself and others
87. Brings body, mind, and spirit in harmony
88. Deeper Level of spiritual relaxation
89. Increased acceptance of one self
90. Helps learn forgiveness
91. Changes attitude toward life
92. Creates a deeper relationship with your God
93. Increases the synchronicity in your life
94. Greater inner-directedness
95. Helps living in the present moment
96. Creates a widening, deepening capacity for love
97. Discovery of the power and consciousness beyond the ego
98. Experience an inner sense of “Assurance or Knowingness”
99. Experience a sense of “Oneness”
100. Leads to enlightenment

To top it off, meditation has NO negative side effects





Loads of Love,
Ravi

Sunday, April 8, 2012

What Java Has Removed from C++

  1. Pointers. Pointers don't exist in Java for two reasons:
    • Pointers are inherently insecure. For example, using a C++-style pointer, it is possible to gain access to memory addresses outside a program's code and data. A malicious program could make use of this fact to damage the system, perform unauthorized accesses (such as obtaining passwords), or otherwise violate security restrictions.
    • Even if pointers could be restricted to the confines of the Java run-time system (which is theoretically possible, since Java programs are interpreted), the designers of Java believed that they were inherently troublesome. 
  2. Java does not include structures or unions. These were felt to be redundant since the class encompasses them.
  3. Java does not support operator overloading. Operator overloading is sometimes a source of ambiguity in a C++ program, and the Java design team felt that it causes more trouble than benefit.
  4. Java does not include a preprocessor nor does it support the preprocessor directives. The preprocessor plays a less important role in C++ than it does in C. The designers of Java felt that it was time to eliminate it entirely.
  5. Java does not perform any automatic type conversions that result in a loss of precision. For example, a conversion from long integer to integer must be explicitly cast.
  6. All the code in a Java program is encapsulated within one or more classes. Therefore, Java does not have what you normally think of as global variables or global functions.
  7. Java does not allow default arguments. In C++, you may specify a value that a parameter will have when there is no argument corresponding to that parameter when the function is invoked. This is not allowed in Java.
  8. Java does not support the inheritance of multiple super classes by a subclass.
  9. Although Java supports constructors, it does not have destructors. It does, however, add the finalize ( ) function.
  10. Java does not support typedef.
  11. It is not possible to declare unsigned integers in Java.
  12. Java does not allow the goto.
  13. Java does not have the delete operator.
  14. The << and >> in Java are not overloaded for I/O operations.
  15. In Java, objects are passed by reference only. In C++, objects may be passed by value or by reference.



Loads of Love,
Ravi