Skip to main content

useful python links

http://www.tutorialspoint.com/python/index.htm

http://www.cs.usfca.edu/~afedosov/qttut/

http://www.python-course.eu/python3_course.php

http://docs.python.org/release/3.0.1/tutorial/

http://docs.python-guide.org/en/latest/index.html

http://www.learnpython.org/

http://www.codecademy.com/#!/exercises/0

http://learnpythonthehardway.org/book/

http://www.dreamincode.net/forums/forum/133-python-tutorials/

http://code.google.com/edu/languages/google-python-class/introduction.html

http://www.py4inf.com/   ( Python for Informatics)

http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-00-introduction-to-computer-science-and-programming-fall-2008/video-lectures/   <--- uses python 2.x  (video class lectures)

http://www.youtube.com/user/themonkeylords?feature=results_main   (python video tutorials - haven't watched any, so don't know how good they are)

http://thenewboston.org/list.php?cat=36

http://www.lynda.com/Python-3-tutorials/essential-training/62226-2.html  (python video tutorials - haven't watched any, so don't know how good they are)

http://code.activestate.com/recipes/langs/python/ (Popular Python recipes)

http://www.upriss.org.uk/python/PythonCourse.html (from Tyler Fowler - thanks!)

http://thinkcspy.appspot.com/build/index.html

http://codingbat.com/ 

Comments

Popular posts from this blog

கட்டற்றமென்பொருள் பற்றிய மாத மின்இதழ்

உலகெங்கிலும் உள்ள தமிழ் மக்களுக்கு கணினிதொழில்நுட்பத்தை பற்றி அறிமுகம் செய்யும் கணியம் என்ற புதிய மாத மின்னிதழை வெளியிடுவதில் பெருமகிழ்ச்சி அடைகிறோம். கணினி கற்க ஆங்கிலம் தடையாக இருந்த காலம் மாறி தொழில்னுட்பங்கள் யாவும் தமிழில் பெருகும் இந்த காலத்தில் மென்பொருள் பற்றிய நுட்பங்களை தமிழில் வழங்குவதில் பெருமை கொள்கிறோம். இந்த இதழின் கட்டுரைகள் : கட்டற்ற மென்பொருள் லினக்ஸ் பயனர் குழு – ஓர் அறிமுகம் உபுண்டு நிறுவுதல்

விண்டோஸை விட லினக்ஸ் சிறந்தது: பத்து காரணங்கள்

லினக்ஸ் பயன்படுத்த கடினம், விண்டோஸே சிறந்தது என கருதுபவர்களுக்காக 1. வைரஸ் அபாயம் கிடையாது: ஆம். பொரும்பாலான வைரஸ் நிரல்கள் விண்டோஸிற்காக எழுதப்படுபவை. லினக்ஸால் win32  நிரல்களை  செயல்படுத்த முடியாது. எனவே வைரஸ் வரும் என்ற கவலை வேண்டாம். 2. திற-மூலமென்பொருள் - விண்டோஸ் போல் அல்லாமல் லினக்ஸ் ஆனது திற-மூல-இயங்குதளம்(open-source).  எனவே நம்முடைய தேவைக்கு ஏற்ப நாம் இதனை மாற்றவே, பிறருக்கு அளிக்கவோ முழு சுதந்திரம் உண்டு.

ARP/RARP full simulation program

server.c #include "stdio.h" #include "stdlib.h" #include "string.h" #include "sys/types.h" #include "sys/socket.h" #include "arpa/inet.h" #include "netinet/in.h" #define SA struct sockaddr struct IPmac { char ip[100]; char mac[100]; }; int main() { int sockfd,len,i; struct sockaddr_in servaddr; char buff[30],temp[30],ip[30],mac[30];