This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Wednesday, March 22, 2017

Founder of Joycebandafoundation Ex-President Malawi Dr Joyce Banda

An entrepreneur, activist, politician, and philanthropist, Her Excellency Dr. Joyce Banda was also the President of the Republic of Malawi (2012-2014). She was Malawi’s first female president and Africa’s second. Voted as Africa's most powerful woman by Forbes Magazine for two years running and voted as one of the most powerful women in the world, Her Excellency Dr. Joyce Banda is a champion for the rights of women, children, the disabled, and other marginalized groups.

Before becoming President of Malawi, Dr. Banda served as a Member of Parliament; Minister of Gender and Child Welfare; and Foreign Minister and Vice President of the Republic of Malawi. While serving as Minister of Gender and Child Welfare, Dr. Banda championed the enactment of the Prevention of Domestic Violence Bill in 2006, which provides a legal framework for the elimination and prevention of all forms of violence against women and girls.


A recipient of more than 15 international accolades including the “Hunger Project Africa Prize for Leadership for the Sustainable End of Hunger" shared with President Joaquim Chissano of Mozambique in 1997, President Banda is a strong advocate for women and girls’ emancipation and empowerment and a prominent civil rights campaigner. She founded the Joyce Banda Foundation International, which guides projects that range from empowering women to providing for orphans’ education.

On the international scene, President Dr. Banda was instrumental in the formation of such organizations as the African Federation of Women Entrepreneurs (AFWE), currently running in 41 countries in Africa; the Council for the Economic Empowerment of Women in Africa (CEEWA); and the American & African Business Women’s Alliance (AABWA), of which she served as First President.

President Banda sits on a number international organization bodies. These include the Executive Advisory Committee of UNIFEM, the Global Leaders Council for Reproductive Health, and the Scientific Advisory Board for the program in Global Health and Social Change at Harvard Medical School.

Friday, August 2, 2013

Magento using Php Codes

Magento is one of the newest and awarded ecommerce application right now. And I seem to have a project launched nowadays about it.
Above the ecommerce part like adding/modifying products, it also has a built-in CMS. It looks quite useful. Not very powerful though.  It just evaluates html code and not php. In most of the time this is prefered by the way. Because of security risks and things like that. But there are also cases which you want to do if you are importing something to magento or if you are just wanting to do in a quick and dirty way!

Fetured Links
Resale Property in Gurgaon , Send Flower to Delhi, Web Development Company Delhi , Bearing Importer India, Indian B2B directory, B2B Directory in Delhi , Indian Careers Magazine, Travel Directory China

Well, the workarounds you find are not quite good. Simply they just take the CMS code, write it to a temporary file and include it, or writing a bit complicated parser inspired from joomla/mambo. Check out here for the details of the workaround. The tutorial I’m putting here is from there to, however I will also try to write solutions to problems that I have encountered (mostly because of magento versions).
This tutorial is working for magento version 1.1.8. You can download the latest version from here.
Now open up your favorite php/xml/html editor. While it will open up, also open your magento installation folder. Magento has a lots of folders for lots of things, which I do not know why. The code part is in app/ directory as you may guess. In the app folder you will find the etc/ where there are configurations for magento generally. Our PHP Code will be a module to the Magento, so we have to go modules directory and create a new xml file, named according to your module. The syntax is like: Parkyeri_customPHP. The first part till underscore means the name of the module, int this case Parkyeri. The second part indicates the component of the module. So you may have different components in one module, in this case customPHP, If we are talking about custom codded PHP pages, so in this module named Parkyeri, there can be different pages like: About, Contact, Jobs. And these are all different components, doing different things. If we were trying to create the About page then we had to use something like Parkyeri_About. You can add all of them in the same xml file.

Open up /app/etc/modules/ and create a file named Parkyeri.xml (the name of the module) and add these lines to file:
  1.   
  2. <config>  
  3. <modules>  
  4.     <parkyeri_customphp>  
  5.         <active>true</active>  
  6.         <codepool>local</codepool>  
  7.         </parkyeri_customphp>  
  8.     </modules>  
  9. </config>  
But what this means? You declare a new module named Parkyeri to the global site by naming the file Parkyeri.xml. Then you define in the module config file that, this module has a component named customPHP. You say that this component is active and the system can find it in the app/code/local directory by looking at the codepool
As you get it now we pass to the next stage. Now open up app/code/local/Parkyeri/customPHP/etc/ and create a file named config.xml (the default configuration file name for every module.) and add these lines in it.
view plaincopy to clipboardprint?
  1.   
  2. <config>  
  3.     <global>  
  4.         <blocks>  
  5.             <parkyeri_customphp>  
  6.                 <class>Parkyeri_customPHP_Block</class>  
  7.            </parkyeri_customphp>  
  8.        </blocks>  
  9.     </global>  
  10. </config>  
