How does I c++?
Name:
Anonymous
2008-03-04 18:26
`Sup /prog/
What would one use to open a specific web page via c++?
Or more specifically, several web pages?
Name:
Anonymous
2008-03-04 18:39
a library
Name:
Anonymous
2008-03-04 18:40
:<
Name:
Anonymous
2008-03-04 18:44
a bookstore
Name:
Anonymous
2008-03-04 18:45
Forget it, it's NP-complete.
Name:
Anonymous
2008-03-04 19:46
What does one mean by "open" a web page?
Name:
Anonymous
2008-03-04 20:39
a web browser
Name:
Anonymous
2008-03-04 21:13
Read SICP
Name:
Anonymous
2008-03-05 12:21
popen("wgeturl -O -", "r")
Name:
Anonymous
2008-03-05 12:27
Read ``Opening web-pages with Sepples, edition the second''
Name:
Anonymous
2008-03-05 16:15
You would implement an HTTP client. Read the RFC.
Name:
Anonymous
2008-03-05 18:26
import urllib
sock = urllib.urlopen(url)
print sock.read()
Name:
Anonymous
2008-03-05 18:35
>>12
Invalid language encountered: expected "Sepples" at line 1
Name:
Anonymous
2008-03-05 21:21
Read, ``Sam's teach yourself opening web-pages with Sepples'' (Third Edition)