Just in case you wondered how fiber optics really work ...
Marks have been published
You can find them here. The last column is where the final mark is. Please remember that each term mark is obtained from attendance(10%), assignments(20%) and exam(90%-70% depending on the correct assignments turned in, 90% if none, 70% if two).
Final mark average is 55%. Nine people failed and twenty one passed the subject.
Marked exams will be published shortly for you to double check the grading process.
Update:
- First term exam is no longer online.
- Second term exam is no longer online. And solved exam is here.
Error Fix (Jun 18): There was an error in the assignments marks, it should be fixed now.
Network security videos
If you want to review some of the basic concepts on network security while practicing your Spanish skills, you want to have a look to these videos.
Google Code Jam 2011
In just a few hours it will start the Qualification Round for CodeJam. CodeJam is an open contest for programmers to show how good they are. Winner can get up to $10.000 in cash.
How to tell if it is blocked in China?
As you may know, some countries do block certain websites "for the own good of their population". It is an activity other countries will call censorship. But ... how do you know if your site is blocked in a given country?
The obvious answer is to ask a local to try your site, but this system, though it works nicely if you know someone there, it may not be practical for some destinations.
Alternatively, you can use services like this one to perform a check on a website from different locations. Of course they have just a few available (some of them in China).
Next week I am going to China and while I was expecting them to be able to see our blog I realized that was not the case because all blogger.com blogs are blocked by the Great Firewall of China. Fortunately, I was able to easily move all the content to a wordpress.com blog that works nicely there.
Fourth (and last) assignment is out
I have prepared a fourth assignment that I expect you all to find it easy (as the last one was challenging for many of you). Again, we are dealing with UDP communication and in this case your job is to create a chat server.
As we did for third assignment, the client program is going to be netcat command (nc).
This last assignment is due by noon on the May 5th, 2011. No late submissions will be accepted. Please remember to do the assignment just by yourself.
By now, you should already know assignment can be downloaded by clicking on the title of this entry, shouldn't you?
Third assignment solution
It seems many of you have found the third assignment frightening or maybe you were too busy with other subjects (or partying?). The success ratio of entries turned-in has been 100% but I know of some students who dropped it after a while.
Please remember the solution provided here (click on this entry title) is just one reference solution for you to study. In fact some of the solutions followed a completely different approach (one thread per pending wake-up).
Of course, "regular expression" parsing is beyond the scope of our subject and it won't be in the exams either.
Marks appear in the "Assignments" tab of the attendance record page.
Scary news
Apparently an attacker obtained valid certificates to the names of several companies including Yahoo and Google. These could later be used to help them distribute fake information and software that would look legit.
Third assignment: Wake on LAN server
For managing the list of pending wake-up requests a hash table (or similar) can make your job easier.
Update: I have added a sample server on the campus network. You can reach it with command nc -u msanchez.upv.es 2323 and it works as the exercise requests. Please note you can only interact with it from inside the campus network, otherwise you'll be blocked by the campus firewall. If you want to use it from your home, please create a VPN connection to the campus network.
You can receive the response by specifying your own IP address and running this other command: nc -ulp 7 on your computer (for this command you'll need administrative rights). Please remember the message is scheduled to be transmitted once the time has passed. If this command is not running before datagram is transmitted then datagram will be lost (it is not queued anywhere).
Update: One small detail is that nc command will add an end-of-line marker (char 0x0a in OSX and Linux) to the text you just typed at the terminal when you press enter key.
Update II (March 9th): An unscheduled power outage left the sample server out of service for a few days. Now it is back online.
World IPv6 Day Test
Next June 8th, several companies have decided to have their websites available for IPv6 traffic too. Click on this entry title to get more information.
1st term marks
All your exams have been marked and you can see the results on the "Exams" tab of the attendance worksheet.
For a limited time, your written exam is available for you to double-check the grading process. If you detect any error, please let me know. If you have any question about marking process or the answers of the solved exam feel free to contact me. Please note that the document below contains all the exams in no specific order, so you may need to scroll down a bit if yours is the last one.
For your own protection, saving or printing this document is not permitted. Nor this document is available to a regular visitor on the hosting service.
For your own protection, saving or printing this document is not permitted. Nor this document is available to a regular visitor on the hosting service.
Solved 1st term exam
You will find below the solved exam. Please have a careful look at the answered provided there and considering your own answers to the written exam, mark your own answers and email me the mark you think you have obtained. Consider only good or bad answers (that will be worth 2% or 0%). Do this as soon as possible (as your memory about your own answers will fade away).
You can get a full-page document view by clicking on this entry title. Do not hesitate contacting me if you find an error on any of the provided answers.
Solved 1st Term2011
Solved 1st Term2011
Solution to 2nd assignment
Time is out. Here you have one solution to the second assignment. Whether you failed it or you are interested on learning how to do it, you can used this code as a reference implementation.
All submissions have been marked. You can see your mark on the attendance page, assignments tab. If you submit your assignment and the mark is missing, please send me an email.
All submissions have been marked. You can see your mark on the attendance page, assignments tab. If you submit your assignment and the mark is missing, please send me an email.
Important reminder
Next Thursday, December 9th, there is a change in the regular class schedule and classes will proceed as if it were a Monday at ETSINF (please note this does not apply to other schools or studies).
We do not have lectures on Mondays but we do have lab sessions. Remember this not to miss anything.
We do not have lectures on Mondays but we do have lab sessions. Remember this not to miss anything.
Attendance rate is declining fast
If you look at the attendance record you'll see that I've added two rows in the bottom showing the total number of attendees on each session and a moving average too.
I can see there is a steep decline in the attendance to the class. Whether this is due to a problem that can be fixed or not I do not know. I just hope you're not given up the subject as still there is one month left. If there is something that needs to be changed in the classroom just talk to me.
Attendance to my office hours is very low too. I just want to remind you that I am here to help and that office hours are part of the instruction.
Sample micro web server
The sample code shows a very basic web server that handles requests one at a time. A text line is printed showing the file requests. Please note the contents to be served has to be in the same folder of the server binary.
BTW, web server listens on port 7777, but you may change that if you wish.
Click on this entry's title to see the code on pastie's page. Please note there is a download link on the upper right corner there.
BTW, web server listens on port 7777, but you may change that if you wish.
Click on this entry's title to see the code on pastie's page. Please note there is a download link on the upper right corner there.
Second assignment

Though you still have two weeks to turn in your first assignment, the second one is published too.
Do not worry because you have till December 20th, 2010.
This time it is a server what you have to do (a multi-threaded server). The good news is that the application protocol is very simple. After connecting to the server, the client may send one line of text containing an arithmetic expression (i.e. 1+2*3/4) and the server will respond with another text line containing the result of evaluating this expression (i.e. 2.5) or an error message if there is something wrong with the client expression.
Client will signal the server its willingness to quit by sending an empty line. Server will provide no other answer to the empty line but closing the connection.
Several clients can be using the server at the same time and all of them need to be served right away.
You can find here the Eval.java mentioned on the assignment text.
Subscribe to:
Posts (Atom)
