-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainPage.html
67 lines (61 loc) · 2.06 KB
/
MainPage.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
<!DOCTYPE html>
<html>
<head>
<title>HASTA Main Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>HASTA Main Page</h1>
<h2>Shared Desktop Setup Using VNC</h2>
<ul>
<li>Setup VNC server
<ol>
<li>Install VNC server here:
<a href="files/VNC-5.1.1-Windows.exe">VNC Server Install File</a>
</li>
<li>Get public IP address</li>
<li>(Optional) Setup port forwarding on router (3389 for RDP, or 5900 for DS)</li>
</ol>
<li>Setup VNC Viewer (remote computer)
<ol>
<li>Install VNC Viewer
<a href="files/VNC-Viewer-5.1.1-Windows-64bit.exe">VNC Viewer Install File</a>
</li>
<li>Use VNC server public IP address found above</li>
</ol>
</li>
</ul>
<h2>Useful tricks for Windows</h2>
<ul>
<li>Managing start up programs: <Strong>start -> shell:startup</Strong>
<ul><li>Or to configure ALL windows start up programs: <Strong>start -> msconfig</Strong></li></ul>
</li>
<li>Useful hardware information about a computer: <Strong>start -> dxdiag</Strong></li>
</ul>
<h2>Github push</h2>
<ul>
<li>Create a new respository on the command line:
<ol><li>touch README.md</li>
<li>git init</li>
<li>git add README.md</li>
<li>git commit -m "first commit"</li>
<li>git remote add origin https://github.com/hasta13/tricks.git</li>
<li>git push -u origin master</li></ol>
</li>
<p><li>Push an existing repository from the command line:
<ol><li>git remote add origin https://github.com/hasta13/tricks.git</li>
<li>git push -u origin master</li></ol>
</li></p>
</ul>
<h3>Useful Links</h3>
<ul>
<li>Programming Q/A forum: <a href="http://stackoverflow.com/">Stack Overflow</a></li>
<li>My first Android game: <a href="https://play.google.com/store/apps/details?id=com.hasta.mastermind2d">Mastermind Game</a></li>
<li>HTML & CSS Tutorials: <a href="http://www.htmldog.com/guides/">HTML Dog</a></li>
<li>link 4 placeholder</li>
</ul>
<h4>
<p><img src="images/CrazyFace.png" width= 25% height= 25% alt="Scaredy Face"></p>
I can read your mind!</h4>
</body>
</html>