-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
666 lines (603 loc) · 32.1 KB
/
resume.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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
<!DOCTYPE html>
<html>
<!-- Print using Chrome with setting -->
<!-- Custom scale: 79% -->
<!-- Custom margin: top=0.38" & bottom=0.38", left=0.18", right=0.28" -->
<head>
<title>FOO Lye Heng's Resume</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto'>
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"> -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.1.1/css/all.css">
<style>
html,body,h1,h2,h3,h4,h5,h6 {
font-family: "Roboto", sans-serif;
font-size: 11pt;
}
nav {
display: block;
color: #777;
background-color: #f7f7f7;
text-align: center;
padding: 10px 16px;
text-decoration: none;
}
nav a:hover {
color: #f7f7f7;
background-color: #777;
}
.accordion {
background-color: #f7f7f7;
//color: #777;
cursor: pointer;
padding: 10px 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
//font-size: 15px;
transition: 0.4s;
}
.active, .accordion:hover {
background-color: #eee;
}
.accordion:after {
content: '\002B';
color: #777;
font-weight: bold;
float: right;
margin: 0 5px;
}
.active:after {
content: "\2212";
}
.panel {
padding: 0 18px;
//background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
border: solid #bbb 1px;
}
.onlyforprint {
display: none;
}
@media print {
/* For printout - Hide summary, since already show the panel full details. */
button.accordion {
display: none;
}
/* For printout, expand all the hidden panels. */
.panel {
max-height: 600px;
}
.onlyforprint {
display: inline;
}
.onlyforscreen {
display: none;
}
}
</style>
</head>
<body class="w3-light-grey">
<!-- Page Container -->
<div class="w3-content w3-margin-top" style="max-width:1400px;">
<!--
<div class="w3-row-padding">
<nav class="onlyforscreen w3-light-grey w3-text-indigo">
<a href="/">Home</a> |
<a href="/about">About Me</a> |
<a href="/articles">My Articles</a> |
<a href="#top">My Resume</a>
</nav>
</div>
-->
<!-- The Grid -->
<div id="top" class="w3-row-padding">
<!-- Left Column -->
<div class="w3-third">
<div class="w3-white w3-text-grey w3-card-4">
<div class="w3-display-container w3-center">
<!-- <img class="w3-image w3-border w3-padding" src="/assets/img/profilephoto2.jpg" style="padding:4px;width:300;height:300" alt="My Profile Photo"> -->
<img class="w3-image w3-border w3-padding" src="https://diyhideout.tk/assets/img/profilephoto2.jpg" style="padding:4px;width:300;height:300" alt="My Profile Photo">
<div class="w3-display-bottommiddle w3-container w3-text-black">
<h4 class="w3-text-white"></h4>
</div>
</div>
<div class="w3-container">
<h2 class="w3-text-indigo w3-center">FOO Lye Heng</h2>
<p><i class="fa-solid fa-briefcase fa-fw w3-margin-right w3-large w3-text-indigo"></i>Lecturer, Private Tutor and IT Services</p>
<p><i class="fa-solid fa-home fa-fw w3-margin-right w3-large w3-text-indigo"></i>Penang, Malaysia</p>
<p><i class="fa-solid fa-envelope fa-fw w3-margin-right w3-large w3-text-indigo"></i><a href="mailto:lyeheng@gmail.com" target="_blank">lyeheng@gmail.com</a></p>
<p><i class="fa-solid fa-phone fa-fw w3-margin-right w3-large w3-text-indigo"></i><a href="https://wa.me/60164935410" target="_blank">+60-16-4935410</a></p>
<p><i class="fa-solid fa-globe fa-fw w3-margin-right w3-large w3-text-indigo"></i><a href="https://diyhideout.tk/" target="_blank">https://diyhideout.tk/</a></p>
<p><i class="fa-brands fa-linkedin fa-fw w3-margin-right w3-large w3-text-indigo"></i><a href="https://www.linkedin.com/in/lyehengfoo/" target="_blank">www.linkedin.com/in/lyehengfoo/</a></p>
<hr>
<p class="w3-large"><b><i class="fa fa-asterisk fa-fw w3-margin-right w3-text-indigo"></i>Skills</b></p>
<p>Coaching and Tutoring <span class="onlyforprint w3-right">100%</span></p>
<div class="onlyforscreen w3-light-grey w3-round-xlarge w3-small">
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:100%">100%</div>
</div>
<p>Programming & Coding <span class="onlyforprint w3-right">100%</span></p>
<div class="onlyforscreen w3-light-grey w3-round-xlarge w3-small">
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:100%">100%</div>
</div>
<p>Web Development and SEO <span class="onlyforprint w3-right">90%</span></p>
<div class="onlyforscreen w3-light-grey w3-round-xlarge w3-small">
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:90%">90%</div>
</div>
<p>WordPress <span class="onlyforprint w3-right">90%</span></p>
<div class="onlyforscreen w3-light-grey w3-round-xlarge w3-small">
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:90%">90%</div>
</div>
<p>VLSI Physical Design Engineering <span class="onlyforprint w3-right">90%</span></p>
<div class="onlyforscreen w3-light-grey w3-round-xlarge w3-small">
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:90%">90%</div>
</div>
<p>Design Automation & Methodology <span class="onlyforprint w3-right">90%</span></p>
<div class="onlyforscreen w3-light-grey w3-round-xlarge w3-small">
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:90%">90%</div>
</div>
<p>App and Software Development <span class="onlyforprint w3-right">80%</span></p>
<div class="onlyforscreen w3-light-grey w3-round-xlarge w3-small">
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:80%">80%</div>
</div>
<p>IoT and AI Automation<span class="onlyforprint w3-right">80%</span></p>
<div class="onlyforscreen w3-light-grey w3-round-xlarge w3-small">
<div class="w3-container w3-center w3-round-xlarge w3-indigo" style="width:80%">80%</div>
</div>
<hr>
<p class="w3-large w3-text-theme"><b><i class="fa fa-globe fa-fw w3-margin-right w3-text-indigo"></i>Languages (Written)</b></p>
<p>English</p>
<div class="onlyforscreen w3-light-grey w3-round-xlarge w3-small">
<div class="w3-round-xlarge w3-indigo" style="height:16px;width:100%"></div>
</div>
<p>Malay Language</p>
<div class="onlyforscreen w3-light-grey w3-round-xlarge w3-small">
<div class="w3-round-xlarge w3-indigo" style="height:16px;width:90%"></div>
</div>
<hr>
<p class="w3-large w3-text-theme"><b><i class="fa fa-globe fa-fw w3-margin-right w3-text-indigo"></i>Languages (Spoken)</b></p>
<p>English</p>
<div class="onlyforscreen w3-light-grey w3-round-xlarge w3-small">
<div class="w3-round-xlarge w3-indigo" style="height:16px;width:100%"></div>
</div>
<p>Malay Language</p>
<div class="onlyforscreen w3-light-grey w3-round-xlarge w3-small">
<div class="w3-round-xlarge w3-indigo" style="height:16px;width:90%"></div>
</div>
<p>Chinese (Hokkien & Cantonese)</p>
<div class="onlyforscreen w3-light-grey w3-round-xlarge w3-small">
<div class="w3-round-xlarge w3-indigo" style="height:16px;width:75%"></div>
</div>
<br>
</div>
</div>
<br>
<!-- End Left Column -->
</div>
<!-- Right Column -->
<div class="w3-twothird">
<div class="w3-container w3-card w3-white w3-margin-bottom">
<h2 class="w3-text-grey w3-padding-16"><i class="fa fa-suitcase fa-fw w3-margin-right w3-xxlarge w3-text-indigo"></i>Industrial Experience</h2>
<div class="w3-container">
<h5 class="w3-opacity"><b>IT (Information Technology) Services / <a href="https://tagmetech.github.io/" target="_blank">Tagme Tech Solutions @ https://tagmetech.github.io/</a></b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>2017 - <span class="w3-tag w3-indigo w3-round-xlarge">Current</span></h6>
<button class="accordion">Digital Marketing, Web Development, App Development, IoT & AI Automation</button>
<div class="panel">
<p>
Digital Marketing<br>
Web Development Services<br>
Mobile App, WebApp & Software Development<br>
IoT & AI Automation using ESP8266 and Arduino Micro-controllers<br>
Cloud Computing Services (Google Cloud Platform, Amazon Web Services)<br>
</p>
</div>
<hr>
</div>
<div class="w3-container">
<h5 class="w3-opacity"><b>Web Developer / Freelancer.com</b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>2017 - <span class="w3-tag w3-indigo w3-round w3-round-xlarge">Current</span></h6>
<button class="accordion">Web Development, SEO, Graphics Design & Video Editing</button>
<div class="panel">
<p>
Freelancer.com Profile: <a href="https://www.freelancer.com/u/lyehengfoo" target="_blank">https://www.freelancer.com/u/lyehengfoo</a><br><br>
Website Design using advanced Content Management System (CMS) (WordPress, Joomla)<br>
Web Development Frontend (HTML5, CSS, JavaScript, jQuery, BootStrap, W3CSS)<br>
Web Development Backend (PHP, Python, Ruby/Jekyll)<br>
Search Engine Optimization (SEO), Analytics and Website Optimisation.<br>
Professional Graphics Design & Video Editing<br>
</p>
</div>
<hr>
</div>
<div class="w3-container">
<h5 class="w3-opacity"><b>IC Design Engineer (Senior Technical Staff) / Marvell Semiconductor</b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Aug 2010 - Jul 2017</h6>
<button class="accordion">Technical Lead, Physical Design Engineering, Design Automation Tools Development & Design Automation Support</button>
<div class="panel">
<p>
Job responsibilities & key accomplishments:<br>
Technical Lead for Physical Design Enginneering - Back-End custom ASIC chip design lead (both Block level and Full-chip level)
for the United States of America, Japan and China clients<br>
Physical Design Engineeering - ASIC design from Gate-level Netlist to Physical Design and Timing signoff for Design Tapeout
with EDA Tools from Synopsys, Cadence and Mentor Graphics.<br>
Design Automation Tools Development - Enhanced the existing design planning flow (covering die size estimation and cost estimation),
floor-planning, power planning and power estimation for a more accurate early-design planning and quotation purposes.<br>
Design Automation Support - Developed and enhanced the ASIC design flow for front-end and back-end design methodology.<br>
Early Technology Process Node Adopter - Pioneered and worked through various design issues for the early process node adoption (includes new cutting
edge double patterning 16nm FinFET). Enhanced new design flow and methodology for back-end physical design for this new process node.<br>
</p>
</div>
<hr>
</div>
<div class="onlyforprint"> <br> </div>
<div class="w3-container">
<h5 class="w3-opacity"><b>Design Automation Engineer (Technical Staff) / Altera (known as Intel PSG now)</b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Mar 2000 - Aug 2010</h6>
<button class="accordion">Design Automation Technical Lead, Design Methodology Development, EDA Tools Evaluation and Qualification, Backend Tools and Flows Development & Project Management</button>
<div class="panel">
<p>
Job responsibilities & key accomplishments:<br>
Technical Lead for Design Automation - supporting both front-end and back-end IC Design engineers.<br>
Design Automation through scripts/programs (Cadence SKILL, PERL, shell scripting, C++, Python, Tcl).<br>
Design Methodology Development - circuit simulation and verification methodology, power planning and power modeling methodology.<br>
EDA Design Tools evaluation and qualification.<br>
Supported several EDA design tools - Cadence Virtuoso, Synopsys PrimeTime, Synopsys IC Compiler, Synopsys HSpice and
HSIM for design simulation, Synopsys VCS for design verification, DRC and LVS verification tools
(i.e. Synopsys IC Validator and Mentor Graphics Calibre), Apache Redhawk and Cadence LEC (formal verification tool)<br>
Pioneered IP library management and infrastructure development (project release handshake mechanism based on Synchronicity DesignSync).<br>
HardCopy/ASIC backend tools and flows development from scratch.<br>
Cadence SKILL based P-CELL for custom layout drawing - In-house pioneer developer from scratch.<br>
Cadence IC6.1 OpenAccess migration - project technical lead.<br>
Project Management roles supporting Design Automation projects.<br>
</p>
</div>
<hr>
</div>
<div class="w3-container">
<h5 class="w3-opacity"><b>Custom Layout Design Engineer / Altera (known as Intel PSG now)</b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Apr 1998 - Mar 2000</h6>
<button class="accordion">ASIC Physical Design (Custom Layout) & Layout Methodology</button>
<div class="panel">
<p>
Job responsibilities:<br>
ASIC Physical Design (Custom Layout) layout drawing<br>
Layout Floor-planning - Block level and Full-chip level<br>
DRC, LVS and EM verification for the chip design<br>
Layout Design Methodology development and continuous improvement<br>
</p>
</div>
<hr>
</div>
<div class="w3-container">
<h5 class="w3-opacity"><b>Manufacturing Engineer (Photo-Lithography Process) / Seagate Technology</b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>1997 - 1998</h6>
<button class="accordion">Technical Support & Yield Improvement for Photo-Lithography Process</button>
<div class="panel">
<p>
Job responsibilities:<br>
Technical support for photo-lithography process.<br>
Yield improvement for photo-lithography process to achieve 5-Sigma quality.<br>
Supervision for technicians and factory operators.<br>
</p>
</div>
<br>
</div>
</div>
<div class="w3-container w3-card w3-white w3-margin-bottom">
<h2 class="w3-text-grey w3-padding-16"><i class="fa fa-chalkboard-teacher fa-fw w3-margin-right w3-xxlarge w3-text-indigo"></i>Teaching & Coaching Experience</h2>
<div class="w3-container">
<h5 class="w3-opacity"><b>University Lecturer / University of Wollongong, Malaysia (KDU Penang University College)</b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>2022 - <span class="w3-tag w3-indigo w3-round-xlarge">Current</span></h6>
<button class="accordion">Lecturer (part time) for School of Engineering, Computing, and Built Environment, University of Wollongong, Malaysia.</button>
<div class="panel">
<p>
Lecturer (part time) in Department of Computing for School of Engineering, Computing, and Built Environment at University of Wollongong, Malaysia (KDU Penang University College).<br>
<br>
My specializations:<br>
<ul>
<li>Artificial Intelligence & Image Processing</li>
<li>System Fundamentals & Operating System</li>
<li>Computer Networks</li>
<li>ICT, IT & Web Technologies</li>
<li>VLSI & Physical Design (Semiconductor)</li>
<li>Microprocessors and Digital Signal Processing (DSP)</li>
</ul>
<br>
Subjects Currently Teaching at UOWM:<br>
<ul>
<li>Image Processing (Year 3)</li>
<li>System Fundamentals / Advanced Operating System (Year 2)</li>
<li>Fundamentals of Logics and Artificial Intelligence (Year 1 for USM Offshore Programme)</li>
</ul>
</p>
</div>
<hr>
</div>
<div class="w3-container">
<h5 class="w3-opacity"><b>Private Tutor</b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>2016 - <span class="w3-tag w3-indigo w3-round-xlarge">Current</span></h6>
<button class="accordion">Private tutor for Computer Science, ICT/IT and Mathematics for IGCSE, A-Level, SPM and Lower Secondary syllabus.</button>
<div class="panel">
<p>
I am providing Home Tuition and Online Tuition with the following specialized subjects:
<ul>
<li>IGCSE ICT (Information & Communication Technology)</li>
<li>IGCSE Computer Science</li>
<li>IGCSE Mathematics</li>
<li>IGCSE Additional Mathematics</li>
<li>Cambridge A-Level IT (Information Technology)</li>
<li>Cambridge A-Level Computer Science</li>
</ul>
</p>
</div>
<br>
<strong>
Proven Track Records:<br>
I have helped students who were failing their ICT and Maths iniitially. And
after my guidance and coaching for 6 months, they completed their IGCSE ICT
and Mathematics with grade A and A*.<br>
</strong>
<hr>
</div>
<div class="w3-container">
<h5 class="w3-opacity"><b>Volunteer Teacher</b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>2014 - <span class="w3-tag w3-indigo w3-round-xlarge">Current</span></h6>
<button class="accordion">Weekly Dhamma Class (Buddhist Studies) at Mahindarama Buddhist Temple, Penang, Malaysia.</button>
<div class="panel">
<p>
I am currently teaching the Weekly Dhamma Class (Buddhist Studies) at Mahindarama Sunday Pali School,
Mahindarama Buddhist Temple, Penang, Malaysia. Some of the classes that I covered consists
of children from kindergarten and primary school levels.<br>
</p>
</div>
<hr>
</div>
<div class="w3-container">
<h5 class="w3-opacity"><b>Corporate In-House Trainings</b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>1998 - 2017</h6>
<button class="accordion">Training for tools and flows deployment. Coaching as mentors for engineers</button>
<div class="panel">
<p>
Conducted many Corporate In-House Trainings as part of Design Automation Engineer & Physical Design Engineer
job responsibilities. These include:<br>
Training for tool and automation flows' new users as additional service initiative to the companies that I have worked for.<br>
Training for the tool main users (i.e. design engineers) whenever we deployed a new tool or a new automation flow after
I have completed the tool evaluation or developed a new flow or design methodology.<br>
Coaching for new fresh engineers, acting as mentor to them. As a result from these coaching, these new engineers had received
more challenging responsibilities and quicker promotion.
Most notable feedback from 360-degree feebacks that I received during these years of training
and coaching, have had numerous time mentioned that <em>one of my strength has always been my clear,
detailed and focused training/coaching capability</em>.
</p>
</div>
<hr>
</div>
<div class="w3-container">
<h5 class="w3-opacity"><b>Executive Diploma for Electrical & Electronics Technology</b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>2009 - 2010</h6>
<button class="accordion">Taught <em>Micro Processing Systems</em> and <em>Digital Signal Processors</em> modules</button>
<div class="panel">
<p>
I taught the <em>Micro Processing Systems</em> and <em>Digital Signal Processors</em> modules which are part of the
core subjects for the Executive Diploma in Electrical & Electronics Technology.<br>
For this course, I designed all the course materials & assignments for this module based on the course syllabus
proposal directly from UTM.<br>
NOTE: This Executive Diploma Programme is a part of the initiative from University of Technology Malaysia (UTM)
Kuala Lumpur to promote and enable working adults to study part-time for their career advancement.<br>
</p>
</div>
<hr>
</div>
<div class="w3-container">
<h5 class="w3-opacity"><b>Two-Day Course at PSDC for Electronics Higher Diploma.</b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>1999</h6>
<button class="accordion">Taught <em>Designing with MaxPlus-II</em> two-day short course.</button>
<div class="panel">
<p>
I taught <em>Designing with MaxPlus-II</em> (a Two-Day Short Course) at PSDC for Electronics Higher Diploma.<br>
For this course, I had specially tailored all the course materials to align with Higher Diploma syllabus
and ensuring its relevancy to current and future industry needs.<br>
NOTE: This course is a part of Altera/Intel Corporate Social Responsibility (CSR) to promote its free University Program and
exposure to FPGA (Field Programmable gate array) to local higher education centres.<br>
</p>
</div>
<br>
</div>
</div>
<div class="w3-container w3-card w3-white w3-margin-bottom">
<h2 class="w3-text-grey w3-padding-16"><i class="fa fa-certificate fa-fw w3-margin-right w3-xxlarge w3-text-indigo"></i>Education</h2>
<div class="w3-container">
<h5 class="w3-opacity"><b>University Science of Malaysia, Penang, Malaysia</b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>2002-2005</h6>
<p>
Master of Science (MSc) in Computer Science with CGPA 3.5<br>
<em>Major: Computational Intelligence and Image Processing</em><br>
</p>
<button class="accordion">Course Details</button>
<div class="panel">
<p>
Modules Taken:<br>
<ul>
<li>Advanced Distributed Systems Concepts & Design</li>
<li>Advanced Data Communication & Computer Networks</li>
<li>Neural Networks & Genetic Algorithms</li>
<li>Computer Security & Cryptography</li>
<li>Intelligent Document Processing</li>
<li>Computer Vision & Image Processing</li>
</ul>
Research Project: Colour Image Enhancement Technique (Noise Removal For Colour Images)<br>
</p>
</ul>
</div>
<hr>
</div>
<div class="w3-container">
<h5 class="w3-opacity"><b>University of Warwick, Coventry, United Kingdom</b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>1994 - 1997</h6>
<p>
Bachelor of Engineering (BEng) in Computer Systems Engineering<br>
<em>First Class (Honours) Degree</em><br>
Award: <strong>Texas Instrument Prize</strong> for the <em>Best Overall Graduating Student</em> in Computer Systems Engineering for Year 1997.<br>
</p>
<button class="accordion">Course Details</button>
<div class="panel">
<p>
Modules Taken:<br>
<ul>
<li>1st Year Modules - Engineering 1, CSE 2, Computer Systems I, Logic Design, Programming II, Design of Information Structures, Semiconductor Device Electronics & Laboratory, Engineering Laboratory, and Industrial Systems.</li>
<li>2nd Year Modules - Computer Systems II, Introduction to Software Engineering, Concurrent programming concepts, Database Systems, Real-time Systems, Signal Processing, Control and Communication, Engineering Laboratory, Engineering Systems Analysis, Electronic Design I, and Automation and Robotics.</li>
<li>3rd year Modules - VLSI System Design, VLSI Architecture and Algorithms, Digital Signal Processing, Modelling and Simulation, Control I, and Control II.</li>
</ul>
Final Year Project: Hardware Design for Lithographic Pattern Generator (in Semiconductor IC Design)<br>
</p>
</div>
<hr>
</div>
<div class="w3-container">
<h5 class="w3-opacity"><b>MARA Science College, Kuala Lumpur, Malaysia</b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>1992 - 1994</h6>
<p>Cambridge A-Level - 3A's achievement</p>
<p>Subjects: Pure Mathematics, Applied Mathematics & Physics</p>
<hr>
</div>
<div class="w3-container">
<h5 class="w3-opacity"><b>St. Michael's Institution Secondary School, Ipoh, Perak. Malaysia</b></h5>
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>1987 - 1991</h6>
<p>
SPM - 6 A1's and 2 C3's<br>
SRP - 8 A1's<br>
</p>
<br>
</div>
</div>
<div class="w3-container w3-card w3-white w3-margin-bottom">
<h2 class="w3-text-grey w3-padding-16"><i class="fa fa-pen-nib fa-fw w3-margin-right w3-xxlarge w3-text-indigo"></i>Certifications</h2>
<div class="w3-container">
<p>
Google Clould Platform Fundamentals: Core Infrastructure<br>
<em>» Coursera Certified - Jan 2021</em><br>
</p>
<p>
Introduction to Psychology<br>
<em>» Coursera Certified - Jan 2021</em><br>
</p>
<p>
Big Data Integration and Processing<br>
<em>» Coursera Certified - Dec 2020</em><br>
</p>
<p>
Big Data Modelling and Management Systems<br>
<em>» Coursera Certified - Dec 2020</em><br>
</p>
<p>
Graph Analytics for Big Data<br>
<em>» Coursera Certified - Dec 2020</em><br>
</p>
<p>
Introduction to Big Data<br>
<em>» Coursera Certified - Dec 2020</em><br>
</p>
<p>
Machine Learning With Big Data<br>
<em>» Coursera Certified - Dec 2020</em><br>
</p>
<p>
Responsive Website Coding<br>
<em>» Coursera Certified - Nov 2020</em><br>
</p>
<p>
Using Python to Access Web Data<br>
<em>» Coursera Certified - Nov 2020</em><br>
</p>
<p>
Data Analysis Using Python<br>
<em>» Coursera Certified - Sep 2020</em><br>
</p>
<p>
Increase SEO Traffic with WordPress<br>
<em>» Coursera Certified - Sep 2020</em><br>
</p>
</div>
</div>
<div class="w3-container w3-card w3-white w3-margin-bottom">
<h2 class="w3-text-grey w3-padding-16"><i class="fa fa-book fa-fw w3-margin-right w3-xxlarge w3-text-indigo"></i>Technical Papers</h2>
<div class="w3-container">
<p>
Improved Technique for Merging GDSII Files Exported from Cadence DFII Layout Database <br>
<em>» Altera Technical Symposium 2009</em><br>
</p>
<p>
Parasitic Extraction Methodology of Bump Pad Routing<br>
<em>» Altera Technical Symposium 2009</em><br>
</p>
<p>
Structured ASIC Macro Cell Timing Model Characterization using NanoTime<br>
<em>» Synopsys SNUG 2008</em><br>
</p>
<p>
Adaptive Vector Median Filter (AVMF) and Adaptive Vector with Trimmed-Mean Filtering (AVTMF) for Colour Images<br>
<em>» Robotics, Vision and Signal Processing (ROVISP) Conference 2005</em><br>
</p>
<hr>
</div>
</div>
<!-- End Right Column -->
</div>
<!-- End Grid -->
</div>
<!-- End Page Container -->
</div>
<footer class="onlyforscreen w3-container w3-indigo w3-center w3-margin-top">
<p>Find me on social media.</p>
<p>
<a href="https://diyhideout.tk/" target="_blank"><i class="fa-solid fa-globe fa-lg w3-hover-opacity"></i></a>
<a href="https://www.linkedin.com/in/lyehengfoo/" target="_blank"><i class="fa-brands fa-linkedin fa-lg w3-hover-opacity"></i></a>
<a href="https://github.com/lyehengfoo" target="_blank"><i class="fa-brands fa-github fa-lg w3-hover-opacity"></i></a>
<a href="https://www.facebook.com/lyehengfoo" target="_blank"><i class="fa-brands fa-facebook fa-lg w3-hover-opacity"></i></a>
<a href="https://twitter.com/lyehengfoo" target="_blank"><i class="fa-brands fa-twitter fa-lg w3-hover-opacity"></i></a>
</p>
<p>
Powered by <a href="https://github.com/" target="_blank">GitHub</a> and <a href="https://www.w3schools.com/w3css/default.asp" target="_blank">W3.CSS</a> 😊.
</p>
</footer>
<!-- JavaScript -->
<script>
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.maxHeight) {
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
});
}
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-DKESF4DMDC"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-DKESF4DMDC');
</script>
<!-- Default Statcounter code for Lye Heng Foo website http://lyehengfoo.tk -->
<script type="text/javascript">
var sc_project=12520297;
var sc_invisible=1;
var sc_security="24426ba1";
</script>
<script type="text/javascript" src="https://www.statcounter.com/counter/counter.js" async></script>
<noscript><div class="statcounter"><a title="Web Analytics Made Easy - StatCounter" href="https://statcounter.com/" target="_blank"><img class="statcounter" src="https://c.statcounter.com/12520297/0/24426ba1/1/" alt="Web Analytics Made Easy - StatCounter"></a></div></noscript>
<!-- End of Statcounter Code -->
</body>
</html>