forked from knhash/jekyllBear
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
App,Group VC,Multichannel,Custom emoji,Networking,Pricing,FOSS,Normie design | ||
Telegram,yes,yes,yes,centralized,free,no,yes | ||
Mattermost,paid feature,yes,yes,unfederated,freemium,no,no |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
layout: post | ||
title: "Table" | ||
tags: [] | ||
--- | ||
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa | ||
|
||
{% highlight python %} | ||
def bubble_sort(items): | ||
""" Implementation of bubble sort """ | ||
for i in range(len(items)): | ||
for j in range(len(items)-1-i): | ||
if items[j] > items[j+1]: | ||
# Swap! | ||
items[j], items[j+1] = items[j+1], items[j] | ||
{% endhighlight %} | ||
|
||
``` | ||
code test | ||
``` | ||
|
||
`inline code` | ||
|
||
|
||
|App |Group VC |Multichannel|Custom emoji|Networking |Pricing |FOSS|Normie design| | ||
|----------------|------------|------------|------------|-------------|--------|----|-------------| | ||
|Telegram |yes |yes |yes |centralized |free |no |yes | | ||
|Mattermost |paid feature|yes |yes |decentralized|freemium|no |no | | ||
|
||
|
||
{% include csv-table.html data=site.data.chat-apps %} | ||
|
||
|
||
*[VC]: Voice chat / video chat | ||
*[Multichannel]: Whether chatrooms are grouped and managed together, or the app is based on separate group chats, like in a phone app or in IRC. | ||
*[Normie design]: Many apps have the annoying interface style with huge profile pictures and chatroom icons, and speech bubbles in chats. | ||
*[Networking]: Whether the app is centralized, decentralized, or decentralized and federated. | ||
*[FOSS]: Free and open-source |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<table> | ||
{% for row in include.data %} | ||
{% if forloop.first %} | ||
<tr> | ||
{% for pair in row %} | ||
<th>{{ pair[0] }}</th> | ||
{% endfor %} | ||
</tr> | ||
{% endif %} | ||
|
||
{% tablerow pair in row %} | ||
{{ pair[1] }} | ||
{% endtablerow %} | ||
{% endfor %} | ||
</table> |