Skip to content

Commit f7d0b0a

Browse files
committed
2 parents 824ed7a + e837852 commit f7d0b0a

5 files changed

+549
-1
lines changed

html.markdown

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# html
2+
3+
Hyper-Text Markup Language!
4+
5+
---
6+
7+
# your first web page
8+
9+
Save this text as a file:
10+
11+
```
12+
<b>whatever</b>
13+
```
14+
15+
give it a `.html` extension and open your file in a web browser.
16+
17+
---
18+
19+
# more tags:
20+
21+
* `<i>...</i>` - make text italicized
22+
* `<u>...</u>` - underline some text
23+
* `<img src="whatever.png">` - show an image!
24+
25+
---
26+
27+
# div
28+
29+
---
30+
31+
# span
32+
33+
---
34+
35+
# table
36+
37+
---
38+
39+
# form
40+
41+
---
42+
43+
# css
44+
45+
---
46+
47+
# inline style
48+
49+
---
50+
51+
# neocities
52+
53+
You can host your html on neocities for free!
54+
55+
https://neocities.org

javascript.markdown

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# javascript
2+
3+
---
4+
5+
# links
6+
7+
http://jsforcats.com/
8+
9+
# homework
10+
11+
http://nodeschool.io/#javascripting
12+

networks.markdown

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
2+
# networking
3+
4+
What's the difference
5+
6+
How does http, email,
7+
8+
---
9+
10+
# servers and clients
11+
12+
Any networked computer can be a server,
13+
any networked computer can be a client!
14+
15+
---
16+
17+
# servers
18+
19+
server
20+
21+
---
22+
23+
# clients
24+
25+
---
26+
27+
# netcat
28+
29+
---
30+
31+
# http
32+
33+
---
34+
35+
# smtp
36+
37+
---
38+

unix.markdown

+25-1
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,7 @@ The Project Gutenberg EBook of Moby Dick; or The Whale, by Herman Melville
10391039
This eBook is for the use of anyone anywhere at no cost and with
10401040
```
10411041

1042-
Read the first 20 bytes of a file with `head -n3`:
1042+
Read the first 20 bytes of a file with `head -c20`:
10431043

10441044
```
10451045
~ $ head -c20 mobydick.txt
@@ -1599,5 +1599,29 @@ You can change the owner of a file with `chown` and the group with `chgrp`.
15991599

16001600
---
16011601

1602+
# ctrl-c
1603+
1604+
---
1605+
1606+
# ctrl-z
1607+
1608+
---
1609+
1610+
# fg
1611+
1612+
---
1613+
1614+
# processes
1615+
1616+
---
1617+
1618+
# pgrep
1619+
1620+
---
1621+
1622+
# kill
1623+
1624+
---
1625+
16021626
# screen
16031627

0 commit comments

Comments
 (0)