Bläddra i källkod

gnusocial and emacs

Bob Mottram 9 år sedan
förälder
incheckning
55b11d8294
No account linked to committer's email
2 ändrade filer med 356 tillägg och 148 borttagningar
  1. 32
    0
      doc/EN/usage.org
  2. 324
    148
      website/EN/usage.html

+ 32
- 0
doc/EN/usage.org Visa fil

169
 The DLNA service will only work within your local home network, and isn't remotely accessible from other locations via the internet. That can be both a good and a bad thing. Another consideration is that there are no access controls on DLNA services, so any music or videos on the USB drive will be playable by anyone within your home network.
169
 The DLNA service will only work within your local home network, and isn't remotely accessible from other locations via the internet. That can be both a good and a bad thing. Another consideration is that there are no access controls on DLNA services, so any music or videos on the USB drive will be playable by anyone within your home network.
170
 
170
 
171
 * Microblogging (GNU Social)
171
 * Microblogging (GNU Social)
172
+** Initial setup
172
 To log into your GNU Social site first obtain your username and password from the "microblogging" section of the readme file.
173
 To log into your GNU Social site first obtain your username and password from the "microblogging" section of the readme file.
173
 
174
 
174
 #+BEGIN_SRC bash
175
 #+BEGIN_SRC bash
183
 
184
 
184
 [[file:images/gnusocial_mobile.jpg]]
185
 [[file:images/gnusocial_mobile.jpg]]
185
 
186
 
187
+** Direct Messages (DMs) and privacy
188
+One important point about GNU Social is that although direct messages (DMs) are treated as being private their security is quite poor. If you want real communications privacy then use other systems such as XMPP+OMEMO/OTR, Tox or email with GPG. GNU Social is primarily about /fully public communications/.
189
+** Using with Emacs
190
+If you are an Emacs user it's also possible to set up GNU Social mode as follows:
191
+
192
+#+begin_src bash :tangle no
193
+mkdir ~/elisp
194
+git clone git://git.savannah.nongnu.org/gnu-social-mode ~/elisp/gnu-social-mode
195
+sed -i 's|"http"|"https"|g' ~/elisp/gnu-social-mode/gnu-social-mode.el
196
+sed -i 's|http:|https:|g' ~/elisp/gnu-social-mode/gnu-social-mode.el
197
+sed -i 's|http?|https?|g' ~/elisp/gnu-social-mode/gnu-social-mode.el
198
+echo "(add-to-list 'load-path \"~/elisp/gnu-social-mode\")" >> ~/.emacs
199
+echo "(require 'gnu-social-mode)" >> ~/.emacs
200
+echo "(setq gnu-social-server-textlimit 2000" >> ~/.emacs
201
+echo "      gnu-social-server \"yourgnusocialdomain\"" >> ~/.emacs
202
+echo "	  gnu-social-username \"yourusername\"" >> ~/.emacs
203
+echo "	  gnu-social-password \"gnusocialpassword\")" >> ~/.emacs
204
+#+end_src
205
+
206
+And as a quick reference the main keys are:
207
+
208
+| Key           | Function              |
209
+|---------------+-----------------------|
210
+| i             | Show profile icons    |
211
+| CTRL-c CTRL-s | Post status update    |
212
+| r             | Repeat                |
213
+| F             | Favourite             |
214
+| CTRL-c CTRL-h | Highlight             |
215
+| R             | Reply to user         |
216
+| g             | Show current timeline |
217
+
186
 * Sharing things
218
 * Sharing things
187
 If you have the GNU Social microblogging system installed then it's also possible to share things or services between groups or with particular users. This can be useful for sharing items within a family, club or in a local sharing economy. Sharing things freely, without money, reveals the social basis at the root of all economics which money normally conceals or obscures.
219
 If you have the GNU Social microblogging system installed then it's also possible to share things or services between groups or with particular users. This can be useful for sharing items within a family, club or in a local sharing economy. Sharing things freely, without money, reveals the social basis at the root of all economics which money normally conceals or obscures.
188
 
220
 

+ 324
- 148
website/EN/usage.html Visa fil

3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5
 <head>
5
 <head>
6
-<!-- 2016-06-18 Sat 21:49 -->
6
+<!-- 2016-06-21 Tue 17:51 -->
7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
9
 <title></title>
9
 <title></title>
56
     border: 1px solid black;
56
     border: 1px solid black;
57
   }
57
   }
58
   pre.src:hover:before { display: inline;}
58
   pre.src:hover:before { display: inline;}
59
-  pre.src-sh:before    { content: 'sh'; }
60
-  pre.src-bash:before  { content: 'sh'; }
59
+  /* Languages per Org manual */
60
+  pre.src-asymptote:before { content: 'Asymptote'; }
61
+  pre.src-awk:before { content: 'Awk'; }
62
+  pre.src-C:before { content: 'C'; }
63
+  /* pre.src-C++ doesn't work in CSS */
64
+  pre.src-clojure:before { content: 'Clojure'; }
65
+  pre.src-css:before { content: 'CSS'; }
66
+  pre.src-D:before { content: 'D'; }
67
+  pre.src-ditaa:before { content: 'ditaa'; }
68
+  pre.src-dot:before { content: 'Graphviz'; }
69
+  pre.src-calc:before { content: 'Emacs Calc'; }
61
   pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
70
   pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
