Skip to content

Commit

Permalink
add lecture08 materials on DNS and SMTP
Browse files Browse the repository at this point in the history
  • Loading branch information
jschauma committed Mar 20, 2012
1 parent a057485 commit 7a0f32a
Show file tree
Hide file tree
Showing 19 changed files with 966 additions and 0 deletions.
80 changes: 80 additions & 0 deletions 08-smtp-dns/Makefile
@@ -0,0 +1,80 @@
# $Id: Makefile,v 1.4 2004/03/30 00:13:57 jschauma Exp $

TARGET = slides
BIBLIO = slides.bib

LATEX = latex
BIBTEX = bibtex
DVIPS = dvips -o
PS2PDF = ps2pdf
PDFTOTEXT= pdftotext

PICTURES= pics/phonebook.eps \
pics/root-servers.eps \
pics/dns-space.eps \
pics/vanilla.eps \
pics/chocolate.eps \
pics/2computers.eps \
pics/2computers-nic.eps \
pics/3computers.eps \
pics/3computers-1.eps \
pics/3computers-2.eps \
pics/routed.eps \
pics/hierarchical-dns.eps \
pics/distributed-database.eps \
pics/resolution.eps \
pics/chicken-egg.eps \
pics/anonymous.eps \
pics/anonymous-tweet.eps


.SUFFIXES: .tex .dvi .ps .pdf .txt .fig .eps .jpg .gif .png

all: ${PICTURES} $(FIGURES) $(TARGET).dvi
# ${BIBTEX} $(TARGET)

show: ${PICTURES} ${TARGET}.dvi
xdvipresent xga ${TARGET}.dvi -paper 25.8x19.3 -geometry 1024x764-0-0

slides: ${PICTURES} #example.knuth.eps example.knuth2.eps example.knuth3.eps

.tex.dvi:
$(LATEX) $<
$(LATEX) $<

.fig.eps:
fig2dev -L eps $< > $@

.jpg.eps:
convert $< $@

.gif.eps:
convert $< $@

.png.eps:
convert $< $@

ps: $(TARGET).dvi $(TARGET).ps

# PS will be upside down - add the following line after each "%%Page: "
# directive:
# 180 rotate -612 -792 translate
.dvi.ps:
$(DVIPS) $@ $<

pdf: $(PICTURES) $(TARGET).dvi $(TARGET).ps $(TARGET).pdf

txt: $(TARGET).dvi $(TARGET).ps $(TARGET).pdf $(TARGET).txt

html:
latex2html $(LATEX2HTMLOPTS) $(TARGET).tex

.ps.pdf:
$(PS2PDF) $< $@

.pdf.txt:
$(PDFTOTEXT) $< $@

clean:
rm -f **.bbl *.blg *.out *.log *.aux *.dvi *.ps *.pdf *.toc *.bak *.lof ${PICTURES}
rm -fr $(TARGET)/
Binary file added 08-smtp-dns/pics/2computers-nic.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 08-smtp-dns/pics/2computers.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 08-smtp-dns/pics/3computers-1.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 08-smtp-dns/pics/3computers-2.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 08-smtp-dns/pics/3computers.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 08-smtp-dns/pics/anonymous-tweet.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 08-smtp-dns/pics/anonymous.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 08-smtp-dns/pics/chicken-egg.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 08-smtp-dns/pics/chocolate.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 08-smtp-dns/pics/distributed-database.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 08-smtp-dns/pics/dns-space.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 08-smtp-dns/pics/hierarchical-dns.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 08-smtp-dns/pics/phonebook.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 08-smtp-dns/pics/resolution.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 08-smtp-dns/pics/root-servers.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 08-smtp-dns/pics/routed.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 08-smtp-dns/pics/vanilla.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7a0f32a

Please sign in to comment.