changeset 0:199b4a4f57c0

Initial import
author Josef "Jeff" Sipek <jeffpc@josefsipek.net>
date Mon, 07 Aug 2006 02:01:23 -0400
parents
children 713322cfe240
files .hgignore Makefile slideshow.tex
diffstat 3 files changed, 92 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.hgignore	Mon Aug 07 02:01:23 2006 -0400
@@ -0,0 +1,8 @@
+\.aux$
+\.dvi$
+\.log$
+\.out$
+\.pdf$
+\.ps$
+\.swp$
+~$
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile	Mon Aug 07 02:01:23 2006 -0400
@@ -0,0 +1,14 @@
+all: diagrams slideshow handout
+
+slideshow:
+	latex slideshow.tex	
+	dvipdf -g2700x3450 -r300 slideshow.dvi
+	
+handout:
+	latex handout.tex
+	dvipdf -g2700x3450 -r300 handout.dvi
+
+diagrams:
+
+clean:
+	rm -f *~ *.pdf *.ps *.dvi *.log *.out *.aux
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/slideshow.tex	Mon Aug 07 02:01:23 2006 -0400
@@ -0,0 +1,70 @@
+\documentclass[pdf,contemporain,slideColor,colorBG,accumulate,nototal]{prosper}
+
+%\usepackage{macros-cp}
+
+\title{PGP}
+\subtitle{The government is watching you...}
+\author{Josef ``Jeff'' Sipek}
+\institution{}
+\slideCaption{PGP -- Josef ``Jeff'' Sipek}
+
+\begin{document}
+\maketitle
+
+
+% Intro to public key crypto
+%	- what's symetric cryptography?
+%		- caesar cipher example (rot13 variant)
+%		- (a) cypher
+%		- (b) key
+%	- what's asymetric crypto?
+%		- (a) cypher
+%		- (b) 2 keys!
+% PGP/GPG's role
+% 	- why is GPG useful? (for me) / why would I want to use it?
+%		- encrypt documents
+%		- sign documents
+% 	- what do I need to know?
+%		- 
+% 	- how do you use it?
+%		- DEMO: sign a doc
+%		- DEMO: verify sig on a doc
+%		- DEMO: encrypt a doc
+%		- DEMO: decrypt a doc
+%		- There are frontends to make things easier
+% what is keysigning?
+%	- How do you verify who a key belongs to?
+%	- web of trust
+%		- alice/bob/etc. web - built one sig at a time
+%	- 
+% what will happen next month?
+
+
+% What is it?
+\overlays{1}{
+\begin{slide}{What's SCM/VCS?}
+	\begin{itemize}
+		\item Source Code Management
+		\item Version Control Systems
+	\end{itemize}
+\end{slide}}
+
+% What can it do?
+\overlays{3}{
+\begin{slide}{What can it do?}
+	\begin{itemstep}
+		\item Keep revision history
+		\item Revert to any revision
+		\item Track down who changed particular line of code
+	\end{itemstep}
+\end{slide}}
+
+\overlays{1}{
+\begin{slide}{Q\&A}
+	\vspace{1in}
+	\begin{center}
+		Questions?
+	\end{center}
+\end{slide}}
+
+\end{document}