62
-  pre.src-R:before     { content: 'R'; }
63
-  pre.src-perl:before  { content: 'Perl'; }
64
-  pre.src-java:before  { content: 'Java'; }
65
-  pre.src-sql:before   { content: 'SQL'; }
71
+  pre.src-fortran:before { content: 'Fortran'; }
72
+  pre.src-gnuplot:before { content: 'gnuplot'; }
73
+  pre.src-haskell:before { content: 'Haskell'; }
74
+  pre.src-java:before { content: 'Java'; }
75
+  pre.src-js:before { content: 'Javascript'; }
76
+  pre.src-latex:before { content: 'LaTeX'; }
77
+  pre.src-ledger:before { content: 'Ledger'; }
78
+  pre.src-lisp:before { content: 'Lisp'; }
79
+  pre.src-lilypond:before { content: 'Lilypond'; }
80
+  pre.src-matlab:before { content: 'MATLAB'; }
81
+  pre.src-mscgen:before { content: 'Mscgen'; }
82
+  pre.src-ocaml:before { content: 'Objective Caml'; }
83
+  pre.src-octave:before { content: 'Octave'; }
84
+  pre.src-org:before { content: 'Org mode'; }
85
+  pre.src-oz:before { content: 'OZ'; }
86
+  pre.src-plantuml:before { content: 'Plantuml'; }
87
+  pre.src-processing:before { content: 'Processing.js'; }
88
+  pre.src-python:before { content: 'Python'; }
89
+  pre.src-R:before { content: 'R'; }
90
+  pre.src-ruby:before { content: 'Ruby'; }
91
+  pre.src-sass:before { content: 'Sass'; }
92
+  pre.src-scheme:before { content: 'Scheme'; }
93
+  pre.src-screen:before { content: 'Gnu Screen'; }
94
+  pre.src-sed:before { content: 'Sed'; }
95
+  pre.src-sh:before { content: 'shell'; }
96
+  pre.src-sql:before { content: 'SQL'; }
97
+  pre.src-sqlite:before { content: 'SQLite'; }
98
+  /* additional languages in org.el's org-babel-load-languages alist */
99
+  pre.src-forth:before { content: 'Forth'; }
100
+  pre.src-io:before { content: 'IO'; }
101
+  pre.src-J:before { content: 'J'; }
102
+  pre.src-makefile:before { content: 'Makefile'; }
103
+  pre.src-maxima:before { content: 'Maxima'; }
104
+  pre.src-perl:before { content: 'Perl'; }
105
+  pre.src-picolisp:before { content: 'Pico Lisp'; }
106
+  pre.src-scala:before { content: 'Scala'; }
107
+  pre.src-shell:before { content: 'Shell Script'; }
108
+  pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
109
+  /* additional language identifiers per "defun org-babel-execute"
110
+       in ob-*.el */
111
+  pre.src-cpp:before  { content: 'C++'; }
112
+  pre.src-abc:before  { content: 'ABC'; }
113
+  pre.src-coq:before  { content: 'Coq'; }
114
+  pre.src-groovy:before  { content: 'Groovy'; }
115
+  /* additional language identifiers from org-babel-shell-names in
116
+     ob-shell.el: ob-shell is the only babel language using a lambda to put
117
+     the execution function name together. */
118
+  pre.src-bash:before  { content: 'bash'; }
119
+  pre.src-csh:before  { content: 'csh'; }
120
+  pre.src-ash:before  { content: 'ash'; }
121
+  pre.src-dash:before  { content: 'dash'; }
122
+  pre.src-ksh:before  { content: 'ksh'; }
123
+  pre.src-mksh:before  { content: 'mksh'; }
124
+  pre.src-posh:before  { content: 'posh'; }
125
+  /* Additional Emacs modes also supported by the LaTeX listings package */
126
+  pre.src-ada:before { content: 'Ada'; }
127
+  pre.src-asm:before { content: 'Assembler'; }
128
+  pre.src-caml:before { content: 'Caml'; }
129
+  pre.src-delphi:before { content: 'Delphi'; }
130
+  pre.src-html:before { content: 'HTML'; }
131
+  pre.src-idl:before { content: 'IDL'; }
132
+  pre.src-mercury:before { content: 'Mercury'; }
133
+  pre.src-metapost:before { content: 'MetaPost'; }
134
+  pre.src-modula-2:before { content: 'Modula-2'; }
135
+  pre.src-pascal:before { content: 'Pascal'; }
136
+  pre.src-ps:before { content: 'PostScript'; }
137
+  pre.src-prolog:before { content: 'Prolog'; }
138
+  pre.src-simula:before { content: 'Simula'; }
139
+  pre.src-tcl:before { content: 'tcl'; }
140
+  pre.src-tex:before { content: 'TeX'; }
141
+  pre.src-plain-tex:before { content: 'Plain TeX'; }
142
+  pre.src-verilog:before { content: 'Verilog'; }
143
+  pre.src-vhdl:before { content: 'VHDL'; }
144
+  pre.src-xml:before { content: 'XML'; }
145
+  pre.src-nxml:before { content: 'XML'; }
146
+  /* add a generic configuration mode; LaTeX export needs an additional
147
+     (add-to-list 'org-latex-listings-langs '(conf " ")) in .emacs */
148
+  pre.src-conf:before { content: 'Configuration File'; }
66
 
149
 
67
   table { border-collapse:collapse; }
150
   table { border-collapse:collapse; }
68
   caption.t-above { caption-side: top; }
151
   caption.t-above { caption-side: top; }
170
 </colgroup>
253
 </colgroup>
171
 <tbody>
254
 <tbody>
172
 <tr>
255
 <tr>
173
-<td class="org-left"><a href="#orgcbeaf75">Readme</a></td>
256
+<td class="org-left"><a href="#org5d3cd75">Readme</a></td>
174
 </tr>
257
 </tr>
175
 
258
 
176
 <tr>
259
 <tr>
177
-<td class="org-left"><a href="#org58fe816">Improving ssh security</a></td>
260
+<td class="org-left"><a href="#orgbb85ebf">Improving ssh security</a></td>
178
 </tr>
261
 </tr>
179
 
262
 
180
 <tr>
263
 <tr>
181
-<td class="org-left"><a href="#org108ba2e">Administrating the system via an onion address (Tor)</a></td>
264
+<td class="org-left"><a href="#org302836e">Administrating the system via an onion address (Tor)</a></td>
182
 </tr>
265
 </tr>
183
 
266
 
184
 <tr>
267
 <tr>
190
 </tr>
273
 </tr>
191
 
274
 
192
 <tr>
275
 <tr>
193
-<td class="org-left"><a href="#org4e37c17">Syncing to the Cloud</a></td>
276
+<td class="org-left"><a href="#org01570a8">Syncing to the Cloud</a></td>
194
 </tr>
277
 </tr>
195
 
278
 
196
 <tr>
279
 <tr>
197
-<td class="org-left"><a href="#org62c5422">Play Music</a></td>
280
+<td class="org-left"><a href="#orgeea91f8">Play Music</a></td>
198
 </tr>
281
 </tr>
199
 
282
 
200
 <tr>
283
 <tr>
201
-<td class="org-left"><a href="#orgaf303fc">Microblogging (GNU Social)</a></td>
284
+<td class="org-left"><a href="#org69eb610">Microblogging (GNU Social)</a></td>
202
 </tr>
285
 </tr>
203
 
286
 
204
 <tr>
287
 <tr>
205
-<td class="org-left"><a href="#orgb623bbd">Sharing things</a></td>
288
+<td class="org-left"><a href="#orge8d9e63">Sharing things</a></td>
206
 </tr>
289
 </tr>
207
 
290
 
208
 <tr>
291
 <tr>
209
-<td class="org-left"><a href="#orgf2c8242">Social Network</a></td>
292
+<td class="org-left"><a href="#org3e63c50">Social Network</a></td>
210
 </tr>
293
 </tr>
211
 
294
 
212
 <tr>
295
 <tr>
213
-<td class="org-left"><a href="#org7d98aeb">Chat Services</a></td>
296
+<td class="org-left"><a href="#orgcc55b7a">Chat Services</a></td>
214
 </tr>
297
 </tr>
215
 
298
 
216
 <tr>
299
 <tr>
217
-<td class="org-left"><a href="#org825bbe8">RSS Reader</a></td>
300
+<td class="org-left"><a href="#org2698611">RSS Reader</a></td>
218
 </tr>
301
 </tr>
219
 
302
 
220
 <tr>
303
 <tr>
221
-<td class="org-left"><a href="#org53e17e1">Git Projects</a></td>
304
+<td class="org-left"><a href="#org384c251">Git Projects</a></td>
222
 </tr>
305
 </tr>
223
 
306
 
224
 <tr>
307
 <tr>
225
-<td class="org-left"><a href="#org421f565">Adding or removing users</a></td>
308
+<td class="org-left"><a href="#org774064d">Adding or removing users</a></td>
226
 </tr>
309
 </tr>
227
 </tbody>
