Skip to content

Commit 4afff23

Browse files
authored
Added embedded YT links
1 parent 89cd6e8 commit 4afff23

File tree

3 files changed

+92
-9
lines changed

3 files changed

+92
-9
lines changed

BBS.md

+5-7
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ or magazines or if you were lucky at a local computer club.
1414
Modems brought connecting from your home to the outside world into existence via
1515
Bulletin Boards.
1616
This very long documentary telling the entire history of BulletinBoards and its origins.
17-
[BBSDOC](https://www.youtube.com/watch?v=nO5vjmDFZa)
17+
{% include embed.html url="https://www.youtube.com/watch?v=nO5vjmDFZa" %}
1818

1919
The systems provide a way to connect with other online users, share/trade knowledge
2020
and files before Napster/Limewire/Kazaa.
@@ -23,12 +23,11 @@ A lot of companies offered public bulletin boards as a way to provide user-suppo
2323
, universities, libraries, all of them offered some form of interaction.
2424

2525
Here is nice more recent documentary about the BBS history and current evolution
26-
[BBSNEW](https://www.youtube.com/playlist?list=PLop3s1hMlSJKXqmuFjK7gbJh2WAyllTTY)
26+
{% include embed.html url="https://www.youtube.com/playlist?list=PLop3s1hMlSJKXqmuFjK7gbJh2WAyllTTY" %}
2727

2828
But the Pirate scene offered world-wide connections and software .
2929
I was however not too heavily involved in the illegal software trading but rather
30-
the demoscene.
31-
[DEMOSCENE](https://en.wikipedia.org/wiki/Demoscene)
30+
the [DEMOSCENE](https://en.wikipedia.org/wiki/Demoscene)
3231

3332
BBSes were accessed using Modems and an analog-telephone line (like a fax) which
3433
ment you had to take into account the cost of calling/dialing a local-area,other-area
@@ -38,8 +37,7 @@ With Ethernet/Internet/Linux rising accessing BBSes moved away from the phone-li
3837
towards TCP/IP, SLIP and other means of connecting.
3938

4039
In recent years the evolution of ESP IoT devices has sparked the creation of Wifi-modems
41-
which basically connect to your serial port like a modem and translate the AT/Hayes
42-
command set [HAYES](https://en.wikipedia.org/wiki/Hayes_AT_command_set)
40+
which basically connect to your serial port like a modem and translate the [HAYES](https://en.wikipedia.org/wiki/Hayes_AT_command_set) command set.
4341
into TCP/IP thus allowing your retro-computer to connect to BBSes via the Internet.
4442

4543
Vice-versa it also allows for Retro-computers to be used as BBSes again by using telnet
@@ -48,4 +46,4 @@ as a service to connect to them.
4846
There are still BBSes who still run the oldschool way , a real modem on an analog phone line.
4947

5048
You can find a list of Atari specific BBSes here
51-
[ATARIBBS](http://www.sfhqbbs.org/ataribbslist.php)
49+
![ATARIBBS](http://www.sfhqbbs.org/ataribbslist.php)

THECELLAR.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on it in February and have the base system running in March 2024.
2020
telnet thecell.ar port 1040
2121

2222
The BBS runs on an Atari MegaSTe
23-
(https://upload.wikimedia.org/wikipedia/commons/0/01/Atari-mega-ste.jpg)
23+
!(https://upload.wikimedia.org/wikipedia/commons/0/01/Atari-mega-ste.jpg)
2424

2525
connected to the internet via a Lantronix Serial-to-Ethernet device.
2626
The Lantronix enable the STe to accept an telnet session and it will translate this to
@@ -43,7 +43,7 @@ or
4343

4444
You can also use your browser to access it via
4545

46-
(http://www.sfhqbbs.org/ftelnet.php?bbsid=36)
46+
![ATARIBBS](http://www.sfhqbbs.org/ftelnet.php?bbsid=36)
4747

4848

4949
## Final Thoughts and Thanks !
+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
---
2+
title: "Markdown examples"
3+
layout: post
4+
---
5+
6+
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
7+
8+
Curabitur pretium tincidunt lacus. Nulla gravida orci a odio. Nullam varius, turpis et commodo pharetra, est eros bibendum elit, nec luctus magna felis sollicitudin mauris. Integer in mauris eu nibh euismod gravida. Duis ac tellus et risus vulputate vehicula. Donec lobortis risus a elit.
9+
10+
11+
## Heading Two (h2)
12+
13+
### Heading Three (h3)
14+
15+
#### Heading Four (h4)
16+
17+
##### Heading Five (h5)
18+
19+
###### Heading Six (h6)
20+
21+
22+
## Blockquotes
23+
24+
### Single line
25+
26+
> My mom always said life was like a box of chocolates. You never know what you're gonna get.
27+
28+
### Multiline
29+
30+
> What do you get when you cross an insomniac, an unwilling agnostic and a dyslexic?
31+
>
32+
> You get someone who stays up all night torturing himself mentally over the question of whether or not there's a dog.
33+
>
34+
> _Hal Incandenza_
35+
36+
## Horizontal Rule
37+
38+
---
39+
40+
## Table
41+
42+
| Title 1 | Title 2 | Title 3 | Title 4 |
43+
|------------------|------------------|-----------------|-----------------|
44+
| First entry | Second entry | Third entry | Fourth entry |
45+
| Fifth entry | Sixth entry | Seventh entry | Eight entry |
46+
| Ninth entry | Tenth entry | Eleventh entry | Twelfth entry |
47+
| Thirteenth entry | Fourteenth entry | Fifteenth entry | Sixteenth entry |
48+
49+
## Code
50+
51+
Source code can be included by fencing the code with three backticks. Syntax highlighting works automatically when specifying the language after the backticks.
52+
53+
````
54+
```javascript
55+
function foo () {
56+
return "bar";
57+
}
58+
```
59+
````
60+
61+
This would be rendered as:
62+
63+
```javascript
64+
function foo () {
65+
return "bar";
66+
}
67+
```
68+
69+
## Lists
70+
71+
### Unordered
72+
73+
* First item
74+
* Second item
75+
* Third item
76+
* First nested item
77+
* Second nested item
78+
79+
### Ordered
80+
81+
1. First item
82+
2. Second item
83+
3. Third item
84+
1. First nested item
85+
2. Second nested item

0 commit comments

Comments
 (0)