Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~481 People Reached
Favorite Forums
Favorite Tags
Member Avatar for morpheus063

Hi All, I am trying to follow the CS106B: Programming Abstractions to learn C++ ([url]http://www.stanford.edu/class/cs106b/[/url]) . As part of the practice, I have to configure Visual Studio to include the custom libraries. I followed the instructions availble at the following location: [URL="http://www.stanford.edu/class/cs106b/handouts/02-Getting-Started.pdf"]http://www.stanford.edu/class/cs106b/handouts/02-Getting-Started.pdf[/URL] [URL="http://www.stanford.edu/class/cs106b/handouts/07P-Downloading-Visual-Studio.pdf"]http://www.stanford.edu/class/cs106b/handouts/07P-Downloading-Visual-Studio.pdf[/URL] [URL="http://www.stanford.edu/class/cs106b/handouts/08P-Using-Visual-Studio-2008.pdf"]http://www.stanford.edu/class/cs106b/handouts/08P-Using-Visual-Studio-2008.pdf[/URL] Can anybody guide me how I …

Member Avatar for onenoc
0
380
Member Avatar for morpheus063

Hi All, Newbie here - I am trying to write a program that will list out all the URL's from a webpage which I was able to successfully complete using the following script: [CODE] import urllib, urllister urladdr = raw_input("Enter URL here: ") usock = urllib.urlopen(urladdr) parser = urllister.URLLister() parser.feed(usock.read()) …

Member Avatar for woooee
0
101