What does it mean? This is more of a mapping file than a configuration file. What you are doing here is to map (you may also think bind) a class named Parkyeri_customPHP_Block to a block called parkyeri_customphp. So whenever a block of type parkyeri_customphp will be called, this block will look out for the class you defined in this configuration/mapping/binding file. But also you are defining the location of the component files that you want to call. In most of the cases, you want to call a component’s block from a module. So when calling you will say that I want a component named customPHP, and a block named test and this component is under the module Parkyeri. We move on…
Now the fun part, open up app/code/local/Parkyeri/customPHP/Block and create a file named Test.php and add these lines in it:
  1. class Parkyeri_customPHP_Block_Test extends Mage_Core_Block_Abstract  
  2. {  
  3.     protected function _toHtml()  
  4.     {  
  5.         //put here your custom PHP code with output in $html;  
  6.         //use arguments like $this->getMyParam1() , $this->getAnotherParam()  
  7.         $html = "Hello" . $this->getWorld();  
  8.         return $html;  
  9.     }  
  10. }  
 Hire Magento Developer, Hire Magento Programmer, Magento Development Company India, Magento Development Services

So, we have finally reached the part which you are most comfortable, writing code! You will write down all the code you want to evaluate in this file. The _toHtml() method is called when you call it in the cms part. A magical function just like toString(). As you may remark the name of the class, is conventional according to the location of the class. That was how the previous configuration knew where to look when mapping.
And the final part is to embed it in the CMS, this is easy part. But the part where you get dissapointed most.


Add this to page you want to show your custom php code:
view plaincopy to clipboardprint?
  1. {{block type="parkyeri_customphp/test" world="World"}}  
So, it’s obvious isn’t it? In this code part, you say that, you want to put a block here. The type of this block is parkyeri_customphp/test. So actually you want a block named test under the customphp component which also a part of parkyeri module.  But you may be curious of the rest, on what I mean by saying, world. I’m sending a parameter to the class. Remember the code where there was $this->getWorld(). This world is that world!. So the code will print out “Hello World” (without an exclamation).
So this was it! Did it worked? No I didn’t did it? The real reason that it did not worked, is because, you did not refresh the caching system!! Yes, it’s that simple! It gave me a lots of headache though, hope it won’t to you. You can disable the caching from System -> Cache Management by the way.  Better then refreshing every time :)


We are professional Magento Development Company based in India providing Magento eCommerce development services, Magento customization , Magento themes at affordable rate. We’ve been working with Magento development since the early days when the platform just came out in early 2008 and have been using it ever since.

Net World Solutions.
India:
Telephone : +91 088 26147 606 (Delhi, India)
Email Id : info@networldsolutions.org
Business Partners : http://find4sites.com
Website: http://www.networldsolutions.org/magento_development_solutions.php


Thursday, July 25, 2013

In Social Media Mistakes Will Happen – Plan For It

Faults they come about. They will certainly happen. The best you’ll be able to hope for should be to avoid them wherever possible and lessen their destruction. Mistakes these are what create us man. In social websites, mistakes will certainly happen. It will have miscommunication, unawareness, and failure to realize opportunities. Should this are the end in the world for ones business?


Fetured Links
Resale Property in Gurgaon , Send Flower to Delhi, Web Development Company Delhi , Bearing Importer India, Indian B2B directory, B2B Directory in Delhi , Indian Careers Magazine, Travel Directory China


Zero and it mustn’t be the end of your respective business’s foray into social websites either. The simplest way to minimize mistakes should be to plan. The simplest way to minimize your damage through the mistakes should be to learn at their store. The proper way to advance is to realize that mistakes will surely have hidden glowing opportunities. Sizzling hot to make it happen is to experience a plan.

What social websites planning helps your small business does is then come when faults happen? They’ll happen. It is those faults that serendipity normally reigns in support of well geared up companies can easily turn these people into chances. Without arranging and train – by way of role-playing – your small business will even if it’s just know every time a mistake have been made and tips on how to respond for it. Take by way of example when Kevin Johnson, the representative, was asked to acquire off of a Southwest Airways flight on account of his sizing. He acquired off along with tweeted the idea immediately.

