-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (107 loc) · 5 KB
/
index.html
File metadata and controls
124 lines (107 loc) · 5 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="google-signin-scope" content="https://www.googleapis.com/auth/plus.login" />
<link href='https://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print" />
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>Dopt.github.com by dopt</title>
<!--G+ test -->
<script src="https://apis.google.com/js/client:platform.js" async defer></script>
<script>
function signinCallback(authResult) {
if (authResult['status']['signed_in']) {
// Update the app to reflect a signed in user
// Hide the sign-in button now that the user is authorized, for example:
document.getElementById('signinButton').setAttribute('style', 'display: none');
} else {
// Update the app to reflect a signed out user
// Possible error values:
// "user_signed_out" - User is signed-out
// "access_denied" - User denied access to your app
// "immediate_failed" - Could not automatically log in the user
console.log('Sign-in state: ' + authResult['error']);
}
}
</script>
</head>
<body>
<header>
<div class="inner">
<h1>Dopt.github.com</h1>
<h2>Dopt's application pages</h2>
<a href="https://github.com/dopt" class="button"><small>Follow me on</small>GitHub</a>
</div>
</header>
<div id="content-wrapper">
<div class="inner clearfix">
<section id="main-content">
<h3>Welcome to Dopt's application Pages.</h3>
<p>Hello people.<br/>
This is a page where I will be posting my side-projects, mostly using HTML5 and javascript as tools.<br/>
The projects include any types of application, mostly:<br/>
<pre>
<code>
Notes
Games
Drawings
...
</code>
</pre>
</p>
<h3>Time to change!</h3>
<p>
Early August of 2013, this is the first time I develop an android app. It's really convenient and many library
to be used. However, the emulator that used in Eclipse is too slow to response! I think most probably is my
laptop's speed problem. So, I'm forced to use real device(my phone) to test and run the app. It's a good idea
if didnt't used long. The phone is auto charged when plug-in USB cable in laptop, so the phone is charged
even it's 100% full, which makes me worry that the phone's battery will be spoiled and battery's life span
will be shortened.<br/> A good platform but troublesome to choose AVD or real device to test apps.
</p>
<h3>Why use dopt?</h3>
<p>
It's not actually my real name. Dopt is the first satisfying name that I use to generate by codes using C++.<br/>
Maybe I will use a better algorithm to create a cooler name, and replace it. Not that soon anyway.
</p>
<h3>Authors and Contributors</h3>
<p>I'm a Computer Science university student, who likes cool stuff and people, and can be awkward with people I know.<br/>
Logic, Maths is my favourite things that motivates me to move on, but sometimes is getting lazy, especially something that I'm not interested to.<br/>
Mystery cases and psychology have also influence me quite a bit.<br/>
Feel free to give me suggestions, or ideas of making new web-application, I will response to it as soon as I could.
</p>
<h3>Support or Contact</h3>
<p>Have any suggestions or questions? Leave a message to me at k_kenny21@hotmail.com</p>
</section>
<aside id="sidebar">
<span id="signinButton">
<span
class="g-signin"
data-callback="signinCallback"
data-clientid="874510693303-7o59bevggisqk9ql83usv1n9e8ufgsvj.apps.googleusercontent.com"
data-cookiepolicy="single_host_origin"
data-requestvisibleactions="http://schema.org/AddAction"
data-scope="https://www.googleapis.com/auth/plus.login">
</span>
</span>
<p>HTML5 apps</p>
<a href='http://dopt.github.com/Linker/index.html'>Linker</a><br/>
<a href='http://dopt.github.com/WhatsNext/index.html'>What's Next</a><br/>
<br/>
<p>Qt apps</p>
<a href='http://qt-apps.org/content/show.php/Planner?content=153299'>Planner</a><br/>
<a href='http://qt-apps.org/content/show.php/Maze+Builder?content=153431'>Maze Builder</a><br/>
<br/>
<p>Android apps</p>
<a href='http://slideme.org/application/note-tify'>Note-tify</a><br/>
</aside>
</div>
</div>
</body>
</html>