310
 </tbody>
228
 </table>
311
 </table>
229
 
312
 
230
-<div id="outline-container-orgcbeaf75" class="outline-2">
231
-<h2 id="orgcbeaf75">Readme</h2>
232
-<div class="outline-text-2" id="text-orgcbeaf75">
313
+<div id="outline-container-org5d3cd75" class="outline-2">
314
+<h2 id="org5d3cd75">Readme</h2>
315
+<div class="outline-text-2" id="text-org5d3cd75">
233
 <p>
316
 <p>
234
 After the system has installed a README file will be generated which contains passwords and some brief advice on using the installed systems. You can read this with the following commands:
317
 After the system has installed a README file will be generated which contains passwords and some brief advice on using the installed systems. You can read this with the following commands:
235
 </p>
318
 </p>
250
 </p>
333
 </p>
251
 </div>
334
 </div>
252
 </div>
335
 </div>
253
-<div id="outline-container-org58fe816" class="outline-2">
254
-<h2 id="org58fe816">Improving ssh security</h2>
255
-<div class="outline-text-2" id="text-org58fe816">
336
+<div id="outline-container-orgbb85ebf" class="outline-2">
337
+<h2 id="orgbb85ebf">Improving ssh security</h2>
338
+<div class="outline-text-2" id="text-orgbb85ebf">
256
 <p>
339
 <p>
257
 To improve ssh security you can generate an ssh key pair on your system and then upload the public key to the Freedombone.
340
 To improve ssh security you can generate an ssh key pair on your system and then upload the public key to the Freedombone.
258
 </p>
341
 </p>
305
 </div>
388
 </div>
306
 </div>
389
 </div>
307
 
390
 
308
-<div id="outline-container-org108ba2e" class="outline-2">
309
-<h2 id="org108ba2e">Administrating the system via an onion address (Tor)</h2>
310
-<div class="outline-text-2" id="text-org108ba2e">
391
+<div id="outline-container-org302836e" class="outline-2">
392
+<h2 id="org302836e">Administrating the system via an onion address (Tor)</h2>
393
+<div class="outline-text-2" id="text-org302836e">
311
 <p>
394
 <p>
312
 You can also access your system via the Tor system using an onion address. To find out what the onion address for ssh access is you can do the following:
395
 You can also access your system via the Tor system using an onion address. To find out what the onion address for ssh access is you can do the following:
313
 </p>
396
 </p>
353
 </p>
436
 </p>
354
 </div>
437
 </div>
355
 </div>
438
 </div>
356
-<div id="outline-container-org4e37c17" class="outline-2">
357
-<h2 id="org4e37c17">Syncing to the Cloud</h2>
358
-<div class="outline-text-2" id="text-org4e37c17">
439
+<div id="outline-container-org01570a8" class="outline-2">
440
+<h2 id="org01570a8">Syncing to the Cloud</h2>
441
+<div class="outline-text-2" id="text-org01570a8">
359
 <p>
442
 <p>
360
 <a href="https://syncthing.net/">Syncthing</a> provides a similar capability to proprietary systems such as <a href="http://www.drop-dropbox.com/">Dropbox</a>, and also is well suited for use with low power single board computers. You can have one or more directories which are synchronized across your various laptops/desktops/devices, and this makes it hard for you to ever lose important files. The manner in which the synchronization is done is pretty secure, such that it would be difficult for passive adversaries (mass surveillance, "<i>men in the middle</i>", etc) to know what files you're sharing. Of course, you don't necessarily need to be running a server in order to use Syncthing, but if you do have a server which is always running then there's always at least one place to synchronize your files to or from.
443
 <a href="https://syncthing.net/">Syncthing</a> provides a similar capability to proprietary systems such as <a href="http://www.drop-dropbox.com/">Dropbox</a>, and also is well suited for use with low power single board computers. You can have one or more directories which are synchronized across your various laptops/desktops/devices, and this makes it hard for you to ever lose important files. The manner in which the synchronization is done is pretty secure, such that it would be difficult for passive adversaries (mass surveillance, "<i>men in the middle</i>", etc) to know what files you're sharing. Of course, you don't necessarily need to be running a server in order to use Syncthing, but if you do have a server which is always running then there's always at least one place to synchronize your files to or from.
361
 </p>
444
 </p>
365
 </p>
448
 </p>
366
 </div>
449
 </div>
367
 
450
 
368
-<div id="outline-container-orge3fa44b" class="outline-3">
369
-<h3 id="orge3fa44b">On a laptop</h3>
370
-<div class="outline-text-3" id="text-orge3fa44b">
451
+<div id="outline-container-org2097db1" class="outline-3">
452
+<h3 id="org2097db1">On a laptop</h3>
453
+<div class="outline-text-3" id="text-org2097db1">
371
 <p>
454
 <p>
372
 Install syncthing:
455
 Install syncthing:
373
 </p>
456
 </p>
422
 </p>
505
 </p>
423
 </div>
506
 </div>
424
 </div>
507
 </div>
425
-<div id="outline-container-org3133aad" class="outline-3">
426
-<h3 id="org3133aad">On Android</h3>
427
-<div class="outline-text-3" id="text-org3133aad">
508
+<div id="outline-container-orge1173f2" class="outline-3">
509
+<h3 id="orge1173f2">On Android</h3>
510
+<div class="outline-text-3" id="text-orge1173f2">
428
 <p>
511
 <p>
429
 Install Syncthing and Connectbot from F-droid.
512
 Install Syncthing and Connectbot from F-droid.
430
 </p>
513
 </p>
455
 </div>
538
 </div>
456
 </div>
539
 </div>
457
 </div>
540
 </div>
458
-<div id="outline-container-org62c5422" class="outline-2">
459
-<h2 id="org62c5422">Play Music</h2>
460
-<div class="outline-text-2" id="text-org62c5422">
461
-</div><div id="outline-container-org446333" class="outline-3">
462
-<h3 id="org446333">With the DLNA service</h3>
463
-<div class="outline-text-3" id="text-org446333">
541
+<div id="outline-container-orgeea91f8" class="outline-2">
542
+<h2 id="orgeea91f8">Play Music</h2>
543
+<div class="outline-text-2" id="text-orgeea91f8">
544
+</div><div id="outline-container-org26c149d" class="outline-3">
545
+<h3 id="org26c149d">With the DLNA service</h3>
546
+<div class="outline-text-3" id="text-org26c149d">
464
 <p>
547
 <p>
465
 An easy way to play music on any mobile device in your home is to use the DLNA service. Copy your music into a directory called "<i>Music</i>" on a USB thumb drive and then insert it into from socket on the Beaglebone.
548
 An easy way to play music on any mobile device in your home is to use the DLNA service. Copy your music into a directory called "<i>Music</i>" on a USB thumb drive and then insert it into from socket on the Beaglebone.
466
 </p>
549
 </p>
501
 </div>
584
 </div>
502
 </div>
585
 </div>
503
 
586
 