This can have caused a tremendous firestorm pertaining to Southwest Airways if it would not have a social websites plan available. Since Freebie southwest did have a very plan available it could respond quickly and have all information out. The actual result was proper conversation regarding the policies involving Southwest along with questioned ulterior motives of Mr. Johnson. The closing verdict ended up being left for you to those witnesses this specific social engagement plus the potential for the bad pr day ended up being avoided.

Your mistake ended up being on the two parties. Pertaining to Southwest, it will not get allowed Mr. Smith to look at the previous flight (it ended up being packed) as a consequence of his sizing and his or her policy involving charging more substantial passengers for two main seats. The airfare he ended up being on would not have ample. For Mr. Johnson, tweeting about it incident at the release of a new video of his got look as it was self-serving to acquire free press. The consequence was balanced education through social websites engagement for the policies involving Southwest plus the steps that they took to match Mr. Johnson.

Both acquired exposure along with both acquired their side in the incident out and about. Without arranging, the oversight by Southwest may not have had time to always be forward leaning to experience a conversation with regards to its plans online. It will have been required to approach everything in a very reactive along with defensive method. Southwest may not have had time to join in on the chat. Southwest may not have been happy to respond.

About Webinfology
Web Infology was formed in 2006 in India as a combines business experience in SEO and Web Development to help companies align their business to meet profit targets. Most companies have less involvement in online business and do not know hot to achieve their business target by allowing online strategies into their plan. Web Infology strated to cater their such need and to make them online savvy.

R Z F-7/45 Dabri Extension,
New Delhi-110045
Ph. : +91-08826147606
E-mail : info@webinfology.com                                  
Website:www.webinfology.com

Wednesday, July 24, 2013

How to get Explosive Profits by Value of Real Estate

You've located the property that you are potentially interested in purchasing, have looked at it, and determined that it meets your basic investing goals. Before you pat yourself on the back for a job well done, you need to establish its value to avoid potential financial disaster. If you take the word of the seller or the county tax rolls to establish its value, you could lose your shirt, especially in a real estate market that has seen values drop by tens of thousands of dollars within a matter of months.

Fetured Links
Resale Property in Gurgaon , Send Flower to Delhi, Web Development Company Delhi , Bearing Importer India, Indian B2B directory, B2B Directory in Delhi , Indian Careers Magazine, Travel Directory China


Depending upon the kind of investor you are you'll utilize one of the three methods of establishing the value of a property. They are:

Comparable Sales – If you're investing in primarily single-family or multifamily properties with fewer than five units, by far the most popular method of establishing value is the comparable sales method. This method consists of locating recently sold properties that are substantially similar to the one you are considering purchasing and are located in the same general vicinity. A skilled appraiser typically has many years of experience in determining value, but you can do the same thing either by going to your county courthouse and compiling the information yourself or by working with a realtor who might be willing to provide these figures to you. You can also get a rough estimate of values in many areas by utilizing an on-line resource such as Zillow.com. Once you have your comparable sales figures you’ll need to compensate for any differences, such as the lack of a garage, fireplace, or even a swimming pool. In order to compensate for the differences in square footage of your subject properties, you can divide the sales prices by the square footage of living space to come up with a cost per square foot.



Replacement Cost – While not nearly as popular as the Comparable Sales method, another way of determining the value of a property is by estimating what it would cost to re-create the same property in the same area. You would need to determine building costs, the cost of materials, and also make allowances for depreciation of the property so that it is substantially similar to the property you are considering purchasing. If you're experienced at estimating building costs accurately and are aware of the current cost of building materials and supplies, the replacement cost method may be one which you will want to utilize. However, it isn't utilized very frequently. If the Replacement Cost method is one that you'd like to use to determine value, you could very quickly arrive at a figure by contacting a local contractor and asking them how much they would charge you by the square foot to build a home in the area of your subject property. Don’t forget to factor in depreciation to match the condition of your subject property.

Income Valuation Method – The third method of determining the value of a property is to use the Income Valuation Method, sometimes referred to as the Net Income Approach. This method is used to determine the market value of a commercial property or a residential property with more than five units. It’s a relatively simple process. First, determine what the gross income is for the property and then subtract all expenses, including debt service on an annualized basis. Multiply that figure by a factor of ten. The resulting number is about what your property is worth. What’s nice about this sort of property is you can increase its value simply by increasing its net income, reducing operating expenses, or both.

