
nandakumar.co.in
Nandakumar Edamana — Apps, Articles, and ResourcesOfficial website of Nandakumar Edamana. Here you can find apps, articles, and other resources from Nandakumar.
http://nandakumar.co.in/
Official website of Nandakumar Edamana. Here you can find apps, articles, and other resources from Nandakumar.
http://nandakumar.co.in/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Wednesday
LOAD TIME
1 seconds
16x16
PAGES IN
THIS WEBSITE
11
SSL
EXTERNAL LINKS
91
SITE IP
192.65.243.96
LOAD TIME
0.983 sec
SCORE
6.2
Nandakumar Edamana — Apps, Articles, and Resources | nandakumar.co.in Reviews
https://nandakumar.co.in
Official website of Nandakumar Edamana. Here you can find apps, articles, and other resources from Nandakumar.
Calculate the Day of the Week Within Seconds (2015)! | Nandakumar Edamana
http://www.nandakumar.co.in/articles/2015/02/day_of_the_week
Calculate the Day of the Week (of Any Date of 2015) Within Seconds! Share this on social media:. Here I am going to show you how simple it is to calculate the day of the week of any date of 2015. You don’t need a paper or a pencil, and you have to memorize nothing except a set of twelve digits (it’s just like recalling a phone number). Given a date, you can tell which day it is within seconds! Just in three steps! Now we get on to the process. Just follow the following algorothm.
തീരം നിഘണ്ടു
http://www.nandakumar.co.in/apps/theeram.html
നന ദക മ ര എടമന. ഓണ ല ന ന ഘണ ട വ ന റ. ഓഫ ല ന പത പ പ. ല സന സ : GNU GPL v3. ഡ ണ ല ഡ (0.2.0). ഗ ന /ല നക സ (ഉബ ണ ട വ ന റ യ മറ റ പ ത യ പത പ പ കള ). 32-ബ റ റ ഇന സ റ റള ഷന ഫയല (.deb). 64-ബ റ റ ഇന സ റ റള ഷന ഫയല (.deb). ഗ ന /ല നക സ (ഉബ ണ ട 12.04, Unity requiring system tray whitelist). 32-ബ റ റ ഇന സ റ റള ഷന ഫയല (.deb). 64-ബ റ റ ഇന സ റ റള ഷന ഫയല (.deb). 32-ബ റ റ പ ക ക ജ. സ പ പ ഫയല . ഡ ണ ല ഡ ച യ ത എക സ ട ര ക റ റ ച യ യ ക; അത ന ള ള ല install.exe പ രവര ത ത പ പ യ ക ക ക). സ ഴ സ ക ഡ (സ പ പ ഫയല ).
OPPAM Python IDE for Blind | Nandakumar Edamana
http://www.nandakumar.co.in/apps/oppam
OPPAM Python IDE for Blind. Python can’t scare you anymore! OPPAM is the acronym for ‘Orca-compatible Python Programming Accessibility Module.’ It is a simple IDE for Python developed exclusively for the blind. Orca had no good support for Python IDEs and that’s why Nandakumar has created a new one with a user-friendly interface. Please read How to Use? OPPAM for 32 bit. OPPAM for 64 bit. GNU/Linux (Ubuntu 12.04 recommended). Now you can hear the output of the program.
Nandakumar Apps
http://www.nandakumar.co.in/apps
പറയ പ ല (en ml). ப ச ம ப ல (en ta). ಮ ತ ಡ ವ ಹ ಗ (en kn). Typing in regional languages is now simple! Here are the various transliteration tools from Nandakumar. Just Type As You Say! Sammaty helps you to conduct computer-aided elections. Even a personal computer can be used as a voting machine! It has been downloaded by thousands of institutions already! Theeram en ml Dictionary. GNU/Linux, Microsoft Windows. English Malayalam Speaking Dictionary! Nirmaayam Calicut University Updates.
പറയുംപോലെ
http://www.nandakumar.co.in/apps/parayumpole.html
ഇ ഗ ല ഷ - മലയ ള (യ ണ ക ഡ ) ഫ ണറ റ ക ട ര ന സ ല റ ററ ഷന ട ള. നന ദക മ ര. Share this on social media:. ഡ ണ ല ഡ and ഇന സ റ റ ള. ഈ വ ബ പ ജ വ റ ത സ വ ച യ ത വച ച ല എപ പ ള വ ണമ ങ ക ല ഓഫ ല ന യ ത റന ന പ രവര ത ത പ പ ക ക . ബ ര സര എക സ റ റന ഷന. മ സ ല ല ഫയര ഫ ക സ ല. ഇന സ റ റ ള ച യ ത പയ ഗ ക ക വ ന ന ആഡ -ഓണ ഇത ഇവ ട. ഇന സ റ റ ള ച യ യ ന ഇവ ട. ആപ ല ക ക ഷന ര പത ത ല. ഗ ന /ല നക സ. ഫയര ഫ ക സ ഓ.എസ . മലയ ള യ ണ ക ഡ ഫ ണ ട കള. Type here in English script:. Copy the Malayalam output from here:. Visit https:/ smc.org.in/fonts/.
TOTAL PAGES IN THIS WEBSITE
11
C Beginner Examples: Swap Two Numbers Using Pointers
http://cstartercodes.blogspot.com/2015/02/swap-two-numbers-using-pointers.html
Monday, February 9, 2015. Swap Two Numbers Using Pointers. Here is the code for swapping two numbers using a function which is based on pointers. The basic concept used is pass by reference. Void swap(int *x, int *y). Tmp = *y;. Printf("Enter two numbers: ");. Scanf("%d%d", &a, &b);. Printf(" nBefore swapping: a = %d and b = %d n", a, b);. Swap(&a, &b);. Printf("After swapping: a = %d and b = %d n", a, b);. Enter two numbers: 10 20. Before swapping: a = 10 and b = 20. After swapping: a = 20 and b = 10.
C++ Beginner Examples: A Note on Compatibility
http://cppstartercodes.blogspot.com/2015/02/a-note-on-compatibility.html
Tuesday, February 10, 2015. A Note on Compatibility. Like languages we use in our daily life, programming languages also have many dialects. Which dialect to follow depends on the compiler you use. In case of C , we have an international standard for it, devised by ISO. This is known as ISO C. What should Turbo C users do. Don't use using namespace std;. You will have to press Alt F5 after program execution in order to see the output. Or you can include conio.h and then write getch();. Cout "Hello, World!
C Beginner Examples: March 2015
http://cstartercodes.blogspot.com/2015_03_01_archive.html
Saturday, March 7, 2015. Calculating the HCF and LCM of two numbers. Here is the program to calculate the Highest Common Factor (HCF - also known as Greatest Common Divisor). And Lowest Common Multiple (LCM). Of two numbers. The code is extremely simple. Unsigned int a, b, i, hcf;. Printf("Enter two positive integers 0: ");. Scanf("%d%d", &a, &b);. For(i=1; i =(a b? Printf(" nThe HCF of %d and %d is %d n", a, b, hcf);. Printf("The LCM of %d and %d is %d n", a, b, ( a*b)/hcf) ;. Chooses the smallest of a.
C Beginner Examples: Number/Currency to Words Conversion
http://cstartercodes.blogspot.com/2015/03/number-to-words-conversion.html
Friday, March 6, 2015. Number/Currency to Words Conversion. This program helps us to convert a number ( 1000) into words. That is, you give 912 and it says 'nine hundred and twelve! 25 February, 2015 */. Updated on 21 October, 2015 */. Char ones[][10] = {"one", "two", "three", "four", "five", "six", "seven", "eight", "nine"};. Char tenAbove[][10] = {"eleven", "twelve", "thirteen", "fourteen", "fifteen", "sixteen", "seventeen", "eighteen", "nineteen"};. Printf("Enter the amount ( 10,000): ");. Amt %= 1000;.
Tech Tips!: Time Machine of the Web!
https://techtipsnan.blogspot.com/2015/02/time-machine-of-web.html
Wednesday, February 11, 2015. Time Machine of the Web! Many characters in science fiction have got the opportunity to travel through time. It is the imaginary tool called time machine. Which helped them to do it. But do you know you can also have this magic journey in real life? The website archive.org. Has a tool named Wayback Machine. Which helps you to browse through the previous states of a particular website. For example, if you want to know how Google looked in past, just type.
C Beginner Examples: Calculating the HCF and LCM of two numbers
http://cstartercodes.blogspot.com/2015/03/calculating-hcf-and-lcm-of-two-numbers.html
Saturday, March 7, 2015. Calculating the HCF and LCM of two numbers. Here is the program to calculate the Highest Common Factor (HCF - also known as Greatest Common Divisor). And Lowest Common Multiple (LCM). Of two numbers. The code is extremely simple. Unsigned int a, b, i, hcf;. Printf("Enter two positive integers 0: ");. Scanf("%d%d", &a, &b);. For(i=1; i =(a b? Printf(" nThe HCF of %d and %d is %d n", a, b, hcf);. Printf("The LCM of %d and %d is %d n", a, b, ( a*b)/hcf) ;. Chooses the smallest of a.
C Beginner Examples: Solution of Quadratic Equation
http://cstartercodes.blogspot.com/2015/02/solution-of-quadratic-equation.html
Thursday, February 12, 2015. Solution of Quadratic Equation. Here is the code for calculating the root(s) of a quadratic equation. Note: compile with -lm option to link with the math library (for sqrt(). Eg: gcc quadratic.c -lm. Printf("Enter the values for a, b, and c: ");. Scanf("%d%d%d", &a, &b, &c);. Disc = (b*b)-(4*a*c); /* discriminant */. If(disc 0) /* Two real roots */. Printf("The solutions are %f and %f n", (-b sqrt(disc) /(2*a), (-b-sqrt(disc) /(2*a) ;. Else if(disc 0) /* Two imaginary roots */.
C++ Beginner Examples: February 2015
http://cppstartercodes.blogspot.com/2015_02_01_archive.html
Sunday, February 22, 2015. Swapping Via Pass-by-Reference and Pass-by-Pointer. There is a function swap. In this code, which we use to swap two numbers. If we define the function as swap(x, y). And call it as swap(a, b). The swapping done in the function will not reflect inside the main function. Why? Because it is pass-by-value. So that the function can handle the original ones. There are two methods in C to accomplish this: 1) pass-by-reference. And call it as swap(a, b). Is known as implicit. Cout "En...
C Beginner Examples: February 2015
http://cstartercodes.blogspot.com/2015_02_01_archive.html
Thursday, February 12, 2015. Solution of Quadratic Equation. Here is the code for calculating the root(s) of a quadratic equation. Note: compile with -lm option to link with the math library (for sqrt(). Eg: gcc quadratic.c -lm. Printf("Enter the values for a, b, and c: ");. Scanf("%d%d%d", &a, &b, &c);. Disc = (b*b)-(4*a*c); /* discriminant */. If(disc 0) /* Two real roots */. Printf("The solutions are %f and %f n", (-b sqrt(disc) /(2*a), (-b-sqrt(disc) /(2*a) ;. Else if(disc 0) /* Two imaginary roots */.
Tech Tips!: Google Eggs!
https://techtipsnan.blogspot.com/2015/02/google-eggs.html
Wednesday, February 11, 2015. Computer also has some Easter eggs! They pop out unexpectedly. Let us hunt some Google Easter Eggs that can be used to amaze ourselves and our friends. In Google and the search page revolves! Will make the search results tilt. Wonder how Google looked in 1998? And the search result comes in an old-fashioned page! To make you computer screen a playground, try. Use the force, luke. In YouTube and the amazement is for you! Subscribe to: Post Comments (Atom).
TOTAL LINKS TO THIS WEBSITE
91
[Breve]
Nandakrenz.Net
Gratis berlangganan artikel nandakrenz.net via mail, join sekarang! Sign up for hot news and sent to your inbox. Friday, June 15, 2012. The module apologizes in a climate. Now that you've added your blog, we need to make sure that you own this blog. Create a new post on your blog. Copy and paste the randomly generated sentence shown above exactly as it is given anywhere in your new post. Publish the new post so that it is viewable at your blog's URL. Thursday, December 22, 2011. The Last Boys Wallpaper.
nandakumar-koroth.blogspot.com
NANDAKUMAR KOROTH
Wednesday, December 26, 2007. NANDAKUMAR KOROTH BORN IN NILESHWAR, THE LAND OF NILAKANDESHWARA. Subscribe to: Posts (Atom). View my complete profile.
nandakumar-nataraj.blogspot.com
SharePoint Traffic!!!
Sunday, September 15, 2013. An unexpected error has occurred" in SharePoint 2010. I just installed latest version of SharePoint Server 2010,then I opened my website I got " an unexpected error occurred. With GUID and i did iisreset but no luck. Finally I followed below steps to fix this issue. Fix in my scenario:. 1I navigated to folder called LOGS in location (C: Program Files Common Files Microsoft Shared Web Server Extensions 14 LOGS) and searched the issue.I found below issue. Http:/ technet.micr...
nandakumar-swatthenewmenaceofpakistan.blogspot.com
SWAT, the new menace of Pakistan
SWAT, the new menace of Pakistan. Friday, February 20, 2009. SWAT, a safe heaven of Taliban. Recently, you might have heard about the peace deal that the Pakistani Government has signed with the Taliban militants, who have occupied a large junk of the North Western Frontier of Pakistan. Today, it is not only Pakistan that is in danger but ultimately it is India which is now pretty much exposed to attack and infiltration from Taliban. This means that the Taliban can attack India without much difficulty.
Nandakumar Edamana — Apps, Articles, and Resources
Welcome to the official service website of Nandakumar Edamana! Here you can find apps, articles, and other resources from Nandakumar. Nandakumar's personal website is nandakumaredamana.in. Two New Blogs with C and C Examples! C source code examples for beginners. C source code examples for beginners, focusing on the Object Oriented approach. Calculate the Day of the Week (of Any Date of 2015) Within Seconds! Typing in regional languages is now simple! പറയ പ ല (en ml). ப ச ம ப ல (en ta).
NandaKumar.com is available at DomainMarket.com
Ask About Special April Deals! What Are the Advantages of a Super Premium .Com Domain? 1 in Premium Domains. 300,000 of the World's Best .Com Domains. Available For Immediate Purchase. Safe and Secure Transactions. 24/7 Customer Support: 888-694-6735. Search For a Premium Domain. Or Click Here To Get Your Own Domains Appraised. Find more domains similar to NandaKumar.com. We are constantly expanding our inventory to give you the best domains available for purchase! Domains Added in the Past Month. That w...
Welcome to the homepage of P. Nanda Kumar - idakka and mridangam artiste
Welcome to the homepage of P. Nanda Kumar. Idakka lessons via skype. Idakka and mridangam artiste. My homepage is devoted to the melodious drum of Kerala known as. My research aims at enlarging the expressive scope and technical possibilities of the idakka in other contexts. This will enable future generations to enjoy this music as part of their living cultural heritage.
Nk – Just Do It
I'm Nandakumar. Developer.Designer. View More About Me. Here are all the resources you need to help make your. Proficient in the realm of iPhone app. ByteSy boasts the quality-rich iOS mobile app. Services on the ground of clients special project needs. Services, ByteSy offers robust and scalable solutions for it. View My Full Portfolio.
nandakumarappsdba.blogspot.com
Nanda's ORACLE Core & APPS Knowledge Base
This site is intend to Share and Exchange ORACLE Core and APPS Knowledge across Global Expertise. Thursday, February 19, 2015. Will come up with my articles.See you.soon. Wednesday, October 17, 2012. Oracle Database 11 g:. Oracle Database 11 g. If you are re gistered user with Oracle, you may obtain the quick reference video fr om this link. Also, Oracle Documentation provides detailed e xplanation of each and every processes and memory structures as per be low diagram. Ref: Oracle Documentation Page.
Vishwas Property Developers - Udupi