504
-<div id="outline-container-orgaf303fc" class="outline-2">
505
-<h2 id="orgaf303fc">Microblogging (GNU Social)</h2>
506
-<div class="outline-text-2" id="text-orgaf303fc">
587
+<div id="outline-container-org69eb610" class="outline-2">
588
+<h2 id="org69eb610">Microblogging (GNU Social)</h2>
589
+<div class="outline-text-2" id="text-org69eb610">
590
+</div><div id="outline-container-org470cb1f" class="outline-3">
591
+<h3 id="org470cb1f">Initial setup</h3>
592
+<div class="outline-text-3" id="text-org470cb1f">
507
 <p>
593
 <p>
508
 To log into your GNU Social site first obtain your username and password from the "microblogging" section of the readme file.
594
 To log into your GNU Social site first obtain your username and password from the "microblogging" section of the readme file.
509
 </p>
595
 </p>
532
 </div>
618
 </div>
533
 </div>
619
 </div>
534
 
620
 
535
-<div id="outline-container-orgb623bbd" class="outline-2">
536
-<h2 id="orgb623bbd">Sharing things</h2>
537
-<div class="outline-text-2" id="text-orgb623bbd">
621
+<div id="outline-container-org2d40253" class="outline-3">
622
+<h3 id="org2d40253">Direct Messages (DMs) and privacy</h3>
623
+<div class="outline-text-3" id="text-org2d40253">
624
+<p>
625
+One important point about GNU Social is that although direct messages (DMs) are treated as being private their security is quite poor. If you want real communications privacy then use other systems such as XMPP+OMEMO/OTR, Tox or email with GPG. GNU Social is primarily about <i>fully public communications</i>.
626
+</p>
627
+</div>
628
+</div>
629
+<div id="outline-container-orga2273f2" class="outline-3">
630
+<h3 id="orga2273f2">Using with Emacs</h3>
631
+<div class="outline-text-3" id="text-orga2273f2">
632
+<p>
633
+If you are an Emacs user it's also possible to set up GNU Social mode as follows:
634
+</p>
635
+
636
+<div class="org-src-container">
637
+
638
+<pre class="src src-bash">mkdir ~/elisp
639
+git clone git://git.savannah.nongnu.org/gnu-social-mode ~/elisp/gnu-social-mode
640
+sed -i <span class="org-string">'s|"http"|"https"|g'</span> ~/elisp/gnu-social-mode/gnu-social-mode.el
641
+sed -i <span class="org-string">'s|http:|https:|g'</span> ~/elisp/gnu-social-mode/gnu-social-mode.el
642
+sed -i <span class="org-string">'s|http?|https?|g'</span> ~/elisp/gnu-social-mode/gnu-social-mode.el
643
+<span class="org-builtin">echo</span> <span class="org-string">"(add-to-list 'load-path \"~/elisp/gnu-social-mode\")"</span> &gt;&gt; ~/.emacs
644
+<span class="org-builtin">echo</span> <span class="org-string">"(require 'gnu-social-mode)"</span> &gt;&gt; ~/.emacs
645
+<span class="org-builtin">echo</span> <span class="org-string">"(setq gnu-social-server-textlimit 2000"</span> &gt;&gt; ~/.emacs
646
+<span class="org-builtin">echo</span> <span class="org-string">"      gnu-social-server \"yourgnusocialdomain\""</span> &gt;&gt; ~/.emacs
647
+<span class="org-builtin">echo</span> <span class="org-string">"    gnu-social-username \"yourusername\""</span> &gt;&gt; ~/.emacs
648
+<span class="org-builtin">echo</span> <span class="org-string">"    gnu-social-password \"gnusocialpassword\")"</span> &gt;&gt; ~/.emacs
649
+</pre>
650
+</div>
651
+
652
+<p>
653
+And as a quick reference the main keys are:
654
+</p>
655
+
656
+<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
657
+
658
+
659
+<colgroup>
660
+<col  class="org-left" />
661
+
662
+<col  class="org-left" />
663
+</colgroup>
664
+<thead>
665
+<tr>
666
+<th scope="col" class="org-left">Key</th>
667
+<th scope="col" class="org-left">Function</th>
668
+</tr>
669
+</thead>
670
+<tbody>
671
+<tr>
672
+<td class="org-left">i</td>
673
+<td class="org-left">Show profile icons</td>
674
+</tr>
675
+
676
+<tr>
677
+<td class="org-left">CTRL-c CTRL-s</td>
678
+<td class="org-left">Post status update</td>
679
+</tr>
680
+
681
+<tr>
682
+<td class="org-left">r</td>
683
+<td class="org-left">Repeat</td>
684
+</tr>
685
+
686
+<tr>
687
+<td class="org-left">F</td>
688
+<td class="org-left">Favourite</td>
689
+</tr>
690
+
691
+<tr>
692
+<td class="org-left">CTRL-c CTRL-h</td>
693
+<td class="org-left">Highlight</td>
694
+</tr>
695
+
696
+<tr>
697
+<td class="org-left">R</td>
698
+<td class="org-left">Reply to user</td>
699
+</tr>
700
+
701
+<tr>
702
+<td class="org-left">g</td>
703
+<td class="org-left">Show current timeline</td>
704
+</tr>
705
+</tbody>
706
+</table>
707
+</div>
708
+</div>
709
+</div>
710
+
711
+<div id="outline-container-orge8d9e63" class="outline-2">
712
+<h2 id="orge8d9e63">Sharing things</h2>
713
+<div class="outline-text-2" id="text-orge8d9e63">
538
 <p>
714
 <p>
539
 If you have the GNU Social microblogging system installed then it's also possible to share things or services between groups or with particular users. This can be useful for sharing items within a family, club or in a local sharing economy. Sharing things freely, without money, reveals the social basis at the root of all economics which money normally conceals or obscures.
715
 If you have the GNU Social microblogging system installed then it's also possible to share things or services between groups or with particular users. This can be useful for sharing items within a family, club or in a local sharing economy. Sharing things freely, without money, reveals the social basis at the root of all economics which money normally conceals or obscures.
540
 </p>
716
 </p>
561
 </div>
737
 </div>
562
 </div>
738
 </div>
563
 
739
 
564
-<div id="outline-container-orgf2c8242" class="outline-2">
565
-<h2 id="orgf2c8242">Social Network</h2>
566
-<div class="outline-text-2" id="text-orgf2c8242">
567
-</div><div id="outline-container-orgd19b2f8" class="outline-3">
568
-<h3 id="orgd19b2f8">Domains</h3>
569
-<div class="outline-text-3" id="text-orgd19b2f8">
740
+<div id="outline-container-org3e63c50" class="outline-2">
741
+<h2 id="org3e63c50">Social Network</h2>
742
+<div class="outline-text-2" id="text-org3e63c50">
743
+</div><div id="outline-container-org9a87f67" class="outline-3">
744
+<h3 id="org9a87f67">Domains</h3>
745
+<div class="outline-text-3" id="text-org9a87f67">
570
 <p>
746
 <p>
571
 Both Hubzilla and GNU Social try to obtain certificates automatically at the time of installation via Let's Encrypt. This will likely mean that in order for this to work you'll need to have obtained at least one "official" domain via a domain selling service, since Let's Encrypt mostly doesn't seem to work with free subdomains from sites such as freeDNS.
