Skip to content

Commit 6cc53cd

Browse files
authored
removed embedded YT
1 parent 4afff23 commit 6cc53cd

File tree

2 files changed

+66
-5
lines changed

2 files changed

+66
-5
lines changed

BBS.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,15 @@ 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-
{% include embed.html url="https://www.youtube.com/watch?v=nO5vjmDFZa" %}
17+
[BBSDOC](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.
2121

2222
A lot of companies offered public bulletin boards as a way to provide user-support
2323
, universities, libraries, all of them offered some form of interaction.
2424

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

2827
But the Pirate scene offered world-wide connections and software .
2928
I was however not too heavily involved in the illegal software trading but rather
@@ -45,5 +44,4 @@ as a service to connect to them.
4544

4645
There are still BBSes who still run the oldschool way , a real modem on an analog phone line.
4746

48-
You can find a list of Atari specific BBSes here
49-
![ATARIBBS](http://www.sfhqbbs.org/ataribbslist.php)
47+
You can find a list of Atari specific BBSes here [ATARIBBS](http://www.sfhqbbs.org/ataribbslist.php)
+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
---
2+
title: "Advanced examples"
3+
mathjax: true
4+
layout: post
5+
categories: media
6+
---
7+
8+
![Swiss Alps](https://user-images.githubusercontent.com/4943215/55412536-edbba180-5567-11e9-9c70-6d33bca3f8ed.jpg)
9+
10+
11+
## MathJax
12+
13+
You can enable MathJax by setting `mathjax: true` on a page or globally in the `_config.yml`. Some examples:
14+
15+
[Euler's formula](https://en.wikipedia.org/wiki/Euler%27s_formula) relates the complex exponential function to the trigonometric functions.
16+
17+
$$ e^{i\theta}=\cos(\theta)+i\sin(\theta) $$
18+
19+
The [Euler-Lagrange](https://en.wikipedia.org/wiki/Lagrangian_mechanics) differential equation is the fundamental equation of calculus of variations.
20+
21+
$$ \frac{\mathrm{d}}{\mathrm{d}t} \left ( \frac{\partial L}{\partial \dot{q}} \right ) = \frac{\partial L}{\partial q} $$
22+
23+
The [Schrödinger equation](https://en.wikipedia.org/wiki/Schr%C3%B6dinger_equation) describes how the quantum state of a quantum system changes with time.
24+
25+
$$ i\hbar\frac{\partial}{\partial t} \Psi(\mathbf{r},t) = \left [ \frac{-\hbar^2}{2\mu}\nabla^2 + V(\mathbf{r},t)\right ] \Psi(\mathbf{r},t) $$
26+
27+
## Code
28+
29+
Embed code by putting `{{ "{% highlight language " }}%}` `{{ "{% endhighlight " }}%}` blocks around it. Adding the parameter `linenos` will show source lines besides the code.
30+
31+
{% highlight c %}
32+
33+
static void asyncEnabled(Dict* args, void* vAdmin, String* txid, struct Allocator* requestAlloc)
34+
{
35+
struct Admin* admin = Identity_check((struct Admin*) vAdmin);
36+
int64_t enabled = admin->asyncEnabled;
37+
Dict d = Dict_CONST(String_CONST("asyncEnabled"), Int_OBJ(enabled), NULL);
38+
Admin_sendMessage(&d, txid, admin);
39+
}
40+
41+
{% endhighlight %}
42+
43+
## Gists
44+
45+
With the `jekyll-gist` plugin, which is preinstalled on Github Pages, you can embed gists simply by using the `gist` command:
46+
47+
<script src="https://gist.github.com/5555251.js?file=gist.md"></script>
48+
49+
## Images
50+
51+
Upload an image to the *assets* folder and embed it with `![title](/assets/name.jpg))`. Keep in mind that the path needs to be adjusted if Jekyll is run inside a subfolder.
52+
53+
A wrapper `div` with the class `large` can be used to increase the width of an image or iframe.
54+
55+
![Flower](https://user-images.githubusercontent.com/4943215/55412447-bcdb6c80-5567-11e9-8d12-b1e35fd5e50c.jpg)
56+
57+
[Flower](https://unsplash.com/photos/iGrsa9rL11o) by Tj Holowaychuk
58+
59+
## Embedded content
60+
61+
You can also embed a lot of stuff, for example from YouTube, using the `embed.html` include.
62+
63+
{% include embed.html url="https://www.youtube.com/embed/_C0A5zX-iqM" %}

0 commit comments

Comments
 (0)