ソースを参照

RSS reading with emacs

Bob Mottram 8 年 前
コミット
4a1c312585
コミット者のEメールアドレスに関連付けられたアカウントが存在しません
共有2 個のファイルを変更した260 個の追加135 個の削除を含む
  1. 13
    1
      doc/EN/usage.org
  2. 247
    134
      website/EN/usage.html

+ 13
- 1
doc/EN/usage.org ファイルの表示

@@ -551,6 +551,7 @@ The way that RSS reading is set up on Freedombone gives you strong reading priva
551 551
 
552 552
 [[file:images/rss_reader_mobile.jpg]]
553 553
 
554
+** Finding the onion address
554 555
 See the control panel for the RSS reader onion address.
555 556
 
556 557
 #+BEGIN_SRC bash
@@ -563,11 +564,22 @@ The RSS reader is accessible only via an onion address. This provides a reasonab
563 564
 
564 565
 To set up the system open http://rss_reader_onion_address/ and log in with username *admin* and the password obtained either at the beginning of the install or from the README file in your home directory. You can then select the *Actions* menu and begin adding your feeds.
565 566
 
566
-To access the RSS reader from a mobile device you can install a Tor compatible browser such as Orbot+OrWeb. 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.
567
+** On mobile
568
+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.
567 569
 
568 570
 #+BEGIN_QUOTE
569 571
 A note for the paranoid is that on mobile devices you get redirected to a different onion address which is specially set up for the mobile interface, so don't be alarmed that it looks like your connection is being hijacked.
570 572
 #+END_QUOTE