747
 Both Hubzilla and GNU Social try to obtain certificates automatically at the time of installation via Let's Encrypt. This will likely mean that in order for this to work you'll need to have obtained at least one "official" domain via a domain selling service, since Let's Encrypt mostly doesn't seem to work with free subdomains from sites such as freeDNS.
572
 </p>
748
 </p>
573
 </div>
749
 </div>
574
 </div>
750
 </div>
575
-<div id="outline-container-orgb72f874" class="outline-3">
576
-<h3 id="orgb72f874">Initial install</h3>
577
-<div class="outline-text-3" id="text-orgb72f874">
751
+<div id="outline-container-orgcea72c7" class="outline-3">
752
+<h3 id="orgcea72c7">Initial install</h3>
753
+<div class="outline-text-3" id="text-orgcea72c7">
578
 <p>
754
 <p>
579
 On first visiting your Hubzilla site you'll see the login screen. The first thing you need to do is <b>register</b> a new user. The first user on the system then becomes its administrator.
755
 On first visiting your Hubzilla site you'll see the login screen. The first thing you need to do is <b>register</b> a new user. The first user on the system then becomes its administrator.
580
 </p>
756
 </p>
588
 </div>
764
 </div>
589
 </div>
765
 </div>
590
 
766
 
591
-<div id="outline-container-org7d98aeb" class="outline-2">
592
-<h2 id="org7d98aeb">Chat Services</h2>
593
-<div class="outline-text-2" id="text-org7d98aeb">
594
-</div><div id="outline-container-org4f6982f" class="outline-3">
595
-<h3 id="org4f6982f">IRC</h3>
596
-<div class="outline-text-3" id="text-org4f6982f">
767
+<div id="outline-container-orgcc55b7a" class="outline-2">
768
+<h2 id="orgcc55b7a">Chat Services</h2>
769
+<div class="outline-text-2" id="text-orgcc55b7a">
770
+</div><div id="outline-container-orgabbd12f" class="outline-3">
771
+<h3 id="orgabbd12f">IRC</h3>
772
+<div class="outline-text-3" id="text-orgabbd12f">
597
 <p>
773
 <p>
598
 IRC is useful for multi-user chat. The classic use case is for software development where many engineers might need to coordinate their activities, but it's also useful for meetings, parties and general socialising.
774
 IRC is useful for multi-user chat. The classic use case is for software development where many engineers might need to coordinate their activities, but it's also useful for meetings, parties and general socialising.
599
 </p>
775
 </p>
600
 </div>
776
 </div>
601
-<div id="outline-container-org6a669ac" class="outline-4">
602
-<h4 id="org6a669ac">Irssi</h4>
603
-<div class="outline-text-4" id="text-org6a669ac">
777
+<div id="outline-container-orgd97adc1" class="outline-4">
778
+<h4 id="orgd97adc1">Irssi</h4>
779
+<div class="outline-text-4" id="text-orgd97adc1">
604
 <p>
780
 <p>
605
 The easiest way to use irssi is to connect to your system, like this:
781
 The easiest way to use irssi is to connect to your system, like this:
606
 </p>
782
 </p>
616
 </p>
792
 </p>
617
 </div>
793
 </div>
618
 </div>
794
 </div>
619
-<div id="outline-container-orgfe17db7" class="outline-4">
620
-<h4 id="orgfe17db7">HexChat</h4>
621
-<div class="outline-text-4" id="text-orgfe17db7">
795
+<div id="outline-container-org5e5309b" class="outline-4">
796
+<h4 id="org5e5309b">HexChat</h4>
797
+<div class="outline-text-4" id="text-org5e5309b">
622
 <p>
798
 <p>
623
 HexChat (formerly XChat) is compatible with proxying via Tor and so provides the best security when connecting to your IRC server. It will allow you to connect to your IRC server's onion address.
799
 HexChat (formerly XChat) is compatible with proxying via Tor and so provides the best security when connecting to your IRC server. It will allow you to connect to your IRC server's onion address.
624
 </p>
800
 </p>
796
 </div>
972
 </div>
797
 </div>
973
 </div>
798
 
974
 
799
-<div id="outline-container-orga727c72" class="outline-4">
800
-<h4 id="orga727c72">Emacs</h4>
801
-<div class="outline-text-4" id="text-orga727c72">
975
+<div id="outline-container-orge9c153d" class="outline-4">
976
+<h4 id="orge9c153d">Emacs</h4>
977
+<div class="outline-text-4" id="text-orge9c153d">
802
 <p>
978
 <p>
803
 If you are an Emacs user then you can also connect to your IRC server via Emacs.
979
 If you are an Emacs user then you can also connect to your IRC server via Emacs.
804
 </p>
980
 </p>
831
 </div>
1007
 </div>
832
 </div>
1008
 </div>
833
 </div>
1009
 </div>
834
-<div id="outline-container-orga72df58" class="outline-4">
835
-<h4 id="orga72df58">Changing or removing the IRC password</h4>
836
-<div class="outline-text-4" id="text-orga72df58">
1010
+<div id="outline-container-org7e67160" class="outline-4">
1011
+<h4 id="org7e67160">Changing or removing the IRC password</h4>
1012
+<div class="outline-text-4" id="text-org7e67160">
837
 <p>
1013
 <p>
838
 By default the IRC server is set up to require a password for users to log in. The password is the same for all users. If you want to change or remove the password:
1014
 By default the IRC server is set up to require a password for users to log in. The password is the same for all users. If you want to change or remove the password:
839
 </p>
1015
 </p>
851
 </div>
1027
 </div>
852
 </div>
1028
 </div>
853
 
1029
 
854
-<div id="outline-container-orgc1579b5" class="outline-3">
855
-<h3 id="orgc1579b5">XMPP/Jabber</h3>
856
-<div class="outline-text-3" id="text-orgc1579b5">
857
-</div><div id="outline-container-orgebe762f" class="outline-4">
858
-<h4 id="orgebe762f">About XMPP</h4>
859
-<div class="outline-text-4" id="text-orgebe762f">
1030
+<div id="outline-container-org75a632b" class="outline-3">
1031
+<h3 id="org75a632b">XMPP/Jabber</h3>
1032
+<div class="outline-text-3" id="text-org75a632b">
1033
+</div><div id="outline-container-org079966e" class="outline-4">
1034
+<h4 id="org079966e">About XMPP</h4>
1035
+<div class="outline-text-4" id="text-org079966e">
860
 <p>
1036
 <p>
861
 A well written article on the state of XMPP and how it compares to other chat protocols <a href="https://gultsch.de/xmpp_2016.html">can be found here</a>.
1037
 A well written article on the state of XMPP and how it compares to other chat protocols <a href="https://gultsch.de/xmpp_2016.html">can be found here</a>.
862
 </p>
1038
 </p>
863
 </div>
1039
 </div>
864
 </div>
1040
 </div>
865
-<div id="outline-container-org470be5f" class="outline-4">
866
-<h4 id="org470be5f">Using with Gajim</h4>
867
-<div class="outline-text-4" id="text-org470be5f">
1041
+<div id="outline-container-org2c65a1e" class="outline-4">
1042
+<h4 id="org2c65a1e">Using with Gajim</h4>
1043
+<div class="outline-text-4" id="text-org2c65a1e">
868
 <p>
