changeset 0:6350f0679d6d

initial import
author Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
date Fri, 11 Jan 2008 20:57:40 -0500
parents
children 1fddcdbf9acc
files .hgignore Makefile slideshow.tex
diffstat 3 files changed, 84 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.hgignore	Fri Jan 11 20:57:40 2008 -0500
@@ -0,0 +1,8 @@
+\.aux$
+\.dvi$
+\.log$
+\.out$
+\.pdf$
+\.ps$
+\.swp$
+~$
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile	Fri Jan 11 20:57:40 2008 -0500
@@ -0,0 +1,18 @@
+DIAGS=
+
+all: diagrams slideshow
+
+slideshow: slideshow.pdf
+
+slideshow.pdf: slideshow.tex
+	latex slideshow.tex	
+	dvipdf slideshow.dvi
+	#dvipdf -g2700x3450 -r300 slideshow.dvi
+	
+diagrams: $(DIAGS)
+
+%.ps: %.dot
+	dot -Tps $< -o $@
+
+clean:
+	rm -f *~ *.pdf $(DIAGS) *.dvi *.log *.out *.aux
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/slideshow.tex	Fri Jan 11 20:57:40 2008 -0500
@@ -0,0 +1,58 @@
+\documentclass[pdf,contemporain,slideColor,colorBG,accumulate,nototal]{prosper}
+
+%\usepackage{macros-cp}
+
+\title{A Dozen Things about the\\ zArchitecture}
+\subtitle{???}
+\author{Josef ``Jeff'' Sipek}
+\institution{}
+\slideCaption{Dozen Things about zArch}
+
+\begin{document}
+\maketitle
+
+% What is zArch?
+\overlays{1}{
+\begin{slide}{What's zArchitecture?}
+	\begin{itemize}
+		\item IBM System z mainframes (formerly zSeries)
+		\item Descendent of System/390
+		\item ...
+		\item Descendent of System/360
+	\end{itemize}
+\end{slide}}
+
+% Aren't mainframes dead? --- NO!
+%
+% I said that you'd hear a dozen things...this one is your freebie; baker's
+% dozen? :)
+\overlays{2}{
+\begin{slide}{Mainframes?}
+	\fromSlide*{2}{
+	\vspace{1in}
+	\begin{center}
+		No!
+	\end{center}
+	}
+\end{slide}}
+
+%
+%\begin{itemstep}
+%	\item Revert to any revision
+%	\item Track down who changed particular line of code
+%\end{itemstep}
+%
+%\includegraphics{client-server-layout.ps}
+%
+%\onlySlide*{1}{\includegraphics{client-server.ps}} %  - server, client
+%
+
+\overlays{1}{
+\begin{slide}{Q\&A}
+	\vspace{1in}
+	\begin{center}
+		Questions?
+	\end{center}
+\end{slide}}
+
+\end{document}