-
Notifications
You must be signed in to change notification settings - Fork 0
/
wd_Education.php
84 lines (81 loc) · 3.6 KB
/
wd_Education.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
//This is a secure page
//Check if the vistor has not logged in
session_start();
if(!$_SESSION['weblogin']) {
//send him to the login.php page with the page variable set to this pages name so he can be sent back
header('Location: wd_Login.php?page=wd_Education');
}
?>
<html>
<head>
<title>Education :: Dallas Designs</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="include/Menu.css" type="text/css" media="screen" />
<link rel="stylesheet" href="include/DallasDesigns.css" type="text/css" media="screen" />
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>
</head>
<body background="images/parchment.gif">
<div id="bodytext" style="position:absolute; width:700px; height:115px; z-index:6; left: 22px; top: 168px;">
<p>As a child, I thought I would make an excellent Architect because I use to
build wonderful cities with my LEGO. After three and half years of Architecture
classes, I took my first programming class in Qbasic. After getting an A+
in the class without much effort, I realized that building with LEGO made
me an excellent programmer instead.</p>
<p> <strong>Schools Attended:<br />
Franklin Institute of Boston</strong> (<strong>1993 - 1995)</strong><br />
- Associate Degree for Architectural Stuructural Drafting Technology<br />
- Dean's list two semesters</p>
<p><strong>Boston Architectural Center (1995 - 1996)</strong></p>
<p> <strong>Wentworth Instutite of Technology</strong> (<strong>1997 - 2002)</strong><br />
- Bachelor Degree for Computer Science<br />
- Certificate for Web Development<br />
- 3.8 GPA</p>
<p><strong>Books Read:</strong><br />
2008 - SAMS Teach yourself ASP.NET in 24 hours <br />
2008 - SAMS Teach yourself Access 2003 in 24 hours<br />
<em>2008 - PackT Publishing</em> -> Smarty <br />
2007 - SAMS Teach yourself CSS in 24 hours<br />
2007 - SAMS Teach yourself Javascript in 24 hours<br />
2005 - SAMS Teach yourself Adobe Creative Suite 2 in 24 hours<br />
2004 - SAMS Teach yourself PHP, MySQL and Apache in 24 hours<br />
</p>
<p><strong>Classes Taken:<br />
<em>Computer Science<br />
</em></strong>- Algorithm Design and Analysis<br />
- Assembly Language & Operating Systems<br />
- Computer Architecture I<br />
- Computer Architecture II<br />
- Computer Graphics Using Java<br />
- Computer Programming with Java<br />
- Computer Science I Using C<br />
- Computer Science II Using C<br />
- Data Base Applicatons<br />
- Data Base Management Systems<br />
- Introduction to Artificial Intelligence<br />
- Introduction to Programming Languages<br />
- Local and Wide Area Networks<br />
- Object Oriented Data Structures Using C++<br />
- Object Oriented Programming Using C++<br />
- Operating Systems <br />
- Software Design and Development<br />
- Systems Analysis & Business Applications<br />
- Technical Communications<br />
- Web Development I Using HTML and Java<br />
- Windows Programming</p>
<p><strong><em>Architecture</em></strong><br />
- ...</p>
</div>
<?php include("include/Top.php"); ?>
<?php include("include/WebMenu.php"); ?>
</body>
</html>