1044
 <p>
869
 In mid 2016 <a href="https://gajim.org/">Gajim</a> became the first desktop XMPP client to support the <a href="https://en.wikipedia.org/wiki/OMEMO">OMEMO end-to-end security standard</a>, which is superior to the more traditional <a href="https://en.wikipedia.org/wiki/Off-the-Record_Messaging">OTR</a> since it also includes multi-user chat and the ratcheting mechanism pioneered by Open Whisper Systems. To install it:
1045
 In mid 2016 <a href="https://gajim.org/">Gajim</a> became the first desktop XMPP client to support the <a href="https://en.wikipedia.org/wiki/OMEMO">OMEMO end-to-end security standard</a>, which is superior to the more traditional <a href="https://en.wikipedia.org/wiki/Off-the-Record_Messaging">OTR</a> since it also includes multi-user chat and the ratcheting mechanism pioneered by Open Whisper Systems. To install it:
870
 </p>
1046
 </p>
910
 </div>
1086
 </div>
911
 </div>
1087
 </div>
912
 
1088
 
913
-<div id="outline-container-orgc74ad6f" class="outline-4">
914
-<h4 id="orgc74ad6f">Using with Profanity</h4>
915
-<div class="outline-text-4" id="text-orgc74ad6f">
1089
+<div id="outline-container-orgc58464e" class="outline-4">
1090
+<h4 id="orgc58464e">Using with Profanity</h4>
1091
+<div class="outline-text-4" id="text-orgc58464e">
916
 <p>
1092
 <p>
917
 The <a href="http://profanity.im/">Profanity</a> shell based user interface and is perhaps the simplest way to use XMPP from a laptop. It's also a good way to ensure that your OTR keys are the same even when logging in from different laptops or devices, and it also means that if those devices later become compomised then there are no locally stored OTR keys to be found.
1093
 The <a href="http://profanity.im/">Profanity</a> shell based user interface and is perhaps the simplest way to use XMPP from a laptop. It's also a good way to ensure that your OTR keys are the same even when logging in from different laptops or devices, and it also means that if those devices later become compomised then there are no locally stored OTR keys to be found.
918
 </p>
1094
 </p>
1002
 </p>
1178
 </p>
1003
 </div>
1179
 </div>
1004
 </div>
1180
 </div>
1005
-<div id="outline-container-orgb23df4a" class="outline-4">
1006
-<h4 id="orgb23df4a">Using with Jitsi</h4>
1007
-<div class="outline-text-4" id="text-orgb23df4a">
1181
+<div id="outline-container-org1302616" class="outline-4">
1182
+<h4 id="org1302616">Using with Jitsi</h4>
1183
+<div class="outline-text-4" id="text-org1302616">
1008
 <p>
1184
 <p>
1009
 Jitsi is the recommended communications client for desktop or laptop systems, since it includes the <i>off the record</i> (OTR) feature which provides some additional security beyond the usual SSL certificates.
1185
 Jitsi is the recommended communications client for desktop or laptop systems, since it includes the <i>off the record</i> (OTR) feature which provides some additional security beyond the usual SSL certificates.
1010
 </p>
1186
 </p>
1034
 </p>
1210
 </p>
1035
 </div>
1211
 </div>
1036
 </div>
1212
 </div>
1037
-<div id="outline-container-org137d56" class="outline-4">
1038
-<h4 id="org137d56">Using with Ubuntu</h4>
1039
-<div class="outline-text-4" id="text-org137d56">
1213
+<div id="outline-container-orgd636da4" class="outline-4">
1214
+<h4 id="orgd636da4">Using with Ubuntu</h4>
1215
+<div class="outline-text-4" id="text-orgd636da4">
1040
 <p>
1216
 <p>
1041
 The default XMPP client in Ubuntu is Empathy.  Using Empathy isn't as secure as using Jitsi, since it doesn't include the <i>off the record</i> feature, but since it's the default it's what many users will have easy access to.
1217
 The default XMPP client in Ubuntu is Empathy.  Using Empathy isn't as secure as using Jitsi, since it doesn't include the <i>off the record</i> feature, but since it's the default it's what many users will have easy access to.
1042
 </p>
1218
 </p>
1054
 </p>
1230
 </p>
1055
 </div>
1231
 </div>
1056
 </div>
1232
 </div>
1057
-<div id="outline-container-org1e890b0" class="outline-4">
1058
-<h4 id="org1e890b0">Using Tor Messenger</h4>
1059
-<div class="outline-text-4" id="text-org1e890b0">
1233
+<div id="outline-container-org09b5df0" class="outline-4">
1234
+<h4 id="org09b5df0">Using Tor Messenger</h4>
1235
+<div class="outline-text-4" id="text-org09b5df0">
1060
 <p>
1236
 <p>
1061
 Tor Messenger is a messaging client which supports XMPP, and its onion routing enables you to protect the metadata of chat interactions to some extent by making it difficult for an adversary to know which server is talking to which. You can download Tor Messenger from <a href="https://torproject.org/">torproject.org</a> and the setup is pretty simple.
1237
 Tor Messenger is a messaging client which supports XMPP, and its onion routing enables you to protect the metadata of chat interactions to some extent by making it difficult for an adversary to know which server is talking to which. You can download Tor Messenger from <a href="https://torproject.org/">torproject.org</a> and the setup is pretty simple.
1062
 </p>
1238
 </p>
1063
 </div>
1239
 </div>
1064
 </div>
1240
 </div>
1065
-<div id="outline-container-orgba9a7f3" class="outline-4">
1066
-<h4 id="orgba9a7f3">Using with Android/Conversations</h4>
1067
-<div class="outline-text-4" id="text-orgba9a7f3">
1241
+<div id="outline-container-org212ead8" class="outline-4">
1242
+<h4 id="org212ead8">Using with Android/Conversations</h4>
1243
+<div class="outline-text-4" id="text-org212ead8">
1068
 <p>
1244
 <p>
1069
 Install <a href="https://f-droid.org/">F-Droid</a>
1245
 Install <a href="https://f-droid.org/">F-Droid</a>
1070
 </p>
1246
 </p>
1100
 </div>
1276
 </div>
1101
 </div>
1277
 </div>
1102
 </div>
1278
 </div>
1103
-<div id="outline-container-org3244e3a" class="outline-3">
1104
-<h3 id="org3244e3a">Tox</h3>
1105
-<div class="outline-text-3" id="text-org3244e3a">
1279
+<div id="outline-container-orgc3f0bf1" class="outline-3">
1280
+<h3 id="orgc3f0bf1">Tox</h3>
1281
+<div class="outline-text-3" id="text-orgc3f0bf1">
1106
 <p>
1282
 <p>
1107
 Tox is an encrypted peer-to-peer messaging system and so should work without Freedombone. It uses a system of nodes which act as a sort of directory service allowing users to find and connect to each other. The Tox node ID on the Freedombone can be found within the README within your home directory. If you have other users connect to your node then you will be able to continue chatting even when no other nodes are available.
1283
 Tox is an encrypted peer-to-peer messaging system and so should work without Freedombone. It uses a system of nodes which act as a sort of directory service allowing users to find and connect to each other. The Tox node ID on the Freedombone can be found within the README within your home directory. If you have other users connect to your node then you will be able to continue chatting even when no other nodes are available.
