Skip to content

Commit 53668a8

Browse files
committed
readme
1 parent ae2670c commit 53668a8

File tree

4 files changed

+608
-24
lines changed

4 files changed

+608
-24
lines changed

LICENSE.txt

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2012 Rasmus Andersson <http://rsms.me/>
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in
11+
all copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

README.md

+7-24
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# peertalk
22

3-
An iOS and OS X Cocoa library for communicating over USB and TCP.
3+
PeerTalk is a iOS and OS X Cocoa library for communicating over USB and TCP.
44

5-
Highlights:
5+
#### Highlights
66

77
1. Provides you with USB device attach/detach events and attached device's info
88

@@ -14,6 +14,8 @@ Highlights:
1414

1515
4. Tested and designed for libdispatch (aka Grand Central Dispatch).
1616

17+
Grab the goods from [https://github.com/rsms/peertalk](https://github.com/rsms/peertalk)
18+
1719

1820
## Getting started
1921

@@ -27,27 +29,8 @@ Suck down the code and open *peertalk.xcodeproj* in Xcode 4.3 or later on OS X 1
2729

2830
3. Connect your iOS device (iPhone, iPod or iPad) and kill the iPhone simulator and go back to Xcode. Select the "Peertalk iOS Example" target for your connected iOS device. Hit Cmd+R (Product → Run) to build and run the sample app on your device.
2931

30-
It _should_ work. Video demo: [http://www.youtube.com/watch?v=kQPWy8N0mBg](http://www.youtube.com/watch?v=kQPWy8N0mBg)
31-
32-
33-
## License (MIT)
34-
35-
Copyright (c) 2012 Rasmus Andersson <http://rsms.me/>
36-
37-
Permission is hereby granted, free of charge, to any person obtaining a copy
38-
of this software and associated documentation files (the "Software"), to deal
39-
in the Software without restriction, including without limitation the rights
40-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
41-
copies of the Software, and to permit persons to whom the Software is
42-
furnished to do so, subject to the following conditions:
32+
It _should_ work.
4333

44-
The above copyright notice and this permission notice shall be included in
45-
all copies or substantial portions of the Software.
34+
Demo video: [http://www.youtube.com/watch?v=kQPWy8N0mBg](http://www.youtube.com/watch?v=kQPWy8N0mBg)
4635

47-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
48-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
49-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
50-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
51-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
52-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
53-
THE SOFTWARE.
36+
<iframe width="880" height="530" src="http://www.youtube.com/embed/kQPWy8N0mBg?hd=1&amp;rel=0" frameborder="0" allowfullscreen></iframe>

etc/style.css

+169
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,169 @@
1+
html {
2+
background: white;
3+
color: black;
4+
font: 16px/1.4 helvetica, arial, sans-serif;
5+
}
6+
body {
7+
display:block;
8+
margin: 0 auto;
9+
width: 800px;
10+
}
11+
12+
h1,h2, h4,h5 {
13+
-webkit-font-smoothing: antialiased;
14+
text-rendering: optimizelegibility;
15+
}
16+
h1,h2,h3,h4,h5 {
17+
margin-top:1.618em;
18+
}
19+
20+
h1 { color: #333; }
21+
h2 { color: #222; }
22+
h3 { color: #333; }
23+
h4 { color: #666; }
24+
25+
a:link, a:active, a:visited { color: #0D2681; text-decoration:none; }
26+
a { text-decoration:none; }
27+
a:link, a:active { color:#316d96; }
28+
a:visited { color:#7e5494; }
29+
a:link:hover, a:active:hover, a:visited:hover { text-decoration:underline; }
30+
a:link:hover, a:active:hover { color:#006be4; }
31+
a:visited:hover { color:#af00cf; }
32+
a > img { margin-bottom:-1px; }
33+
a.img { border:none; background:transparent !important; }
34+
35+
h1 a,h2 a,h3 a,h4 a,h5 a {
36+
color:inherit !important;
37+
}
38+
39+
blockquote {
40+
border-left: 4px solid #E68E88;
41+
padding-left: 1em;
42+
margin-right: 1em;
43+
margin:0 1em 0 0;
44+
color: #664E4A;
45+
font-style: italic;
46+
}
47+
48+
code, pre, tt, samp { font-family: 'Droid Sans Mono', 'Menlo', monospace; }
49+
code, pre { background-color: #f0f0f0; }
50+
code { color: inherit; }
51+
pre {
52+
color: #555;
53+
border-left: 2px solid #ddd;
54+
font-weight: lighter;
55+
padding: 1em;
56+
line-height:1.4;
57+
overflow-x: hidden;
58+
text-wrap: avoid;
59+
white-space: pre-wrap;
60+
}
61+
pre code {
62+
}
63+
64+
:target {
65+
background-color:#FFFCB9;
66+
border-top-color:#F1E485;
67+
}
68+
69+
span.str { color: #080; }
70+
span.kwd { color: #295AA4; }
71+
span.com { color: #999; }
72+
span.typ { color: #808; }
73+
span.lit { color: #066; }
74+
span.pun, span.opn, span.clo { color: #660; }
75+
span.pln { color: inherit; }
76+
span.tag { color: #008; }
77+
span.atn { color: #606; }
78+
span.atv { color: #080; }
79+
span.dec { color: #606; }
80+
/* Use higher contrast and font-styling for printable form. */
81+
@media print {
82+
span.str { color: #060; }
83+
span.kwd { color: #006; font-weight: bold; }
84+
span.com { color: #999; font-style: italic; }
85+
span.typ { color: #404; font-weight: bold; }
86+
span.lit { color: #044; }
87+
span.pun, span.opn, span.clo { color: #440; }
88+
span.pln { color: #000; }
89+
span.tag { color: #006; font-weight: bold; }
90+
span.atn { color: #404; }
91+
span.atv { color: #060; }
92+
}
93+
94+
#content h1 {
95+
text-align:center;
96+
padding-top:1em;
97+
margin-top:1em;
98+
}
99+
#content h1 a {
100+
display:block;
101+
}
102+
103+
h2 {
104+
border-top: 2px solid #ddd;
105+
padding-top:0.5em;
106+
margin-top: 3em;
107+
}
108+
109+
h3 {
110+
font-family: 'Droid Sans Mono', 'Menlo', monospace;
111+
font-weight: normal;
112+
color: black;
113+
line-height:1.5;
114+
padding:0;
115+
display:inline-block;
116+
border-radius: 4px;
117+
-webkit-border-radius: 4px;
118+
-moz-border-radius: 4px;
119+
margin-bottom:0;
120+
}
121+
h3 a {
122+
display: block;
123+
text-indent:-2em;
124+
padding:0.2em 0.4em;
125+
padding-left:2.4em;
126+
border-left: 0.2em solid #7B77E3;
127+
margin-left:-0.6em;
128+
}
129+
h3 .dimmed {
130+
color:#5260A1;
131+
}
132+
h3 a:hover {
133+
text-decoration: none !important;
134+
background: #F0F6FD;
135+
}
136+
137+
.footnote { color: #525151; }
138+
.footnote:before { color: #525151; }
139+
.footnote:after { color: #525151; }
140+
div.footnotes { background: #F0F0F0; }
141+
142+
footer {
143+
display:block;
144+
color: #999;
145+
padding:1em 0;
146+
margin-top:5em;
147+
border-top:1px solid #ddd;
148+
}
149+
150+
#logo {
151+
cursor: default;
152+
}
153+
#logo div {
154+
font: bold 50px/70px helvetica, arial, sans-serif;
155+
text-align:center;
156+
/*-webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.2);*/
157+
}
158+
159+
#github-banner img {
160+
position: absolute; top: 0; right: 0; border: 0;
161+
}
162+
163+
/* iPhone */
164+
@media only screen and (max-device-width: 480px) {
165+
html { font-size: 22px; }
166+
code { font-size:16px; font-weight:normal; color:#222; }
167+
#github-banner img { width:220px; height:220px; }
168+
#logo { zoom:1.5; }
169+
}

0 commit comments

Comments
 (0)