-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterests.html
More file actions
44 lines (44 loc) · 2.83 KB
/
interests.html
File metadata and controls
44 lines (44 loc) · 2.83 KB
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
<!DOCTYPE html>
<html>
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-12233647-6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-12233647-6');
</script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>David Webster - Interests</title>
<link href="https://fonts.googleapis.com/css?family=PT+Sans:400,700&display=swap" rel="stylesheet">
<link href='styles.css' rel='stylesheet' type='text/css'>
</head>
<body class="interests">
<header>
<a href="/">Home</a>
<a href="/resume.html">Resume</a>
<a href="/projects.html">Projects</a>
<a href="/personal.html">Personal</a>
<h1><a href="/interests.html">Interests</a></h1>
<a href="/aspirations.html">Aspirations</a>
<a href="/contact.html">Contact</a>
</header>
<section>
<h2>Web App Security</h2>
<p>My interest in web app security developed after working on security enhancements to AMP Capital’s secure client website in 2010. I developed my knowledge in this area at MYOB where I could see the crucial importance of protecting our customers’ business data. I’ve attended a number of OWASP events and a SANS course about Web App Penetration Testing and Ethical Hacking.</p>
<p>I have been involved in the PCI-DSS compliance process for EatNow.com.au, BupaOptical.com.au and MYOB.</p>
</section>
<section>
<h2>Data Science</h2>
<p>I am fascinated by data analysis, machine learning, predictive modelling and artificial intelligence. I don’t have much expertise in this area, but would jump at any opportunity to be involved in it and learn more.</p>
<p>Recently at Menulog I worked on a small lead scoring project using XGBoost.</p>
</section>
<section>
<h2>Performance tuning</h2>
<p>I enjoy improving the efficiency of software. This can make the user interface more responsive, and improve user satisfaction. It can also enable a system to serve a higher volume of traffic, or reduce the running costs of the system’s infrastructure.</p>
<p>At Infosys I spent a lot of time tuning the Oracle SQL queries used for generating reports for Telstra’s Enterprise Program Management system.</p>
<p>At MYOB I did a major refactoring of the application to eliminate a performance bottleneck related to matching bank transactions with journal entries. This allowed us to remove a large number a stored procedures from the database and replace them with much simpler and more efficient code.</p>
<p>At Menulog Group I made use of AWS’s ElastiCache for Memcache to ensure that EatNow could scale to over 200 orders per minute.</p>
</section>
</body>
</html>