1108
 </p>
1284
 </p>
1109
 </div>
1285
 </div>
1110
-<div id="outline-container-orgb600cf6" class="outline-4">
1111
-<h4 id="orgb600cf6">Using the Toxic client</h4>
1112
-<div class="outline-text-4" id="text-orgb600cf6">
1286
+<div id="outline-container-org6ef34e9" class="outline-4">
1287
+<h4 id="org6ef34e9">Using the Toxic client</h4>
1288
+<div class="outline-text-4" id="text-org6ef34e9">
1113
 <p>
1289
 <p>
1114
 Log into your system with:
1290
 Log into your system with:
1115
 </p>
1291
 </p>
1133
 </div>
1309
 </div>
1134
 </div>
1310
 </div>
1135
 
1311
 
1136
-<div id="outline-container-org2d25fd9" class="outline-3">
1137
-<h3 id="org2d25fd9">VoIP (Voice and text chat)</h3>
1138
-<div class="outline-text-3" id="text-org2d25fd9">
1139
-</div><div id="outline-container-org5930c44" class="outline-4">
1140
-<h4 id="org5930c44">Text chat</h4>
1141
-<div class="outline-text-4" id="text-org5930c44">
1312
+<div id="outline-container-org9e74f7b" class="outline-3">
1313
+<h3 id="org9e74f7b">VoIP (Voice and text chat)</h3>
1314
+<div class="outline-text-3" id="text-org9e74f7b">
1315
+</div><div id="outline-container-org1ba94db" class="outline-4">
1316
+<h4 id="org1ba94db">Text chat</h4>
1317
+<div class="outline-text-4" id="text-org1ba94db">
1142
 <p>
1318
 <p>
1143
 In addition to voice it is also possible to do text chat via mumble. The security of this is pretty good provided that you do it via Plumble and Orbot on mobile, but compared to other options such as XMPP/Conversations or Tox the security is not as good, since the mumble server currently doesn't support forward secrecy.
1319
 In addition to voice it is also possible to do text chat via mumble. The security of this is pretty good provided that you do it via Plumble and Orbot on mobile, but compared to other options such as XMPP/Conversations or Tox the security is not as good, since the mumble server currently doesn't support forward secrecy.
1144
 </p>
1320
 </p>
1145
 </div>
1321
 </div>
1146
 </div>
1322
 </div>
1147
-<div id="outline-container-orgd3e2d35" class="outline-4">
1148
-<h4 id="orgd3e2d35">Using with Ubuntu</h4>
1149
-<div class="outline-text-4" id="text-orgd3e2d35">
1323
+<div id="outline-container-org3461191" class="outline-4">
1324
+<h4 id="org3461191">Using with Ubuntu</h4>
1325
+<div class="outline-text-4" id="text-org3461191">
1150
 <p>
1326
 <p>
1151
 Within the software center search for "mumble" and install the client then run it. Skip through the audio setup wizard.
1327
 Within the software center search for "mumble" and install the client then run it. Skip through the audio setup wizard.
1152
 </p>
1328
 </p>
1156
 </p>
1332
 </p>
1157
 </div>
1333
 </div>
1158
 </div>
1334
 </div>
1159
-<div id="outline-container-org9d77246" class="outline-4">
1160
-<h4 id="org9d77246">Using with Android</h4>
1161
-<div class="outline-text-4" id="text-org9d77246">
1335
+<div id="outline-container-org6f7ec87" class="outline-4">
1336
+<h4 id="org6f7ec87">Using with Android</h4>
1337
+<div class="outline-text-4" id="text-org6f7ec87">
1162
 <p>
1338
 <p>
1163
 Install <a href="https://f-droid.org/">F-Droid</a>
1339
 Install <a href="https://f-droid.org/">F-Droid</a>
1164
 </p>
1340
 </p>
1193
 </div>
1369
 </div>
1194
 </div>
1370
 </div>
1195
 </div>
1371
 </div>
1196
-<div id="outline-container-org5d67398" class="outline-3">
1197
-<h3 id="org5d67398">SIP phones</h3>
1198
-<div class="outline-text-3" id="text-org5d67398">
1372
+<div id="outline-container-org27d2fad" class="outline-3">
1373
+<h3 id="org27d2fad">SIP phones</h3>
1374
+<div class="outline-text-3" id="text-org27d2fad">
1199
 <p>
1375
 <p>
1200
 Freedombone also supports SIP phones The username and domain is the same as for your email address, and the SIP password and extension number will appear within the README file in your home directory. Various SIP client options are available, such as CSipSimple on Android and Jitsi on desktop or laptop machines. Ideally use clients which support ZRTP, which will provide the best level of security.
1376
 Freedombone also supports SIP phones The username and domain is the same as for your email address, and the SIP password and extension number will appear within the README file in your home directory. Various SIP client options are available, such as CSipSimple on Android and Jitsi on desktop or laptop machines. Ideally use clients which support ZRTP, which will provide the best level of security.
1201
 </p>
1377
 </p>
1202
 </div>
1378
 </div>
1203
-<div id="outline-container-org2a68d3a" class="outline-4">
1204
-<h4 id="org2a68d3a">About ZRTP</h4>
1205
-<div class="outline-text-4" id="text-org2a68d3a">
1379
+<div id="outline-container-org4e1970a" class="outline-4">
1380
+<h4 id="org4e1970a">About ZRTP</h4>
1381
+<div class="outline-text-4" id="text-org4e1970a">
1206
 <p>
1382
 <p>
1207
 <a href="https://jitsi.org/Documentation/ZrtpFAQ">ZRTP</a> appears to be the current best standard to end-to-end encrypted voice calls, combining good security with simplicity of use. When the initial cryptographic negotiation between phones is done at the start of a call a short authentication string (SAS) is calculated and displayed at both ends. To check that there isn't anyone intercepting the call and acting as a <i>man in the middle</i> - as <a href="https://en.wikipedia.org/wiki/Stingray_phone_tracker">stingray type devices</a> try to do - the short authentication string can be read out and verbally confirmed between the callers. If it's the same then you can be pretty confident that the call is secure.
1383
 <a href="https://jitsi.org/Documentation/ZrtpFAQ">ZRTP</a> appears to be the current best standard to end-to-end encrypted voice calls, combining good security with simplicity of use. When the initial cryptographic negotiation between phones is done at the start of a call a short authentication string (SAS) is calculated and displayed at both ends. To check that there isn't anyone intercepting the call and acting as a <i>man in the middle</i> - as <a href="https://en.wikipedia.org/wiki/Stingray_phone_tracker">stingray type devices</a> try to do - the short authentication string can be read out and verbally confirmed between the callers. If it's the same then you can be pretty confident that the call is secure.
1208
 </p>
1384
 </p>
1209
 </div>
1385
 </div>
1210
 </div>
1386
 </div>
