-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
276 lines (214 loc) · 9.95 KB
/
index.html
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
<!doctype html>
<!--
https://validator.w3.org/nu/#textarea
Document checking completed. No errors or warnings to show.
Wed Apr 26 0:20
-->
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i" rel="stylesheet">
<link
rel="stylesheet"
href="prism-atom-dark.css"
type="text/css"
media="screen"
/>
<script type="text/javascript" src="prism.js"></script>
<script type="text/javascript" src="prism.ruby.js"></script>
<title>C-Lion</title>
<meta name="description" content="C-Lion is a professional software
engineer specializing in full-stack development. C-Lion has
experience designing databases and web applications.">
</head>
<body>
<div class = "about-container">
<ul>
<li><a href="#" class="nav-link">About</a></li>
<li><a href="#code-samples" class="nav-link">Code Snippets</a></li>
<li><a href="#web-apps" class="nav-link">Marketing</a></li>
<li><a href="#skills-and-tools" class="nav-link">Skills & Tools</a></li>
<li class="hire-me"><a href="#hire-me" class="nav-link">HIRE ME</a></li>
</ul>
<div class="about">
<img src="images/me.jpg" alt="A small orange tabby cat is looking into a large oval mirror and sees a huge fully-mained lion." class="me" />
<h1>C-Lion</h1>
<h2>SOFTWARE ENGINEER</h2>
<hr class="grey" />
<p class="bio">
C-Lion is a software developer and HCI designer, specializing
in technical educational software and web applications. After
designing an online math learning center for Mercy College and
teaching online computer science courses for the Michigan Jewish Institute,
managing the the technical team for the deployment of a MOOC course
and adminstering the NovoEd site for the Open Doors Group's MOOC course
has been a more recent project.
</p>
<p class="bio"> These software applications are influenced by years of expertise
as an electronics and maintenance technician keeping the runways open at
NYC's JFK and LaGuardia airports and maintaining a fleet of over 500 vehicles
in a high state of readiness for the immediate deployment of a US Army
mobile general hospital. In both cases, there was a constant need for creating
new technical training, both in digital form and "on the job".
</p>
</div>
</div>
<h3 id="code-samples">Code Snippets</h3>
<hr class="yellow" />
<div class="box">
<h4>Graphic Ad Insert</h4>
<p>
This ruby program will prompt the user for a temperature in degrees Celsius and let the user know what the corresponding temperature is in Fahrenheit.
</p>
</div>
<div class="box">
<pre><code class="language-ruby">
def celsius_to_fahrenheit(celsius)
return celsius * 1.8 + 32
end
puts "What is the temperature in Celsius? "
celsius = gets.chomp.to_f
puts "You said the temperature is #{celsius} Celsius."
puts "That means the real temperature is #{celsius_to_fahrenheit(celsius)} Fahrenheit."</code></pre>
</div>
<br class="clear" />
<div class="box">
<pre><code class="language-ruby">
def position(n)
if n == 0
return "Take a new number please. An error has occured and you are not on the wait list yet. "
elsif n > 10 && n < 20
return "You are in #{n}th place on the wait list. "
elsif n % 10 == 1
return "You are in #{n}st place on the wait list. "
elsif n % 10 == 2
return "You are in #{n}nd place on the wait list. "
elsif n % 10 == 3
return "You are in #{n}rd place on the wait list. "
else
return "You are in #{n}th place on the wait list. "
end
end
puts "Enter your ticket number. "
ticket = gets.to_i
puts ticket
puts position(ticket)
</code></pre>
</div>
<div class="box">
<h4>Ordinal Challenge</h4>
<p>
This ruby program will convert a plain number to the ordinal of that number. So for example, if the user enters 2, it will display 2nd. If the user enters 3 it will display 3rd, etc.
</p>
</div>
<br class="clear" />
<div class="box">
<h4>Foo-Bar</h4>
<p>
This ruby program is an adaptation of the classic technical interview problem which displays sequences of the the Foo-Bar pattern.
</p>
</div>
<div class="box">
<pre><code class="language-ruby">
def fooBar(n)
n.times do |n|
n = n + 1
if n % 3 == 0 && n % 5 == 0
puts "FooBar"
elsif n % 3 == 0
puts "Foo"
elsif n % 5 == 0
puts "Bar"
else
puts n
end
end
end
puts "How many times to play? Please enter a number greater than zero. "
times = gets.to_i
puts fooBar(times)
</code></pre>
</div>
<br class="clear" />
<h3 id="web-apps">Marketing</h3>
<hr class="yellow" />
<div class="box">
<h4>Two-sided Full Page Ad <br />
created in Adobe Illustrator</h4>
<img src="images/marketing/graphic-in-illustrator.png" alt="Page one of PDF showing graphic advertisement." class="full-width">
<p>
A full page graphic to advertise a porgram used for full page color insert for distribution in paid newpaper. Graphics were selected by the client. Layout work done in Adobe Illustrator. <a href="images/marketing/graphic-in-illustrator.pdf">Download Graphic (PDF)</a>
</p>
</div>
<div class="box">
<h4>Original Technical Content <br />
for WIMAX web site</h4>
<img src="images/marketing/technical-website-content.png" alt="Page one of PDF showing content example." class="full-width">
<p>
Sample page from original web site content written and used online by Eyal-ACC, a leader in WIMAX technology. I redesigned their website layout and provided approximately 35 pages of original content based on interiews with their subject matter expert and other background material provided by the client. <br /><a href="images/marketing/technical-website-content.pdf">Download Content File (PDF)</a>
</p>
</div>
<br class="clear" />
<div class="box">
<h4>Non technical Blog</h4>
<img src="images/marketing/nontech-blog.png" alt="Screenshot of first page of blog post." class="full-width">
<p>
While working as the system administor for www.Elephant.org.il, a website for the technical writing community, in addition to maintaining site content and assisting with technical upgrades, I prepared and sent out newsletters and wrote blog posts on various topics. <a href="images/marketing/nontech-blog.pdf">Download Blog Post (PDF)</a>
</div>
<div class="box">
<h4>HTML Coded Table</h4>
<img src="images/marketing/html-table.png" alt="Screenshot of html page showing html table with rows of alternating colors." class="full-width">
<p>
Designed and managed a team of four developers to create and document a custome built website. After site was built I was the webmaster for approximately two years, updating hand-coded tables like this one on a quarterly basis. <a href="images/marketing/html-table.pdf">Download HTML display (PDF)</a>
</p>
</div>
<br class="clear" />
<div class="box">
<h4>Business Card Design</h4>
<img src="images/marketing/business-card-design.png" alt="Screenshot of Business card layout using custom logo." class="full-width">
<p>
I used the company logo to design and print and cutout my own business cards.
<br />
<a href="images/marketing/business-card-design.pdf">Download Business Card layout (PDF)</a>
</p>
</div>
<div class="box">
<h4>Custom Logo used to create letterhead</h4>
<img src="images/marketing/logo-for-letterhead.png" alt="Screenshot a documents showing the letterhead." class="full-width">
<p>
I used the company logo to create a more eyecatching letterhead than the one used on the business cards. The quality is a low resolution because the only copy of this version that I saved in on a letter that had to be scanned.<a href="images/marketing/logo-for-letterhead.pdf"> Download letterhead sample(PDF)</a>
</p>
</div>
<br class="clear" />
<h3 id="skills-and-tools">Skills & Tools</h3>
<hr class="yellow" />
<p class="skills-and-tools">
C-Lion grew up in Colorado but traded the mountains for the man-made structures and steel structures of Manhatten long enouch to become proficient in , C and C++ and then ran off to play with airplanes, airconditioners and electronics. Since relocating to the mystical mountain city of Tsfat, it seems there must really be something in the air as living there has resulted in a significate rise of proficiency and expertise in the following programming languages and tools:
</p>
<div class="icons">
<img src="images/tools/github-fa.png" alt="GitHub company Logo." class="icon"/>
<img src="images/tools/slack.png" alt="Slack company logo." class="icon" />
<img src="images/tools/opc.png" alt="Operation Code logo." class="icon"/>
<img src="images/tools/trello.png" alt="Trello logo." class="icon" />
<img src="images/tools/Gitter_logo.png" alt="Gitter company logo." class="icon" />
<img src="images/tools/AzureLogo.png" alt="Microsoft Azure logo." class="icon" />
<br class="clear" />
<img src="images/tools/skills.png" alt="Single picture containing icons for html/css, Ruby, Rails, Algorithms, and Javascript." class="icons" />
</div>
<div class="contact-me" id="hire-me">
<h3 class="contact-headline">Contact</h3>
<hr class="yellow" />
<p class="contact-info">
Currently entertaining new opportunities.
Please get in touch via email:
</p>
<p>
<a href="mailto:[email protected]" class="contact-link">
</a>
</p>
</div>
</body>
</html>