Once you’re able to determine the value of a property you can write an intelligent offer that doesn’t cause you to run the risk of overpaying for a property. Remember, though, that real estate prices are extremely volatile right now, so make sure any properties you use for comparative purposes are recent sales figures. If you have accurate numbers, you can write impactful, precise bids that stand a greater chance of being accepted and allowing you to turn average returns into explosive profits.

Wednesday, July 17, 2013

Kaal surp dosh mukti mahayaga by guru vinod ji

Kaal surp dosh mukti mahayaga 

Fetured Links
Resale Property in Gurgaon , Send Flower to Delhi, Web Development Company Delhi , Bearing Importer India, Indian B2B directory, B2B Directory in Delhi , Indian Careers Magazine, Travel Directory China





Agar Aap bhi hain Kaal Surp Dosh se pareshan
To ho raha hai Kaal surp dosh mukti mahayaga
sammilit hona chahte hon to sampark karen



ACHARYA VINOD KUMAR JI
ADYATMIK SEWA MISSION, House No. – 1, Road No. – 13,
Punjabi Bagh Extension, Near State Bank of India, Club Road,
New Delhi. India

Mobile: +91-9958633529, +91-9310467616

Phone:  +91 011-49122122

Thursday, July 11, 2013

Mercury : The messenger of the God

Mercury is the great messenger of the Gods. He represents, our speech, communication in general and commerce and transactions at all levels. In it’s lower functions he organizes and articulates material resources. On a higher level he connects us with our inner capacities, the powers of mind. He sharpens our power of discrimination to decide what is right ? and What is not right?. Mercury governs writing,education, calculation and thought. Our ability for quick correlation of ideas, the fast interchange of information, or to assess the true things of Value in our life. Mercury is not the planet of wealth but he helps us in both acquiring it and keeping it, as he helps us organize it.

Fetured Links
Resale Property in Gurgaon , Send Flower to Delhi, Web Development Company Delhi , Bearing Importer India, Indian B2B directory, B2B Directory in Delhi , Indian Careers Magazine, Travel Directory China



Mercury breaks down barriers between people and reveals a common humanity and common human needs. As such ,he posses a certain compassion and sense of equality based not so much upon sentiment as upon objectivity and practicality. Mercury is very important in our vocation and career, for that is what we do in vocation is to communicate with others and with the society in general. Mercury shows how we appear and how we function in the network of transactions that makes up the world of things and ideas. After Moon, Mercury is the fastest moving among all other planets and so it is indicative of quick comprehension, facility, and is responsible for quick correction of ideas,the fast interchange of information or of things of value.

A weak Mercury makes us rationalize things to suit our purpose. It creates immaturity, naiveté and folly. It can also create dishonesty and a lack of properly defined boundaries. In today’s culture, Mercury is most important. Together with Mars it creates products like computers, mobile phone, Internet and mass media like television. It is for us to use Mercury as a highly beneficial power by establishing open communication which will lead to a global benevolent culture or to simply get trapped in only sharing superficial and trivial information without attempting to communicate at a deeper human level with each other.

Mercury gets retrograde 4 times during a year when communication gets lost, computer starts malfunctioning, and market gets affected by wild, baseless rumors. In today’s program you will be able to check the ups and downs of Mercury as per your chart during the year 2010. The rules are simple when Mercury is up, you should communicate as much as you can, network as much as you can and transact as much as you can. When Mercury is down, think hundred times before you communicate or before you transact. Avoid investments or avoid finalizing of any documents or agreements. You should wait to do all those things till Mercury improves in your chart.

About Guru Vinod Ji
Astroguru Vinodji is a premier Astrologer and Vastu Expert from the Gurukul of Shri Shri Shri Maharishi Mahesh Yogiji Ved Vidhya Peth, Prayag Raj The Divine Mother is the most powerful force in this world.I have personally experienced that the tears of sorrow can be converted to tears of joy with the Grace of Shakti. And She often uses me as a medium to bring happiness in the lives of people. I use the knowledge of Vedic Shastras, Jyotisha Shastra, Vedas and the subtle and simple remedies prescribed by the Jyotisha Shastra to serve people in distress.


Contact Us
ACHARYA VINOD KUMAR JI
ADYATMIK SEWA MISSION, House No. – 1,
Road No. – 13, Punjabi Bagh Extension,
Near State Bank of India, Club Road, New Delhi.
Mobile: +91-9958633529, +91-9310467616
Phone:   011-49122122
E Mail- guruvinodji@gmail.com
Website- http://www.guruvinodji.com