mirror of https://github.com/tildeclub/site.git
Merge branch 'master' into wiki-categories
This commit is contained in:
commit
4c7c9dfe9d
|
@ -13,6 +13,7 @@ index: dep-php index.html
|
||||||
%.html: source/%.md
|
%.html: source/%.md
|
||||||
$(info building $@)
|
$(info building $@)
|
||||||
@$(PANDOC) \
|
@$(PANDOC) \
|
||||||
|
--from markdown+backtick_code_blocks \
|
||||||
--template wiki.tmpl \
|
--template wiki.tmpl \
|
||||||
--lua-filter header-permalinks.lua \
|
--lua-filter header-permalinks.lua \
|
||||||
--highlight-style=custom.theme \
|
--highlight-style=custom.theme \
|
||||||
|
|
|
@ -3,4 +3,4 @@ title: archive.org
|
||||||
category: links
|
category: links
|
||||||
---
|
---
|
||||||
|
|
||||||
archive.org has an archive of tilde.club at http://web.archive.org/web/*/http://tilde.club
|
archive.org has an archive of tilde.club at [http://web.archive.org/web/*/http://tilde.club](http://web.archive.org/web/*/http://tilde.club)
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
---
|
---
|
||||||
title: bashblog
|
title: bashblog
|
||||||
author: deepend / benharri
|
author:
|
||||||
|
- deepend
|
||||||
|
- benharri
|
||||||
category: software
|
category: software
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -13,8 +13,8 @@ in the [tildeverse irc network](https://tilde.chat). the official channel for
|
||||||
~club is `#club`. stop by and say hello!
|
~club is `#club`. stop by and say hello!
|
||||||
|
|
||||||
run `chat` to open [weechat](https://weechat.org) auto-connected to our irc
|
run `chat` to open [weechat](https://weechat.org) auto-connected to our irc
|
||||||
server. try launching [tmux](tmux.html) or [byobu](https://superuser.com/a/423397)
|
server. try launching [tmux](tmux.html), [byobu](https://superuser.com/a/423397)
|
||||||
to keep your chat session running.
|
or [screen](screen.html) to keep your chat session running.
|
||||||
|
|
||||||
other clients like irssi are available as well! just connect to localhost on
|
other clients like irssi are available as well! just connect to localhost on
|
||||||
port 6667 and `/join #club`.
|
port 6667 and `/join #club`.
|
||||||
|
|
|
@ -20,5 +20,4 @@ develop software using the many tools available to you on tilde.club.
|
||||||
|
|
||||||
Tilde.club does cost money to run, however it all makes it worth it if the community is active and enjoying what we offer.
|
Tilde.club does cost money to run, however it all makes it worth it if the community is active and enjoying what we offer.
|
||||||
|
|
||||||
|
|
||||||
ask on irc if you have questions!
|
ask on irc if you have questions!
|
||||||
|
|
|
@ -4,8 +4,8 @@ author: deepend
|
||||||
category: tutorial
|
category: tutorial
|
||||||
---
|
---
|
||||||
|
|
||||||
All users can now setup their own custom 404 error page. Just add a file named 404.html in ~/public_html
|
All users can now setup their own custom 404 error page. Just add a file named `404.html` in `~/public_html`
|
||||||
|
|
||||||
An example of one users custom 404: [~benharri](http://tilde.club/~benharri/not_here).
|
An example of one user's custom 404: [~benharri](http://tilde.club/~benharri/not_here).
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ category: tutorial
|
||||||
`git` is a version control system. It's pretty confusing at first, but
|
`git` is a version control system. It's pretty confusing at first, but
|
||||||
once you sort out what it can do and can't do, it starts to get better.
|
once you sort out what it can do and can't do, it starts to get better.
|
||||||
|
|
||||||
This tutorial is pretty good: http://git-scm.com/docs/gittutorial
|
This tutorial is pretty good: [http://git-scm.com/docs/gittutorial](http://git-scm.com/docs/gittutorial)
|
||||||
|
|
||||||
The best way to learn `git` is to find someone who knows `git` really
|
The best way to learn `git` is to find someone who knows `git` really
|
||||||
well and sort out issues with them. Ask on [IRC](chat.html) if you get
|
well and sort out issues with them. Ask on [IRC](chat.html) if you get
|
||||||
|
|
|
@ -10,7 +10,7 @@ Several tilde.club programs expose APIs essentially by spitting out
|
||||||
JSON as their output, including e.g. the list of recently updated home
|
JSON as their output, including e.g. the list of recently updated home
|
||||||
pages at
|
pages at
|
||||||
|
|
||||||
http://tilde.club/~delfuego/tilde.24h.json
|
[http://tilde.club/~delfuego/tilde.24h.json](http://tilde.club/~delfuego/tilde.24h.json)
|
||||||
|
|
||||||
If you're looking to parse JSON from the command line with a minimum of
|
If you're looking to parse JSON from the command line with a minimum of
|
||||||
code, the `jq` program may be your thing. `jq` is a filter that takes
|
code, the `jq` program may be your thing. `jq` is a filter that takes
|
||||||
|
|
|
@ -5,4 +5,4 @@ category: links
|
||||||
|
|
||||||
`leafnode` is a news client suitable for "leaf" nodes, that is nodes that have no downstream feeds.
|
`leafnode` is a news client suitable for "leaf" nodes, that is nodes that have no downstream feeds.
|
||||||
|
|
||||||
http://leafnode.sourceforge.net/
|
[http://leafnode.sourceforge.net/](http://leafnode.sourceforge.net/)
|
|
@ -148,7 +148,7 @@ Back at our command line, lets type the command `id`:
|
||||||
|
|
||||||
The `id` command is a tool to show us how the system keeps track of us. From this we can see that according to the system, our user ID (or uid) is 501, and our group id is also 501.
|
The `id` command is a tool to show us how the system keeps track of us. From this we can see that according to the system, our user ID (or uid) is 501, and our group id is also 501.
|
||||||
|
|
||||||
- Homework
|
- Homework
|
||||||
- Run `id` in your own directory, then run
|
- Run `id` in your own directory, then run
|
||||||
- Run `id -u root`
|
- Run `id -u root`
|
||||||
- use the `grep` command to find your uid in the `/etc/passwd` file
|
- use the `grep` command to find your uid in the `/etc/passwd` file
|
||||||
|
|
|
@ -5,7 +5,7 @@ category: links
|
||||||
|
|
||||||
``slrn`` is a news reader for [Usenet](usenet-news.html).
|
``slrn`` is a news reader for [Usenet](usenet-news.html).
|
||||||
|
|
||||||
Documentation for slrn can be found at http://slrn.sourceforge.net
|
Documentation for slrn can be found at [http://slrn.sourceforge.net](http://slrn.sourceforge.net)
|
||||||
|
|
||||||
Tilde-specific slrn info is on http://tilde.club/~joeld/slrn.html
|
Tilde-specific slrn info is on [http://tilde.club/~joeld/slrn.html](http://tilde.club/~joeld/slrn.html)
|
||||||
|
|
||||||
|
|
|
@ -6,8 +6,8 @@ category: software
|
||||||
|
|
||||||
On OS X:
|
On OS X:
|
||||||
|
|
||||||
Download the lastest version of OSXFUSE: [http://osxfuse.github.io/](http://osxfuse.github.io/)
|
- Download the lastest version of OSXFUSE: [http://osxfuse.github.io/](http://osxfuse.github.io/)
|
||||||
brew install sshfs
|
- `brew install sshfs`
|
||||||
|
|
||||||
|
|
||||||
Now you can mount a ssh server by issuing the following commands:
|
Now you can mount a ssh server by issuing the following commands:
|
||||||
|
@ -15,12 +15,9 @@ Now you can mount a ssh server by issuing the following commands:
|
||||||
mkdir tilde.club
|
mkdir tilde.club
|
||||||
sshfs jeffbonhag@tilde.club:/home/jeffbonhag tilde.club
|
sshfs jeffbonhag@tilde.club:/home/jeffbonhag tilde.club
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
If you're on Linux and want to make an entry in your fstab:
|
If you're on Linux and want to make an entry in your fstab:
|
||||||
|
|
||||||
mkdir -p /mnt/tilde.club
|
mkdir -p /mnt/tilde.club
|
||||||
|
|
||||||
Put an entry in your `/etc/fstab` like this:
|
Put an entry in your `/etc/fstab` like this:
|
||||||
|
|
||||||
|
@ -33,7 +30,7 @@ then you can do
|
||||||
If you want to use an identity file to mount instead of a password, this may
|
If you want to use an identity file to mount instead of a password, this may
|
||||||
work (untested):
|
work (untested):
|
||||||
|
|
||||||
jeffbonhag@tilde.club:/home/jeffbonhag /mnt/tilde.club fuse.sshfs _netdev,user,idmap=user,transform_symlinks,identityfile=/home/USER_C/.ssh/id_rsa,allow_other,default_permissions,uid=USER_C_ID,gid=GROUP_C_ID,umask=0 0 0
|
jeffbonhag@tilde.club:/home/jeffbonhag /mnt/tilde.club fuse.sshfs _netdev,user,idmap=user,transform_symlinks,identityfile=/home/USER_C/.ssh/id_rsa,allow_other,default_permissions,uid=USER_C_ID,gid=GROUP_C_ID,umask=0 0 0
|
||||||
|
|
||||||
Although -- do you really need to do this? It just occurred to me that the
|
Although -- do you really need to do this? It just occurred to me that the
|
||||||
first command is just as easy, and probably makes more sense.
|
first command is just as easy, and probably makes more sense.
|
||||||
|
|
|
@ -11,5 +11,5 @@ to find the correct timezone name that you'll need to export as the `TZ` environ
|
||||||
for example, if you're in eastern time, add something like this
|
for example, if you're in eastern time, add something like this
|
||||||
`export TZ="America/Detroit"`
|
`export TZ="America/Detroit"`
|
||||||
|
|
||||||
to your `.bashrc` .
|
to your `.bashrc`
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,6 @@ tilde.club via a network that does not allow high UDP ports; with a properly
|
||||||
configured tunnel, you can still run [[mosh]] as your shell and keep on
|
configured tunnel, you can still run [[mosh]] as your shell and keep on
|
||||||
truckin.
|
truckin.
|
||||||
|
|
||||||
https://code.google.com/p/tunnelblick/
|
[https://tunnelblick.net/](https://tunnelblick.net/)
|
||||||
|
|
||||||
To find a VPN endpoint, see the [VPN Gate](vpn-gate.html) project.
|
To find a VPN endpoint, see the [VPN Gate](vpn-gate.html) project.
|
||||||
|
|
|
@ -7,7 +7,7 @@ category: links
|
||||||
evade censorship and filtering by setting up VPN tunnels. It was
|
evade censorship and filtering by setting up VPN tunnels. It was
|
||||||
designed with the Great Firewall of China in mind.
|
designed with the Great Firewall of China in mind.
|
||||||
|
|
||||||
http://www.vpngate.net/en/
|
[http://www.vpngate.net/en/](http://www.vpngate.net/en/)
|
||||||
|
|
||||||
You may need client side software to make this work; [tunnelblick](tunnelblick.html) is one
|
You may need client side software to make this work; [tunnelblick](tunnelblick.html) is one
|
||||||
such service on the Mac.
|
such service on the Mac.
|
||||||
|
|
|
@ -11,19 +11,20 @@ or maybe you just found a typo on one of the existing pages!
|
||||||
follow these steps to submit a change.
|
follow these steps to submit a change.
|
||||||
|
|
||||||
1. grab a copy of the site's source code
|
1. grab a copy of the site's source code
|
||||||
|
```bash
|
||||||
git clone https://github.com/tildeclub/site tilde.club && cd tilde.club/wiki
|
git clone https://github.com/tildeclub/site tilde.club && cd tilde.club/wiki
|
||||||
|
```
|
||||||
|
|
||||||
1. make a new article or update an existing one. make sure that you create the
|
2. make a new article or update an existing one. make sure that you create the
|
||||||
title and author keys in the yaml frontmatter (see an existing article for
|
title and author keys in the yaml frontmatter (see an existing article for
|
||||||
an example)
|
an example)
|
||||||
|
|
||||||
1. submit the code via a PR on github or with git-send-email(1) to root@tilde.club
|
3. submit the code via a PR on github or with git-send-email(1) to root@tilde.club
|
||||||
see [git-send-email.io](https://git-send-email.io) for more info on how to use
|
see [git-send-email.io](https://git-send-email.io) for more info on how to use
|
||||||
it. if you're working locally on tilde.club, you won't have to configure
|
it. if you're working locally on tilde.club, you won't have to configure
|
||||||
anything; git will use the system's sendmail to handle the email.
|
anything; git will use the system's sendmail to handle the email.
|
||||||
|
|
||||||
1. profit???
|
4. profit???
|
||||||
|
|
||||||
ask on irc if you have questions!
|
ask on [irc](chat.html#irc) if you have questions!
|
||||||
|
|
||||||
|
|
|
@ -76,7 +76,9 @@ $highlighting-css$
|
||||||
</nav>
|
</nav>
|
||||||
<hr>
|
<hr>
|
||||||
$endif$
|
$endif$
|
||||||
$body$
|
<!-- unindent body so that code blocks don't have extra indents. See
|
||||||
|
https://stackoverflow.com/questions/42773587/code-block-formatting-issues-with-bootstrap-and-pandoc -->
|
||||||
|
$body$
|
||||||
$for(include-after)$
|
$for(include-after)$
|
||||||
$include-after$
|
$include-after$
|
||||||
$endfor$
|
$endfor$
|
||||||
|
|
Loading…
Reference in New Issue