-
Notifications
You must be signed in to change notification settings - Fork 1
/
kloudless.html
102 lines (90 loc) · 3.69 KB
/
kloudless.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
<!DOCTYPE html>
<html>
<head>
<title>Daniel Ming-Xue Li</title>
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="icon" type="image/png" href="images/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="images/favicon-16x16.png" sizes="16x16" />
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="slick/slick.css"/>
<link rel="stylesheet" type="text/css" href="slick/slick-theme.css"/>
<meta name=viewport content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
</head>
<body>
<div class="nav">
<nav class="menu">
<ul>
<li><a href="index.html"><i class="fa fa-home fa-2x"></i></a></li>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="resume.html">RESUME</a></li>
</ul>
</nav>
</div>
<div class="bio">
<a href="https://developers.kloudless.com/">
<img src="images/kloudless.png" class="profile-pic">
</a>
<div class="name section">
<h1>Kloudless</h1>
<h2>Software Engineer Intern</h2>
</div>
</div>
<div class="about">
<div class="single-item">
<img src="images/kloudless_1.png" class="small-pic">
<img src="images/kloudless_2.png" class="small-pic">
<img src="images/kloudless_3.png" class="small-pic">
<img src="images/kloudless_4.png" class="small-pic">
<img src="images/kloudless_5.png" class="small-pic">
</div>
<br>
<p>As an intern at <a href="https://developers.kloudless.com/">Kloudless</a> during the summer of 2014, I built a sample application with Kloudless' newly released API. Kloudtransfer is a web app that copies data on demand from any cloud service from one individual to another. It gathers your data on all cloud storage platforms into one place, giving you the whole picture in a way that's easy to understand and take advantage of.
<br>
<br>
Check the app out <a href="http://kloudtransfer.herokuapp.com/">here</a> and the public repo <a href="https://github.com/lilshim/kloudtransfer">here</a>!</p>
</p>
<br>
<h2>Technologies</h2>
<a href="https://developers.kloudless.com/docs/latest">
<img src="images/kloudless.png" class="profile-pic"></img>
</a>
<a href="https://www.djangoproject.com/">
<img src="images/django.png" class="profile-pic"></img>
</a>
</div>
<div class="nav-projects">
<a class="prev" href="phc.html">
<div class="icon">
<i class="fa fa-arrow-left"></i>
</div>
</a>
<a class="next" href="rescomp.html">
<div class="icon">
<i class="fa fa-arrow-right"></i>
</div>
</a>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script type="text/javascript" src="slick/slick.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.single-item').slick({
dots: true,
arrows: true,
});
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-73148124-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>