573
+** With Emacs
574
+If you are an Emacs user then you can also read your RSS feeds via the [[https://github.com/dk87/avandu][Avandu]] mode.
575
+
576
+Add the following to your configuration, changing the address and password as appropriate.
577
+
578
+#+begin_src emacs-lisp :tangle no
579
+(setq avandu-tt-rss-api-url "http://rss_reader_onion_address/api/"
580
+	  avandu-user "admin"
581
+	  avandu-password "mypassword")
582
+#+end_src
571 583
 * Git Projects
572 584
 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.
573 585
 

+ 247
- 134
website/EN/usage.html ファイルの表示

@@ -3,7 +3,7 @@
3 3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5 5
 <head>
6
-<!-- 2016-05-20 Fri 20:39 -->
6
+<!-- 2016-05-31 Tue 09:54 -->
7 7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8 8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
9 9
 <title></title>
@@ -56,13 +56,96 @@
56 56
     border: 1px solid black;
57 57
   }
58 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 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 150
   table { border-collapse:collapse; }
68 151
   caption.t-above { caption-side: top; }
@@ -170,15 +253,15 @@ for the JavaScript code in this tag.
170 253
 </colgroup>
171 254
 <tbody>
172 255
 <tr>
173
-<td class="org-left"><a href="#org1926434">Readme</a></td>
256
+<td class="org-left"><a href="#orgfaa2031">Readme</a></td>
174 257
 </tr>
175 258
 
176 259
 <tr>
177
-<td class="org-left"><a href="#org5fb6f93">Improving ssh security</a></td>
260
+<td class="org-left"><a href="#orgf204ba9">Improving ssh security</a></td>
178 261
 </tr>
179 262
 
180 263
 <tr>
181
-<td class="org-left"><a href="#orgb2796ac">Administrating the system via an onion address (Tor)</a></td>
264
+<td class="org-left"><a href="#orgff695b2">Administrating the system via an onion address (Tor)</a></td>
182 265
 </tr>
183 266
 
184 267
 <tr>
@@ -190,46 +273,46 @@ for the JavaScript code in this tag.
190 273
 </tr>
191 274
 
192 275
 <tr>
193
-<td class="org-left"><a href="#orgc2bb731">Syncing to the Cloud</a></td>
276
+<td class="org-left"><a href="#orgfda2e39">Syncing to the Cloud</a></td>
194 277
 </tr>
195 278
 
196 279
 <tr>
197
-<td class="org-left"><a href="#org1ddcb07">Play Music</a></td>
280
+<td class="org-left"><a href="#orga6c2960">Play Music</a></td>
198 281
 </tr>
199 282
 
200 283
 <tr>
201
-<td class="org-left"><a href="#orgbabb10f">Microblogging (GNU Social)</a></td>
284
+<td class="org-left"><a href="#orge9a2bc5">Microblogging (GNU Social)</a></td>
202 285
 </tr>
203 286
 
204 287
 <tr>
205
-<td class="org-left"><a href="#orga473035">Sharing things</a></td>
288
+<td class="org-left"><a href="#orgdf12db8">Sharing things</a></td>
206 289
 </tr>
207 290
 
208 291
 <tr>
209
-<td class="org-left"><a href="#orgf45009f">Social Network</a></td>
292
+<td class="org-left"><a href="#org59e3dff">Social Network</a></td>
210 293
 </tr>
211 294
 
212 295
 <tr>
213
-<td class="org-left"><a href="#org66d64b7">Chat Services</a></td>
296
+<td class="org-left"><a href="#org06dfa0b">Chat Services</a></td>
214 297
 </tr>
215 298
 
216 299
 <tr>
217
-<td class="org-left"><a href="#org4462005">RSS Reader</a></td>
300
+<td class="org-left"><a href="#org5280061">RSS Reader</a></td>
218 301
 </tr>
219 302
 
220 303
 <tr>
221
-<td class="org-left"><a href="#org9b5b9f1">Git Projects</a></td>
304
+<td class="org-left"><a href="#org544196a">Git Projects</a></td>
222 305
 </tr>
223 306
 
224 307
 <tr>
225
-<td class="org-left"><a href="#orgd9893b9">Adding or removing users</a></td>
308
+<td class="org-left"><a href="#org2ae50b8">Adding or removing users</a></td>
226 309
 </tr>
227 310
 </tbody>
228 311
 </table>
229 312
 
230
-<div id="outline-container-org1926434" class="outline-2">
231
-<h2 id="org1926434">Readme</h2>
232
-<div class="outline-text-2" id="text-org1926434">
313
+<div id="outline-container-orgfaa2031" class="outline-2">
314
+<h2 id="orgfaa2031">Readme</h2>
315
+<div class="outline-text-2" id="text-orgfaa2031">
233 316
 <p>
234 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 318
 </p>
@@ -250,9 +333,9 @@ To exit you can either just close the terminal or use <b>CTRL-x CTRL-c</b> follo
250 333
 </p>
251 334
 </div>
252 335
 </div>
253
-<div id="outline-container-org5fb6f93" class="outline-2">
254
-<h2 id="org5fb6f93">Improving ssh security</h2>
255
-<div class="outline-text-2" id="text-org5fb6f93">
336
+<div id="outline-container-orgf204ba9" class="outline-2">
337
+<h2 id="orgf204ba9">Improving ssh security</h2>
338
+<div class="outline-text-2" id="text-orgf204ba9">
256 339
 <p>
257 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 341
 </p>
@@ -305,9 +388,9 @@ If you wish to only use ssh keys then log in to the Freedombone, become the root
305 388
 </div>
306 389
 </div>
307 390
 
308
-<div id="outline-container-orgb2796ac" class="outline-2">
309
-<h2 id="orgb2796ac">Administrating the system via an onion address (Tor)</h2>
310
-<div class="outline-text-2" id="text-orgb2796ac">
391
+<div id="outline-container-orgff695b2" class="outline-2">
392
+<h2 id="orgff695b2">Administrating the system via an onion address (Tor)</h2>
393
+<div class="outline-text-2" id="text-orgff695b2">
311 394
 <p>
312 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 396
 </p>
@@ -353,9 +436,9 @@ Subsequently even if dynamic DNS isn't working you may still be able to administ
353 436
 </p>
354 437
 </div>
355 438
 </div>
356
-<div id="outline-container-orgc2bb731" class="outline-2">
357
-<h2 id="orgc2bb731">Syncing to the Cloud</h2>
358
-<div class="outline-text-2" id="text-orgc2bb731">
439
+<div id="outline-container-orgfda2e39" class="outline-2">
440
+<h2 id="orgfda2e39">Syncing to the Cloud</h2>
441
+<div class="outline-text-2" id="text-orgfda2e39">
359 442
 <p>
360 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 444
 </p>
@@ -365,9 +448,9 @@ Freedombone provides Syncthing shared directories for each user on the system, p
365 448
 </p>
366 449
 </div>
367 450
 
368
-<div id="outline-container-orgc470512" class="outline-3">
369
-<h3 id="orgc470512">On a laptop</h3>
370
-<div class="outline-text-3" id="text-orgc470512">
451
+<div id="outline-container-orgdabb2ab" class="outline-3">
452
+<h3 id="orgdabb2ab">On a laptop</h3>
453
+<div class="outline-text-3" id="text-orgdabb2ab">
371 454
 <p>
372 455
 Install syncthing:
373 456
 </p>
@@ -422,9 +505,9 @@ Now wait for a few minutes. Eventually you will see two messages appear within t
422 505
 </p>
423 506
 </div>
424 507
 </div>
425
-<div id="outline-container-orgf347aa8" class="outline-3">
426
-<h3 id="orgf347aa8">On Android</h3>
427
-<div class="outline-text-3" id="text-orgf347aa8">
508
+<div id="outline-container-orgde317e5" class="outline-3">
509
+<h3 id="orgde317e5">On Android</h3>
510
+<div class="outline-text-3" id="text-orgde317e5">
428 511
 <p>
429 512
 Install Syncthing and Connectbot from F-droid.
430 513
 </p>
@@ -455,12 +538,12 @@ Now wait for a few minutes or more. Eventually you should receive two notificati
455 538
 </div>
456 539
 </div>
457 540
 </div>
458
-<div id="outline-container-org1ddcb07" class="outline-2">
459
-<h2 id="org1ddcb07">Play Music</h2>
460
-<div class="outline-text-2" id="text-org1ddcb07">
461
-</div><div id="outline-container-org13c1700" class="outline-3">
462
-<h3 id="org13c1700">With the DLNA service</h3>
463
-<div class="outline-text-3" id="text-org13c1700">
541
+<div id="outline-container-orga6c2960" class="outline-2">
542
+<h2 id="orga6c2960">Play Music</h2>
543
+<div class="outline-text-2" id="text-orga6c2960">
544
+</div><div id="outline-container-org3ece73a" class="outline-3">
545
+<h3 id="org3ece73a">With the DLNA service</h3>
546
+<div class="outline-text-3" id="text-org3ece73a">
464 547
 <p>
465 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 549
 </p>
@@ -501,9 +584,9 @@ The DLNA service will only work within your local home network, and isn't remote
501 584
 </div>
502 585
 </div>
503 586
 
504
-<div id="outline-container-orgbabb10f" class="outline-2">
505
-<h2 id="orgbabb10f">Microblogging (GNU Social)</h2>
506
-<div class="outline-text-2" id="text-orgbabb10f">
587
+<div id="outline-container-orge9a2bc5" class="outline-2">
588
+<h2 id="orge9a2bc5">Microblogging (GNU Social)</h2>
589
+<div class="outline-text-2" id="text-orge9a2bc5">
507 590
 <p>
508 591
 To log into your GNU Social site first obtain your username and password from the "microblogging" section of the readme file.
509 592
 </p>
@@ -532,9 +615,9 @@ GNU Social has a clutter-free mobile user interface which can be accessed via a
532 615
 </div>
533 616
 </div>
534 617
 
535
-<div id="outline-container-orga473035" class="outline-2">
536
-<h2 id="orga473035">Sharing things</h2>
537
-<div class="outline-text-2" id="text-orga473035">
618
+<div id="outline-container-orgdf12db8" class="outline-2">
619
+<h2 id="orgdf12db8">Sharing things</h2>
620
+<div class="outline-text-2" id="text-orgdf12db8">
538 621
 <p>
539 622
 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 623
 </p>
@@ -561,20 +644,20 @@ The "<i>catalog</i>" button then allows you to search for shared things within t
561 644
 </div>
562 645
 </div>
563 646
 
564
-<div id="outline-container-orgf45009f" class="outline-2">
565
-<h2 id="orgf45009f">Social Network</h2>
566
-<div class="outline-text-2" id="text-orgf45009f">
567
-</div><div id="outline-container-org51aedcc" class="outline-3">
568
-<h3 id="org51aedcc">Domains</h3>
569
-<div class="outline-text-3" id="text-org51aedcc">
647
+<div id="outline-container-org59e3dff" class="outline-2">
648
+<h2 id="org59e3dff">Social Network</h2>
649
+<div class="outline-text-2" id="text-org59e3dff">
650
+</div><div id="outline-container-org8777e8d" class="outline-3">
651
+<h3 id="org8777e8d">Domains</h3>
652
+<div class="outline-text-3" id="text-org8777e8d">
570 653
 <p>
571 654
 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 655
 </p>
573 656
 </div>
574 657
 </div>
575
-<div id="outline-container-org93f247" class="outline-3">
576
-<h3 id="org93f247">Initial install</h3>
577
-<div class="outline-text-3" id="text-org93f247">
658
+<div id="outline-container-org36e514e" class="outline-3">
659
+<h3 id="org36e514e">Initial install</h3>
660
+<div class="outline-text-3" id="text-org36e514e">
578 661
 <p>
579 662
 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 663
 </p>
@@ -588,19 +671,19 @@ On first visiting your Hubzilla site you'll see the login screen. The first thin
588 671
 </div>
589 672
 </div>
590 673
 
591
-<div id="outline-container-org66d64b7" class="outline-2">
592
-<h2 id="org66d64b7">Chat Services</h2>
593
-<div class="outline-text-2" id="text-org66d64b7">
594
-</div><div id="outline-container-orgca6709b" class="outline-3">
595
-<h3 id="orgca6709b">IRC</h3>
596
-<div class="outline-text-3" id="text-orgca6709b">
674
+<div id="outline-container-org06dfa0b" class="outline-2">
675
+<h2 id="org06dfa0b">Chat Services</h2>
676
+<div class="outline-text-2" id="text-org06dfa0b">
677
+</div><div id="outline-container-org103cad0" class="outline-3">
678
+<h3 id="org103cad0">IRC</h3>
679
+<div class="outline-text-3" id="text-org103cad0">
597 680
 <p>
598 681
 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 682
 </p>
600 683
 </div>
601
-<div id="outline-container-orgee3d8b3" class="outline-4">
602
-<h4 id="orgee3d8b3">Irssi</h4>
603
-<div class="outline-text-4" id="text-orgee3d8b3">
684
+<div id="outline-container-orga0b6c1a" class="outline-4">
685
+<h4 id="orga0b6c1a">Irssi</h4>
686
+<div class="outline-text-4" id="text-orga0b6c1a">
604 687
 <p>
605 688
 The easiest way to use irssi is to connect to your system, like this:
606 689
 </p>
@@ -616,9 +699,9 @@ Then select <b>IRC</b> from the menu. However, other than via this method using
616 699
 </p>
617 700
 </div>
618 701
 </div>
619
-<div id="outline-container-org16e0031" class="outline-4">
620
-<h4 id="org16e0031">HexChat</h4>
621
-<div class="outline-text-4" id="text-org16e0031">
702
+<div id="outline-container-orgeddf14f" class="outline-4">
703
+<h4 id="orgeddf14f">HexChat</h4>
704
+<div class="outline-text-4" id="text-orgeddf14f">
622 705
 <p>
623 706
 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 707
 </p>
@@ -796,9 +879,9 @@ Click <b>close</b> and then <b>connect</b>.
796 879
 </div>
797 880
 </div>
798 881
 
799
-<div id="outline-container-orge224ef5" class="outline-4">
800
-<h4 id="orge224ef5">Emacs</h4>
801
-<div class="outline-text-4" id="text-orge224ef5">
882
+<div id="outline-container-org95f8409" class="outline-4">
883
+<h4 id="org95f8409">Emacs</h4>
884
+<div class="outline-text-4" id="text-org95f8409">
802 885
 <p>
803 886
 If you are an Emacs user then you can also connect to your IRC server via Emacs.
804 887
 </p>
@@ -831,9 +914,9 @@ Add the following to your Emacs configuration file:
831 914
 </div>
832 915
 </div>
833 916
 </div>
834
-<div id="outline-container-org76d34a2" class="outline-4">
835
-<h4 id="org76d34a2">Changing or removing the IRC password</h4>
836
-<div class="outline-text-4" id="text-org76d34a2">
917
+<div id="outline-container-org3ca7e1c" class="outline-4">
918
+<h4 id="org3ca7e1c">Changing or removing the IRC password</h4>
919
+<div class="outline-text-4" id="text-org3ca7e1c">
837 920
 <p>
838 921
 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 922
 </p>
@@ -851,12 +934,12 @@ Select <i>Administrator controls</i> then <b>IRC Menu</b> and then change the pa
851 934
 </div>
852 935
 </div>
853 936
 
854
-<div id="outline-container-org189ee65" class="outline-3">
855
-<h3 id="org189ee65">XMPP/Jabber</h3>
856
-<div class="outline-text-3" id="text-org189ee65">
857
-</div><div id="outline-container-org64f1216" class="outline-4">
858
-<h4 id="org64f1216">Using with Profanity</h4>
859
-<div class="outline-text-4" id="text-org64f1216">
937
+<div id="outline-container-orgd87b38d" class="outline-3">
938
+<h3 id="orgd87b38d">XMPP/Jabber</h3>
939
+<div class="outline-text-3" id="text-orgd87b38d">
940
+</div><div id="outline-container-org77f18db" class="outline-4">
941
+<h4 id="org77f18db">Using with Profanity</h4>
942
+<div class="outline-text-4" id="text-org77f18db">
860 943
 <p>
861 944
 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.
862 945
 </p>
@@ -946,9 +1029,9 @@ When accessed via the user control panel the client is automatically routed thro
946 1029
 </p>
947 1030
 </div>
948 1031
 </div>
949
-<div id="outline-container-org4a3660d" class="outline-4">
950
-<h4 id="org4a3660d">Using with Jitsi</h4>
951
-<div class="outline-text-4" id="text-org4a3660d">
1032
+<div id="outline-container-orgc2a3e03" class="outline-4">
1033
+<h4 id="orgc2a3e03">Using with Jitsi</h4>
1034
+<div class="outline-text-4" id="text-orgc2a3e03">
952 1035
 <p>
953 1036
 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.
954 1037
 </p>
@@ -978,9 +1061,9 @@ You can also <a href="https://www.youtube.com/watch?v=vgx7VSrDGjk">see this vide
978 1061
 </p>
979 1062
 </div>
980 1063
 </div>
981
-<div id="outline-container-orgfb753bf" class="outline-4">
982
-<h4 id="orgfb753bf">Using with Ubuntu</h4>
983
-<div class="outline-text-4" id="text-orgfb753bf">
1064
+<div id="outline-container-org9abfa3a" class="outline-4">
1065
+<h4 id="org9abfa3a">Using with Ubuntu</h4>
1066
+<div class="outline-text-4" id="text-org9abfa3a">
984 1067
 <p>
985 1068
 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.
986 1069
 </p>
@@ -998,17 +1081,17 @@ Click on <b>Advanced</b> and make sure that <b>Encryption required</b> and <b>Ig
998 1081
 </p>
999 1082
 </div>
1000 1083
 </div>
1001
-<div id="outline-container-orgaffd957" class="outline-4">
1002
-<h4 id="orgaffd957">Using Tor Messenger</h4>
1003
-<div class="outline-text-4" id="text-orgaffd957">
1084
+<div id="outline-container-orgf53437e" class="outline-4">
1085
+<h4 id="orgf53437e">Using Tor Messenger</h4>
1086
+<div class="outline-text-4" id="text-orgf53437e">
1004 1087
 <p>
1005 1088
 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.
1006 1089
 </p>
1007 1090
 </div>
1008 1091
 </div>
1009
-<div id="outline-container-orgcde1281" class="outline-4">
1010
-<h4 id="orgcde1281">Using with Android</h4>
1011
-<div class="outline-text-4" id="text-orgcde1281">
1092
+<div id="outline-container-org44022ff" class="outline-4">
1093
+<h4 id="org44022ff">Using with Android</h4>
1094
+<div class="outline-text-4" id="text-org44022ff">
1012 1095
 <p>
1013 1096
 Install <a href="https://f-droid.org/">F-Droid</a>
1014 1097
 </p>
@@ -1044,16 +1127,16 @@ Then select <b>Next</b>. When chatting you can use the lock icon to encrypt your
1044 1127
 </div>
1045 1128
 </div>
1046 1129
 </div>
1047
-<div id="outline-container-org9cedaad" class="outline-3">
1048
-<h3 id="org9cedaad">Tox</h3>
1049
-<div class="outline-text-3" id="text-org9cedaad">
1130
+<div id="outline-container-orgfe7d1f5" class="outline-3">
1131
+<h3 id="orgfe7d1f5">Tox</h3>
1132
+<div class="outline-text-3" id="text-orgfe7d1f5">
1050 1133
 <p>
1051 1134
 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.
1052 1135
 </p>
1053 1136
 </div>
1054
-<div id="outline-container-orgf846bd2" class="outline-4">
1055
-<h4 id="orgf846bd2">Using the Toxic client</h4>
1056
-<div class="outline-text-4" id="text-orgf846bd2">
1137
+<div id="outline-container-org51f165c" class="outline-4">
1138
+<h4 id="org51f165c">Using the Toxic client</h4>
1139
+<div class="outline-text-4" id="text-org51f165c">
1057 1140
 <p>
1058 1141
 Log into your system with:
1059 1142
 </p>
@@ -1077,20 +1160,20 @@ Then from the menu select <b>Tox Chat</b>. Tox is encrypted by default and also
1077 1160
 </div>
1078 1161
 </div>
1079 1162
 
1080
-<div id="outline-container-org154d3f4" class="outline-3">
1081
-<h3 id="org154d3f4">VoIP (Voice and text chat)</h3>
1082
-<div class="outline-text-3" id="text-org154d3f4">
1083
-</div><div id="outline-container-orgf46f25b" class="outline-4">
1084
-<h4 id="orgf46f25b">Text chat</h4>
1085
-<div class="outline-text-4" id="text-orgf46f25b">
1163
+<div id="outline-container-org0585836" class="outline-3">
1164
+<h3 id="org0585836">VoIP (Voice and text chat)</h3>
1165
+<div class="outline-text-3" id="text-org0585836">
1166
+</div><div id="outline-container-org0f28f0c" class="outline-4">
1167
+<h4 id="org0f28f0c">Text chat</h4>
1168
+<div class="outline-text-4" id="text-org0f28f0c">
1086 1169
 <p>
1087 1170
 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.
1088 1171
 </p>
1089 1172
 </div>
1090 1173
 </div>
1091
-<div id="outline-container-org7c63287" class="outline-4">
1092
-<h4 id="org7c63287">Using with Ubuntu</h4>
1093
-<div class="outline-text-4" id="text-org7c63287">
1174
+<div id="outline-container-orgb7d3d31" class="outline-4">
1175
+<h4 id="orgb7d3d31">Using with Ubuntu</h4>
1176
+<div class="outline-text-4" id="text-orgb7d3d31">
1094 1177
 <p>
1095 1178
 Within the software center search for "mumble" and install the client then run it. Skip through the audio setup wizard.
1096 1179
 </p>
@@ -1100,9 +1183,9 @@ Click on "add new" to add a new server and enter the default domain name for the
1100 1183
 </p>
1101 1184
 </div>
1102 1185
 </div>
1103
-<div id="outline-container-org3ca3f43" class="outline-4">
1104
-<h4 id="org3ca3f43">Using with Android</h4>
1105
-<div class="outline-text-4" id="text-org3ca3f43">
1186
+<div id="outline-container-org0a46003" class="outline-4">
1187
+<h4 id="org0a46003">Using with Android</h4>
1188
+<div class="outline-text-4" id="text-org0a46003">
1106 1189
 <p>
1107 1190
 Install <a href="https://f-droid.org/">F-Droid</a>
1108 1191
 </p>
@@ -1137,24 +1220,24 @@ Selecting the server by pressing on it then connects you to the server so that y
1137 1220
 </div>
1138 1221
 </div>
1139 1222
 </div>
1140
-<div id="outline-container-org1ddc087" class="outline-3">
1141
-<h3 id="org1ddc087">SIP phones</h3>
1142
-<div class="outline-text-3" id="text-org1ddc087">
1223
+<div id="outline-container-orgc26c863" class="outline-3">
1224
+<h3 id="orgc26c863">SIP phones</h3>
1225
+<div class="outline-text-3" id="text-orgc26c863">
1143 1226
 <p>
1144 1227
 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.
1145 1228
 </p>
1146 1229
 </div>
1147
-<div id="outline-container-org4c039c2" class="outline-4">
1148
-<h4 id="org4c039c2">About ZRTP</h4>
1149
-<div class="outline-text-4" id="text-org4c039c2">
1230
+<div id="outline-container-orgad89a47" class="outline-4">
1231
+<h4 id="orgad89a47">About ZRTP</h4>
1232
+<div class="outline-text-4" id="text-orgad89a47">
1150 1233
 <p>
1151 1234
 <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.
1152 1235
 </p>
1153 1236
 </div>
1154 1237
 </div>
1155
-<div id="outline-container-orga0c42eb" class="outline-4">
1156
-<h4 id="orga0c42eb">Using with CSIPSimple</h4>
1157
-<div class="outline-text-4" id="text-orga0c42eb">
1238
+<div id="outline-container-orgbb6b51d" class="outline-4">
1239
+<h4 id="orgbb6b51d">Using with CSIPSimple</h4>
1240
+<div class="outline-text-4" id="text-orgbb6b51d">
1158 1241
 <p>
1159 1242
 Add an account. Under <b>General Wizards</b> choose <b>Expert</b> and enter the following details:
1160 1243
 </p>
@@ -1210,9 +1293,9 @@ If everything is working the account should appear in green with a status of <b>
1210 1293
 </p>
1211 1294
 </div>
1212 1295
 </div>
1213
-<div id="outline-container-org5746445" class="outline-4">
1214
-<h4 id="org5746445">Using with Ring</h4>
1215
-<div class="outline-text-4" id="text-org5746445">
1296
+<div id="outline-container-org3003833" class="outline-4">
1297
+<h4 id="org3003833">Using with Ring</h4>
1298
+<div class="outline-text-4" id="text-org3003833">
1216 1299
 <p>
1217 1300
 From the menu select <b>Manage accounts</b>.
1218 1301
 </p>
@@ -1265,9 +1348,9 @@ Select the <b>Security</b> tab. Under <b>SRTP Key Exchange</b> select <b>ZRTP</b
1265 1348
 </div>
1266 1349
 </div>
1267 1350
 
1268
-<div id="outline-container-org4462005" class="outline-2">
1269
-<h2 id="org4462005">RSS Reader</h2>
1270
-<div class="outline-text-2" id="text-org4462005">
1351
+<div id="outline-container-org5280061" class="outline-2">
1352
+<h2 id="org5280061">RSS Reader</h2>
1353
+<div class="outline-text-2" id="text-org5280061">
1271 1354
 <p>
1272 1355
 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.
1273 1356
 </p>
@@ -1277,7 +1360,11 @@ The way that RSS reading is set up on Freedombone gives you strong reading priva
1277 1360
 <p><img src="images/rss_reader_mobile.jpg" alt="rss_reader_mobile.jpg" />
1278 1361
 </p>
1279 1362
 </div>
1363
+</div>
1280 1364
 
1365
+<div id="outline-container-org340f3fb" class="outline-3">
1366
+<h3 id="org340f3fb">Finding the onion address</h3>
1367
+<div class="outline-text-3" id="text-org340f3fb">
1281 1368
 <p>
1282 1369
 See the control panel for the RSS reader onion address.
1283 1370
 </p>
@@ -1299,9 +1386,14 @@ The RSS reader is accessible only via an onion address. This provides a reasonab
1299 1386
 <p>
1300 1387
 To set up the system open <a href="http://rss_reader_onion_address/">http://rss_reader_onion_address/</a> and log in with username <b>admin</b> and the password obtained either at the beginning of the install or from the README file in your home directory. You can then select the <b>Actions</b> menu and begin adding your feeds.
1301 1388
 </p>
1389
+</div>
1390
+</div>
1302 1391
 
1392
+<div id="outline-container-org8f21a01" class="outline-3">
1393
+<h3 id="org8f21a01">On mobile</h3>
1394
+<div class="outline-text-3" id="text-org8f21a01">
1303 1395
 <p>
1304
-To access the RSS reader from a mobile device you can install a Tor compatible browser such as Orbot+OrWeb. 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.
1396
+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.
1305 1397
 </p>
1306 1398
 
1307 1399
 <blockquote>
@@ -1311,9 +1403,30 @@ A note for the paranoid is that on mobile devices you get redirected to a differ
1311 1403
 </blockquote>
1312 1404
 </div>
1313 1405
 </div>
1314
-<div id="outline-container-org9b5b9f1" class="outline-2">
1315
-<h2 id="org9b5b9f1">Git Projects</h2>
1316
-<div class="outline-text-2" id="text-org9b5b9f1">
1406
+<div id="outline-container-org406981f" class="outline-3">
1407
+<h3 id="org406981f">With Emacs</h3>
1408
+<div class="outline-text-3" id="text-org406981f">
1409
+<p>
1410
+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.
1411
+</p>
1412
+
1413
+<p>
1414
+Add the following to your configuration, changing the address and password as appropriate.
1415
+</p>
1416
+
1417
+<div class="org-src-container">
1418
+
1419
+<pre class="src src-emacs-lisp">(setq avandu-tt-rss-api-url <span class="org-string">"http://rss_reader_onion_address/api/"</span>
1420
+      avandu-user <span class="org-string">"admin"</span>
1421
+      avandu-password <span class="org-string">"mypassword"</span>)
1422
+</pre>
1423
+</div>
1424
+</div>
1425
+</div>
1426
+</div>
1427
+<div id="outline-container-org544196a" class="outline-2">
1428
+<h2 id="org544196a">Git Projects</h2>
1429
+<div class="outline-text-2" id="text-org544196a">
1317 1430
 <p>
1318 1431
 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.
1319 1432
 </p>
@@ -1351,9 +1464,9 @@ This will stop any spam accounts being created by random strangers or bots. You
1351 1464
 </p>
1352 1465
 </div>
1353 1466
 </div>
1354
-<div id="outline-container-orgd9893b9" class="outline-2">
1355
-<h2 id="orgd9893b9">Adding or removing users</h2>
1356
-<div class="outline-text-2" id="text-orgd9893b9">
1467
+<div id="outline-container-org2ae50b8" class="outline-2">
1468
+<h2 id="org2ae50b8">Adding or removing users</h2>
1469
+<div class="outline-text-2" id="text-org2ae50b8">
1357 1470
 <p>
1358 1471
 Log into the system with:
1359 1472
 </p>