1211
-<div id="outline-container-org4024859" class="outline-4">
1212
-<h4 id="org4024859">Using with CSIPSimple</h4>
1213
-<div class="outline-text-4" id="text-org4024859">
1387
+<div id="outline-container-org75a89f1" class="outline-4">
1388
+<h4 id="org75a89f1">Using with CSIPSimple</h4>
1389
+<div class="outline-text-4" id="text-org75a89f1">
1214
 <p>
1390
 <p>
1215
 Add an account. Under <b>General Wizards</b> choose <b>Expert</b> and enter the following details:
1391
 Add an account. Under <b>General Wizards</b> choose <b>Expert</b> and enter the following details:
1216
 </p>
1392
 </p>
1266
 </p>
1442
 </p>
1267
 </div>
1443
 </div>
1268
 </div>
1444
 </div>
1269
-<div id="outline-container-orgec83f9" class="outline-4">
1270
-<h4 id="orgec83f9">Using with Ring</h4>
1271
-<div class="outline-text-4" id="text-orgec83f9">
1445
+<div id="outline-container-orgee807b9" class="outline-4">
1446
+<h4 id="orgee807b9">Using with Ring</h4>
1447
+<div class="outline-text-4" id="text-orgee807b9">
1272
 <p>
1448
 <p>
1273
 From the menu select <b>Manage accounts</b>.
1449
 From the menu select <b>Manage accounts</b>.
1274
 </p>
1450
 </p>
1321
 </div>
1497
 </div>
1322
 </div>
1498
 </div>
1323
 
1499
 
1324
-<div id="outline-container-org825bbe8" class="outline-2">
1325
-<h2 id="org825bbe8">RSS Reader</h2>
1326
-<div class="outline-text-2" id="text-org825bbe8">
1500
+<div id="outline-container-org2698611" class="outline-2">
1501
+<h2 id="org2698611">RSS Reader</h2>
1502
+<div class="outline-text-2" id="text-org2698611">
1327
 <p>
1503
 <p>
1328
 The way that RSS reading is set up on Freedombone gives you strong reading privacy. Not only is there onion routing between you and the server but also between the server and the source of the RSS feed. The only down side is that many RSS feeds are still http only, and so could be vulnerable to injection attacks, but it's expected that more of this will go to https in the foreseeable future due to a combination of growing recognition of security issues and systems like Let's Encrypt which make obtaining certificates much easier.
1504
 The way that RSS reading is set up on Freedombone gives you strong reading privacy. Not only is there onion routing between you and the server but also between the server and the source of the RSS feed. The only down side is that many RSS feeds are still http only, and so could be vulnerable to injection attacks, but it's expected that more of this will go to https in the foreseeable future due to a combination of growing recognition of security issues and systems like Let's Encrypt which make obtaining certificates much easier.
1329
 </p>
1505
 </p>
1335
 </div>
1511
 </div>
1336
 </div>
1512
 </div>
1337
 
1513
 
1338
-<div id="outline-container-org2ba05bf" class="outline-3">
1339
-<h3 id="org2ba05bf">Finding the onion address</h3>
1340
-<div class="outline-text-3" id="text-org2ba05bf">
1514
+<div id="outline-container-orga56a4fe" class="outline-3">
1515
+<h3 id="orga56a4fe">Finding the onion address</h3>
1516
+<div class="outline-text-3" id="text-orga56a4fe">
1341
 <p>
1517
 <p>
1342
 See the control panel for the RSS reader onion address.
1518
 See the control panel for the RSS reader onion address.
1343
 </p>
1519
 </p>
1362
 </div>
1538
 </div>
1363
 </div>
1539
 </div>
1364
 
1540
 
1365
-<div id="outline-container-orgdac4fa1" class="outline-3">
1366
-<h3 id="orgdac4fa1">On mobile</h3>
1367
-<div class="outline-text-3" id="text-orgdac4fa1">
1541
+<div id="outline-container-orgc936562" class="outline-3">
1542
+<h3 id="orgc936562">On mobile</h3>
1543
+<div class="outline-text-3" id="text-orgc936562">
1368
 <p>
1544
 <p>
1369
 To access the RSS reader from a mobile device you can install a Tor compatible browser such as OrFox. It will try to automatically change to the mobile version of the user interface. Remember to add the site to the NoScript whitelist, and you may also need to turn HTTPS Everywhere off.
1545
 To access the RSS reader from a mobile device you can install a Tor compatible browser such as OrFox. It will try to automatically change to the mobile version of the user interface. Remember to add the site to the NoScript whitelist, and you may also need to turn HTTPS Everywhere off.
1370
 </p>
1546
 </p>
1376
 </blockquote>
1552
 </blockquote>
1377
 </div>
1553
 </div>
1378
 </div>
1554
 </div>
1379
-<div id="outline-container-org4788f3c" class="outline-3">
1380
-<h3 id="org4788f3c">With Emacs</h3>
1381
-<div class="outline-text-3" id="text-org4788f3c">
1555
+<div id="outline-container-org2e04357" class="outline-3">
1556
+<h3 id="org2e04357">With Emacs</h3>
1557
+<div class="outline-text-3" id="text-org2e04357">
1382
 <p>
1558
 <p>
1383
 If you are an Emacs user then you can also read your RSS feeds via the <a href="https://github.com/dk87/avandu">Avandu</a> mode.
1559
 If you are an Emacs user then you can also read your RSS feeds via the <a href="https://github.com/dk87/avandu">Avandu</a> mode.
1384
 </p>
1560
 </p>
1420
 </div>
1596
 </div>
1421
 </div>
1597
 </div>
1422
 </div>
1598
 </div>
1423
-<div id="outline-container-org53e17e1" class="outline-2">
1424
-<h2 id="org53e17e1">Git Projects</h2>
1425
-<div class="outline-text-2" id="text-org53e17e1">
1599
+<div id="outline-container-org384c251" class="outline-2">
1600
+<h2 id="org384c251">Git Projects</h2>
1601
+<div class="outline-text-2" id="text-org384c251">
1426
 <p>
1602
 <p>
1427
 Github is ok, but it's proprietary and funded by venture capital. If you been around on the internet for long enough then you know how this story eventually works itself out - i.e. badly for the users. It's really only a question of time. If you're a software developer or do things which involve the Git version control system then it's a good idea to become accustomed to hosting your own repositories, before the inevitable Github shitstorm happens.
1603
 Github is ok, but it's proprietary and funded by venture capital. If you been around on the internet for long enough then you know how this story eventually works itself out - i.e. badly for the users. It's really only a question of time. If you're a software developer or do things which involve the Git version control system then it's a good idea to become accustomed to hosting your own repositories, before the inevitable Github shitstorm happens.
1428
 </p>
1604
 </p>
1460
 </p>
1636
 </p>
1461
 </div>
1637
 </div>
1462
 </div>
1638
 </div>
1463
-<div id="outline-container-org421f565" class="outline-2">
1464
-<h2 id="org421f565">Adding or removing users</h2>
1465
-<div class="outline-text-2" id="text-org421f565">
1639
+<div id="outline-container-org774064d" class="outline-2">
1640
+<h2 id="org774064d">Adding or removing users</h2>
1641
+<div class="outline-text-2" id="text-org774064d">
1466
 <p>
1642
 <p>
1467
 Log into the system with:
1643
 Log into the system with:
1468
 </p>
1644
 </p>