]> pere.pagekite.me Git - homepage.git/blob - blog/index.rss
New post.
[homepage.git] / blog / index.rss
1 <?xml version="1.0" encoding="utf-8"?>
2 <rss version='2.0' xmlns:lj='http://www.livejournal.org/rss/lj/1.0/' xmlns:atom="http://www.w3.org/2005/Atom">
3 <channel>
4 <title>Petter Reinholdtsen</title>
5 <description></description>
6 <link>http://people.skolelinux.org/pere/blog/</link>
7 <atom:link href="http://people.skolelinux.org/pere/blog/index.rss" rel="self" type="application/rss+xml" />
8
9 <item>
10 <title>Debian APT upgrade without enough free space on the disk...</title>
11 <link>http://people.skolelinux.org/pere/blog/Debian_APT_upgrade_without_enough_free_space_on_the_disk___.html</link>
12 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_APT_upgrade_without_enough_free_space_on_the_disk___.html</guid>
13 <pubDate>Sun, 8 Jul 2018 12:10:00 +0200</pubDate>
14 <description>&lt;p&gt;Quite regularly, I let my Debian Sid/Unstable chroot stay untouch
15 for a while, and when I need to update it there is not enough free
16 space on the disk for apt to do a normal &#39;apt upgrade&#39;. I normally
17 would resolve the issue by doing &#39;apt install &amp;lt;somepackages&amp;gt;&#39; to
18 upgrade only some of the packages in one batch, until the amount of
19 packages to download fall below the amount of free space available.
20 Today, I had about 500 packages to upgrade, and after a while I got
21 tired of trying to install chunks of packages manually. I concluded
22 that I did not have the spare hours required to complete the task, and
23 decided to see if I could automate it. I came up with this small
24 script which I call &#39;apt-in-chunks&#39;:&lt;/p&gt;
25
26 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
27 #!/bin/sh
28 #
29 # Upgrade packages when the disk is too full to upgrade every
30 # upgradable package in one lump. Fetching packages to upgrade using
31 # apt, and then installing using dpkg, to avoid changing the package
32 # flag for manual/automatic.
33
34 set -e
35
36 ignore() {
37 if [ &quot;$1&quot; ]; then
38 grep -v &quot;$1&quot;
39 else
40 cat
41 fi
42 }
43
44 for p in $(apt list --upgradable | ignore &quot;$@&quot; |cut -d/ -f1 | grep -v &#39;^Listing...&#39;); do
45 echo &quot;Upgrading $p&quot;
46 apt clean
47 apt install --download-only -y $p
48 for f in /var/cache/apt/archives/*.deb; do
49 if [ -e &quot;$f&quot; ]; then
50 dpkg -i /var/cache/apt/archives/*.deb
51 break
52 fi
53 done
54 done
55 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
56
57 &lt;p&gt;The script will extract the list of packages to upgrade, try to
58 download the packages needed to upgrade one package, install the
59 downloaded packages using dpkg. The idea is to upgrade packages
60 without changing the APT mark for the package (ie the one recording of
61 the package was manually requested or pulled in as a dependency). To
62 use it, simply run it as root from the command line. If it fail, try
63 &#39;apt install -f&#39; to clean up the mess and run the script again. This
64 might happen if the new packages conflict with one of the old
65 packages. dpkg is unable to remove, while apt can do this.&lt;/p&gt;
66
67 &lt;p&gt;It take one option, a package to ignore in the list of packages to
68 upgrade. The option to ignore a package is there to be able to skip
69 the packages that are simply too large to unpack. Today this was
70 &#39;ghc&#39;, but I have run into other large packages causing similar
71 problems earlier (like TeX).&lt;/p&gt;
72
73 &lt;p&gt;Update 2018-07-08: Thanks to Paul Wise, I am aware of two
74 alternative ways to handle this. The &quot;unattended-upgrades
75 --minimal-upgrade-steps&quot; option will try to calculate upgrade sets for
76 each package to upgrade, and then upgrade them in order, smallest set
77 first. It might be a better option than my above mentioned script.
78 Also, &quot;aptutude upgrade&quot; can upgrade single packages, thus avoiding
79 the need for using &quot;dpkg -i&quot; in the script above.&lt;/p&gt;
80
81 &lt;p&gt;As usual, if you use Bitcoin and want to show your support of my
82 activities, please send Bitcoin donations to my address
83 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
84 </description>
85 </item>
86
87 <item>
88 <title>The worlds only stone power plant?</title>
89 <link>http://people.skolelinux.org/pere/blog/The_worlds_only_stone_power_plant_.html</link>
90 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_worlds_only_stone_power_plant_.html</guid>
91 <pubDate>Sat, 30 Jun 2018 10:35:00 +0200</pubDate>
92 <description>&lt;p&gt;So far, at least hydro-electric power, coal power, wind power,
93 solar power, and wood power are well known. Until a few days ago, I
94 had never heard of stone power. Then I learn about a quarry in a
95 mountain in
96 &lt;a href=&quot;https://en.wikipedia.org/wiki/Bremanger&quot;&gt;Bremanger&lt;/a&gt; i
97 Norway, where
98 &lt;a href=&quot;https://www.bontrup.com/en/activities/raw-materials/bremanger-quarry/&quot;&gt;the
99 Bremanger Quarry&lt;/a&gt; company is extracting stone and dumping the stone
100 into a shaft leading to its shipping harbour. This downward movement
101 in this shaft is used to produce electricity. In short, it is using
102 falling rocks instead of falling water to produce electricity, and
103 according to its own statements it is producing more power than it is
104 using, and selling the surplus electricity to the Norwegian power
105 grid. I find the concept truly amazing. Is this the worlds only
106 stone power plant?&lt;/p&gt;
107
108 &lt;p&gt;As usual, if you use Bitcoin and want to show your support of my
109 activities, please send Bitcoin donations to my address
110 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
111 </description>
112 </item>
113
114 <item>
115 <title>Add-on to control the projector from within Kodi</title>
116 <link>http://people.skolelinux.org/pere/blog/Add_on_to_control_the_projector_from_within_Kodi.html</link>
117 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Add_on_to_control_the_projector_from_within_Kodi.html</guid>
118 <pubDate>Tue, 26 Jun 2018 23:55:00 +0200</pubDate>
119 <description>&lt;p&gt;My movie playing setup involve &lt;a href=&quot;https://kodi.tv/&quot;&gt;Kodi&lt;/a&gt;,
120 &lt;a href=&quot;https://openelec.tv&quot;&gt;OpenELEC&lt;/a&gt; (probably soon to be
121 replaced with &lt;a href=&quot;https://libreelec.tv/&quot;&gt;LibreELEC&lt;/a&gt;) and an
122 Infocus IN76 video projector. My projector can be controlled via both
123 a infrared remote controller, and a RS-232 serial line. The vendor of
124 my projector, &lt;a href=&quot;https://www.infocus.com/&quot;&gt;InFocus&lt;/a&gt;, had been
125 sensible enough to document the serial protocol in its user manual, so
126 it is easily available, and I used it some years ago to write
127 &lt;a href=&quot;https://github.com/petterreinholdtsen/infocus-projector-control&quot;&gt;a
128 small script to control the projector&lt;/a&gt;. For a while now, I longed
129 for a setup where the projector was controlled by Kodi, for example in
130 such a way that when the screen saver went on, the projector was
131 turned off, and when the screen saver exited, the projector was turned
132 on again.&lt;/p&gt;
133
134 &lt;p&gt;A few days ago, with very good help from parts of my family, I
135 managed to find a Kodi Add-on for controlling a Epson projector, and
136 got in touch with its author to see if we could join forces and make a
137 Add-on with support for several projectors. To my pleasure, he was
138 positive to the idea, and we set out to add InFocus support to his
139 add-on, and make the add-on suitable for the official Kodi add-on
140 repository.&lt;/p&gt;
141
142 &lt;p&gt;The Add-on is now working (for me, at least), with a few minor
143 adjustments. The most important change I do relative to the master
144 branch in the github repository is embedding the
145 &lt;a href=&quot;https://github.com/pyserial/pyserial&quot;&gt;pyserial module&lt;/a&gt; in
146 the add-on. The long term solution is to make a &quot;script&quot; type
147 pyserial module for Kodi, that can be pulled in as a dependency in
148 Kodi. But until that in place, I embed it.&lt;/p&gt;
149
150 &lt;p&gt;The add-on can be configured to turn on the projector when Kodi
151 starts, off when Kodi stops as well as turn the projector off when the
152 screensaver start and on when the screesaver stops. It can also be
153 told to set the projector source when turning on the projector.
154
155 &lt;p&gt;If this sound interesting to you, check out
156 &lt;a href=&quot;https://github.com/fredrik-eriksson/kodi_projcontrol&quot;&gt;the
157 project github repository&lt;/a&gt;. Perhaps you can send patches to
158 support your projector too? As soon as we find time to wrap up the
159 latest changes, it should be available for easy installation using any
160 Kodi instance.&lt;/p&gt;
161
162 &lt;p&gt;For future improvements, I would like to add projector model
163 detection and the ability to adjust the brightness level of the
164 projector from within Kodi. We also need to figure out how to handle
165 the cooling period of the projector. My projector refuses to turn on
166 for 60 seconds after it was turned off. This is not handled well by
167 the add-on at the moment.&lt;/p&gt;
168
169 &lt;p&gt;As usual, if you use Bitcoin and want to show your support of my
170 activities, please send Bitcoin donations to my address
171 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
172 </description>
173 </item>
174
175 <item>
176 <title>youtube-dl for nedlasting fra NRK med undertekster - nice free software</title>
177 <link>http://people.skolelinux.org/pere/blog/youtube_dl_for_nedlasting_fra_NRK_med_undertekster___nice_free_software.html</link>
178 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/youtube_dl_for_nedlasting_fra_NRK_med_undertekster___nice_free_software.html</guid>
179 <pubDate>Sat, 28 Apr 2018 10:30:00 +0200</pubDate>
180 <description>&lt;p&gt;I &lt;a href=&quot;https://no.wikipedia.org/wiki/VHS&quot;&gt;VHS-kassettenes&lt;/a&gt;
181 tid var det rett frem å ta vare på et TV-program en ønsket å kunne se
182 senere, uten å være avhengig av at programmet ble sendt på nytt.
183 Kanskje ønsket en å se programmet på hytten der det ikke var
184 TV-signal, eller av andre grunner ha det tilgjengelig for fremtidig
185 fornøyelse. Dette er blitt vanskeligere med introduksjon av
186 digital-TV og webstreaming, der opptak til harddisk er utenfor de
187 flestes kontroll hvis de bruker ufri programvare og bokser kontrollert
188 av andre. Men for NRK her i Norge, finnes det heldigvis flere fri
189 programvare-alternativer, som jeg har
190 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Hvordan_enkelt_laste_ned_filmer_fra_NRK.html&quot;&gt;skrevet&lt;/a&gt;
191 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Hvordan_enkelt_laste_ned_filmer_fra_NRK_med_den__nye__l_sningen.html&quot;&gt;om&lt;/a&gt;
192 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Nedlasting_fra_NRK__som_Matroska_med_undertekster.html&quot;&gt;før&lt;/a&gt;.
193 Så lenge kilden for nedlastingen er lovlig lagt ut på nett (hvilket
194 jeg antar NRK gjør), så er slik lagring til privat bruk også lovlig i
195 Norge.&lt;/p&gt;
196
197 &lt;p&gt;Sist jeg så på saken, i 2016, nevnte jeg at
198 &lt;a href=&quot;https://rg3.github.com/youtube-dl/&quot;&gt;youtube-dl&lt;/a&gt; ikke kunne
199 bake undertekster fra NRK inn i videofilene, og at jeg derfor
200 foretrakk andre alternativer. Nylig oppdaget jeg at dette har endret
201 seg. Fordelen med youtube-dl er at den er tilgjengelig direkte fra
202 Linux-distribusjoner som &lt;a href=&quot;https://www.debian.org/&quot;&gt;Debian&lt;/a&gt;
203 og &lt;a href=&quot;https://www.ubuntu.com/&quot;&gt;Ubuntu&lt;/a&gt;, slik at en slipper å
204 finne ut selv hvordan en skal få dem til å virke.&lt;/p&gt;
205
206 &lt;p&gt;For å laste ned et NRK-innslag med undertekster, og få den norske
207 underteksten pakket inn i videofilen, så kan følgende kommando
208 brukes:&lt;/p&gt;
209
210 &lt;p&gt;&lt;pre&gt;
211 youtube-dl --write-sub --sub-format ttml \
212 --convert-subtitles srt --embed-subs \
213 https://tv.nrk.no/serie/ramm-ferdig-gaa/MUHU11000316/27-04-2018
214 &lt;/pre&gt;&lt;/p&gt;
215
216 &lt;p&gt;URL-eksemplet er dagens toppsak på tv.nrk.no. Resultatet er en
217 MP4-fil med filmen og undertekster som kan spilles av med VLC. Merk
218 at VLC ikke viser frem undertekster før du aktiverer dem. For å gjøre
219 det, høyreklikk med musa i fremviservinduet, velg menyvalget for
220 undertekst og så norsk språk. Jeg testet også &#39;--write-auto-sub&#39;,
221 men det kommandolinjeargumentet ser ikke ut til å fungere, så jeg
222 endte opp med settet med argumentlisten over, som jeg fant i en
223 feilrapport i youtube-dl-prosjektets samling over feilrapporter.&lt;/p&gt;
224
225 &lt;p&gt;Denne støtten i youtube-dl gjør det svært enkelt å lagre
226 NRK-innslag, det være seg nyheter, filmer, serier eller dokumentater,
227 for å ha dem tilgjengelig for fremtidig referanse og bruk, uavhengig
228 av hvor lenge innslagene ligger tilgjengelig hos NRK. Så får det ikke
229 hjelpe at NRKs jurister mener at det er
230 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Best___ikke_fortelle_noen_at_streaming_er_nedlasting___.html&quot;&gt;vesensforskjellig
231 å legge tilgjengelig for nedlasting og for streaming&lt;/a&gt;, når det rent
232 teknisk er samme sak.&lt;/p&gt;
233
234 &lt;p&gt;Programmet youtube-dl støtter også en rekke andre nettsteder, se
235 prosjektoversikten for
236 &lt;a href=&quot;http://rg3.github.io/youtube-dl/supportedsites.html&quot;&gt;en
237 komplett liste&lt;/a&gt;.&lt;/p&gt;
238 </description>
239 </item>
240
241 <item>
242 <title>Stortingsflertallet går inn for ny IP-basert sensurinfrastruktur i Norge</title>
243 <link>http://people.skolelinux.org/pere/blog/Stortingsflertallet_g_r_inn_for_ny_IP_basert_sensurinfrastruktur_i_Norge.html</link>
244 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Stortingsflertallet_g_r_inn_for_ny_IP_basert_sensurinfrastruktur_i_Norge.html</guid>
245 <pubDate>Tue, 24 Apr 2018 15:00:00 +0200</pubDate>
246 <description>&lt;p&gt;&lt;a href=&quot;https://www.vg.no/sport/i/J1g8zj/stortingsvedtak-snart-ip-blokkerer-utenlandske-spillselskaper&quot;&gt;VG&lt;/a&gt;,
247 &lt;a href=&quot;https://www.dagbladet.no/nyheter/stortinget-blokkerer-utenlandske-spillselskaper/69740219&quot;&gt;Dagbladet&lt;/a&gt;
248 og
249 &lt;a href=&quot;https://www.nrk.no/ostfold/tar-opp-kampen-mot-utenlandske-spillselskap-1.14021381&quot;&gt;NRK&lt;/a&gt;
250 melder i dag at flertallet i Familie- og kulturkomiteen på Stortinget
251 har bestemt seg for å introdusere en ny sensurinfrastruktur i Norge.
252 Fra før har Norge en «frivillig» sensurinfrastruktur basert på
253 DNS-navn, der de største ISP-ene basert på en liste med DNS-navn
254 forgifter DNS-svar og omdirigerer til et annet IP-nummer enn det som
255 ligger i DNS. Nå kommer altså IP-basert omdirigering i tillegg. Når
256 infrastrukturen er på plass, er sensur av IP-adresser redusert et
257 spørsmål om hvilke IP-nummer som skal blokkeres. Listen over
258 IP-adresser vil naturligvis endre seg etter hvert som myndighetene
259 endrer seg. Det er ingen betryggende tanke.&lt;/p&gt;
260 </description>
261 </item>
262
263 <item>
264 <title>En grunn til å takke nei til usikker digital post</title>
265 <link>http://people.skolelinux.org/pere/blog/En_grunn_til___takke_nei_til_usikker_digital_post.html</link>
266 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/En_grunn_til___takke_nei_til_usikker_digital_post.html</guid>
267 <pubDate>Mon, 2 Apr 2018 13:30:00 +0200</pubDate>
268 <description>&lt;p&gt;Brevpost er beskyttet av straffelovens bestemmelse som gjør det
269 kriminelt å åpne andres brev. Dette følger av (ny) straffelovs
270 &lt;a href=&quot;https://lovdata.no/dokument/NL/lov/2005-05-20-28205&quot;&gt;§ 205
271 (Krenkelse av retten til privat kommunikasjon)&lt;/a&gt;, som sier at «Med
272 bot eller fengsel inntil 2 år straffes den som uberettiget ... c)
273 åpner brev eller annen lukket skriftlig meddelelse som er adressert
274 til en annen, eller på annen måte skaffer seg uberettiget tilgang til
275 innholdet.» Dette gjelder såvel postbud som alle andre som har
276 befatning med brevet etter at avsender har befatning med et lukket
277 brev. Tilsvarende står også tidligere utgaver av den norske
278 straffeloven.&lt;/p&gt;
279
280 &lt;p&gt;Når en registrerer seg på usikre digitale postkasseløsningene, som
281 f.eks. Digipost og e-Boks, og slik tar disse i bruk, så gir en de som
282 står bak løsningene tillatelse til å åpne sine brev. Dette er
283 nødvendig for at innholdet i digital post skal kunne vises frem til
284 mottaker via tjenestens websider. Dermed gjelder ikke straffelovens
285 paragraf om forbud mot å åpne brev, da tilgangen ikke lenger er
286 uberettiget. En gir altså fremmede tilgang til å lese sin
287 korrespondanse. I tillegg vil bruk av slike usikre digitale
288 postbokser føre til at det blir registrert når du leser brevene, hvor
289 du befinner deg (vha. tilkoblingens IP-adresse), hvilket utstyr du
290 bruker og en rekke annen personlig informasjon som ikke er
291 tilgjengelig når papirpost brukes. Jeg foretrekker at det er
292 lovmessig beskyttelse av min korrespondanse, som jo inneholder privat
293 og personlig informasjon. Det bidrar til litt bedre vern av personlig
294 integritet i dagens norske samfunn.&lt;/p&gt;
295 </description>
296 </item>
297
298 <item>
299 <title>Self-appointed leaders of the Free World</title>
300 <link>http://people.skolelinux.org/pere/blog/Self_appointed_leaders_of_the_Free_World.html</link>
301 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Self_appointed_leaders_of_the_Free_World.html</guid>
302 <pubDate>Thu, 22 Mar 2018 11:00:00 +0100</pubDate>
303 <description>&lt;p&gt;The leaders of the worlds have started to congratulate the
304 re-elected Russian head of state, and this causes some criticism. I
305 am though a little fascinated by a comment from USA senator John McCain,
306 &lt;a href=&quot;http://thehill.com/homenews/senate/379339-mccain-rips-trumps-congratulatory-call-to-putin-as-insult-to-russian-people&quot;&gt;sited
307 by The Hill and others&lt;/a&gt;:
308
309 &lt;p&gt;&lt;blockquote&gt;
310 &lt;p&gt;&quot;An American president does not lead the Free World by
311 congratulating dictators on winning sham elections.&quot;&lt;/p&gt;
312 &lt;/blockquote&gt;&lt;/p&gt;
313
314 &lt;p&gt;While I totally agree with the senator here, the way the quote is
315 phrased make me suspect that he is unaware of the simple fact that USA
316 have not lead the Free World since at least before its government
317 &lt;a href=&quot;https://en.wikipedia.org/wiki/Maher_Arar&quot;&gt;kidnapped a
318 completely innocent Canadian citizen in transit on his way home to
319 Canada via John F. Kennedy International Airport in September 2002 and
320 sent him to be tortured in Syria for a year&lt;/a&gt;.&lt;/p&gt;
321
322 &lt;p&gt;USA might be running ahead, but the path they are taking is not the
323 one taken by any Free World.&lt;/p&gt;
324 </description>
325 </item>
326
327 <item>
328 <title>Facebooks ability to sell your personal information is the real Cambridge Analytica scandal</title>
329 <link>http://people.skolelinux.org/pere/blog/Facebooks_ability_to_sell_your_personal_information_is_the_real_Cambridge_Analytica_scandal.html</link>
330 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Facebooks_ability_to_sell_your_personal_information_is_the_real_Cambridge_Analytica_scandal.html</guid>
331 <pubDate>Wed, 21 Mar 2018 16:30:00 +0100</pubDate>
332 <description>&lt;p&gt;So, Cambridge Analytica is getting some well deserved criticism for
333 (mis)using information it got from Facebook about 50 million people,
334 mostly in the USA. What I find a bit surprising, is how little
335 criticism Facebook is getting for handing the information over to
336 Cambridge Analytica and others in the first place. And what about the
337 people handing their private and personal information to Facebook?
338 And last, but not least, what about the government offices who are
339 handing information about the visitors of their web pages to Facebook?
340 No-one who looked at the terms of use of Facebook should be surprised
341 that information about peoples interests, political views, personal
342 lifes and whereabouts would be sold by Facebook.&lt;/p&gt;
343
344 &lt;p&gt;What I find to be the real scandal is the fact that Facebook is
345 selling your personal information, not that one of the buyers used it
346 in a way Facebook did not approve when exposed. It is well known that
347 Facebook is selling out their users privacy, but a scandal
348 nevertheless. Of course the information provided to them by Facebook
349 would be misused by one of the parties given access to personal
350 information about the millions of Facebook users. Collected
351 information will be misused sooner or later. The only way to avoid
352 such misuse, is to not collect the information in the first place. If
353 you do not want Facebook to hand out information about yourself for
354 the use and misuse of its customers, do not give Facebook the
355 information.&lt;/p&gt;
356
357 &lt;p&gt;Personally, I would recommend to completely remove your Facebook
358 account, and take back some control of your personal information.
359 &lt;a href=&quot;https://www.theguardian.com/technology/2018/mar/19/how-to-protect-your-facebook-privacy-or-delete-yourself-completely&quot;&gt;According
360 to The Guardian&lt;/a&gt;, it is a bit hard to find out how to request
361 account removal (and not just &#39;disabling&#39;). You need to
362 &lt;a href=&quot;https://www.facebook.com/help/224562897555674?helpref=faq_content&quot;&gt;visit
363 a specific Facebook page&lt;/a&gt; and click on &#39;let us know&#39; on that page
364 to get to &lt;a href=&quot;https://www.facebook.com/help/delete_account&quot;&gt;the
365 real account deletion screen&lt;/a&gt;. Perhaps something to consider? I
366 would not trust the information to really be deleted (who knows,
367 perhaps NSA, GCHQ and FRA already got a copy), but it might reduce the
368 exposure a bit.&lt;/p&gt;
369
370 &lt;p&gt;If you want to learn more about the capabilities of Cambridge
371 Analytica, I recommend to see the video recording of the one hour talk
372 Paul-Olivier Dehaye gave to &lt;a href=&quot;&quot;&gt;NUUG&lt;/a&gt; last april about
373 &lt;a href=&quot;https://www.nuug.no/aktiviteter/20170404-big-data-psychometric/&quot;&gt;
374 Data collection, psychometric profiling and their impact on
375 politics&lt;/a&gt;.&lt;/p&gt;
376
377 &lt;p&gt;And if you want to communicate with your friends and loved ones,
378 use some end-to-end encrypted method like
379 &lt;a href=&quot;https://www.signal.org/&quot;&gt;Signal&lt;/a&gt; or
380 &lt;a href=&quot;https://ring.cx/&quot;&gt;Ring&lt;/a&gt;, and stop sharing your private
381 messages with strangers like Facebook and Google.&lt;/p&gt;
382 </description>
383 </item>
384
385 <item>
386 <title>H, Ap, Frp og Venstre går for DNA-innsamling av hele befolkningen</title>
387 <link>http://people.skolelinux.org/pere/blog/H__Ap__Frp_og_Venstre_g_r_for_DNA_innsamling_av_hele_befolkningen.html</link>
388 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/H__Ap__Frp_og_Venstre_g_r_for_DNA_innsamling_av_hele_befolkningen.html</guid>
389 <pubDate>Wed, 14 Mar 2018 14:15:00 +0100</pubDate>
390 <description>&lt;p&gt;I går kom det nok et argument for å holde seg unna det norske
391 helsevesenet. Da annonserte et stortingsflertall, bestående av Høyre,
392 Arbeiderpartiet, Fremskrittspartiet og Venstre, at de går inn for å
393 samle inn og lagre DNA-prøver fra hele befolkningen i Norge til evig
394 tid. Endringen gjelder innsamlede blodprøver fra nyfødte i Norge.
395 Det vil dermed ta litt tid før en har hele befolkningen, men det er
396 dit vi havner gitt nok tid. I dag er det nesten hundre prosent
397 oppslutning om undersøkelsen som gjøres like etter fødselen, på
398 bakgrunn av blodprøven det er snakk om å lagre, for å oppdage endel
399 medfødte sykdommer. Blodprøven lagres i dag i inntil seks år.
400 &lt;a href=&quot;https://www.stortinget.no/no/Saker-og-publikasjoner/Publikasjoner/Innstillinger/Stortinget/2017-2018/inns-201718-182l/?all=true&quot;&gt;Stortingets
401 flertallsinnstilling&lt;/a&gt; er at tidsbegrensingen skal fjernes, og mener
402 at tidsubegrenset lagring ikke vil påvirke oppslutningen om
403 undersøkelsen.&lt;/p&gt;
404
405 &lt;p&gt;Datatilsynet har ikke akkurat applaudert forslaget:&lt;/p&gt;
406
407 &lt;p&gt;&lt;blockquote&gt;
408
409 &lt;p&gt;«Datatilsynet mener forslaget ikke i tilstrekkelig grad
410 synliggjør hvilke etiske og personvernmessige utfordringer som må
411 diskuteres før en etablerer en nasjonal biobank med blodprøver fra
412 hele befolkningen.»&lt;/p&gt;
413
414 &lt;/blockquote&gt;&lt;/p&gt;
415
416 &lt;p&gt;Det er flere historier om hvordan innsamlet biologisk materiale har
417 blitt brukt til andre formål enn de ble innsamlet til, og historien om
418 &lt;a href=&quot;https://www.aftenposten.no/norge/i/Ql0WR/Na-ma-Folkehelsa-slette-uskyldiges-DNA-info&quot;&gt;folkehelseinstituttets
419 lagring på vegne av politiet (Kripos) av innsamlet biologisk materiale
420 og DNA-informasjon i strid med loven&lt;/a&gt; viser at en ikke kan være
421 trygg på at lover og intensjoner beskytter de som blir berørt mot
422 misbruk av slik privat og personlig informasjon.&lt;/p&gt;
423
424 &lt;p&gt;Det er verdt å merke seg at det kan forskes på de innsamlede
425 blodprøvene uten samtykke fra den det gjelder (eller foreldre når det
426 gjelder barn), etter en lovendring for en stund tilbake, med mindre
427 det er sendt inn skjema der en reserverer seg mot forskning uten
428 samtykke. Skjemaet er tilgjengelig fra
429 &lt;a href=&quot;https://www.fhi.no/arkiv/publikasjoner/for-pasienter-skjema-for-reservasjo/&quot;&gt;folkehelseinstituttets
430 websider&lt;/a&gt;, og jeg anbefaler, uavhengig av denne saken, varmt alle å
431 sende inn skjemaet for å dokumentere hvor mange som ikke synes det er
432 greit å fjerne krav om samtykke.&lt;/p&gt;
433
434 &lt;p&gt;I tillegg bør en kreve destruering av alt biologisk materiale som
435 er samlet inn om en selv, for å redusere eventuelle negative
436 konsekvenser i fremtiden når materialet kommer på avveie eller blir
437 brukt uten samtykke, men det er så vidt jeg vet ikke noe system for
438 dette i dag.&lt;/p&gt;
439
440 &lt;p&gt;Som vanlig, hvis du bruker Bitcoin og ønsker å vise din støtte til
441 det jeg driver med, setter jeg pris på om du sender Bitcoin-donasjoner
442 til min adresse
443 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
444 </description>
445 </item>
446
447 <item>
448 <title>First rough draft Norwegian and Spanish edition of the book Made with Creative Commons</title>
449 <link>http://people.skolelinux.org/pere/blog/First_rough_draft_Norwegian_and_Spanish_edition_of_the_book_Made_with_Creative_Commons.html</link>
450 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_rough_draft_Norwegian_and_Spanish_edition_of_the_book_Made_with_Creative_Commons.html</guid>
451 <pubDate>Tue, 13 Mar 2018 13:00:00 +0100</pubDate>
452 <description>&lt;p&gt;I am working on publishing yet another book related to Creative
453 Commons. This time it is a book filled with interviews and histories
454 from those around the globe making a living using Creative
455 Commons.&lt;/p&gt;
456
457 &lt;p&gt;Yesterday, after many months of hard work by several volunteer
458 translators, the first draft of a Norwegian Bokmål edition of the book
459 &lt;a href=&quot;https://madewith.cc&quot;&gt;Made with Creative Commons from 2017&lt;/a&gt;
460 was complete. The Spanish translation is also complete, while the
461 Dutch, Polish, German and Ukraine edition need a lot of work. Get in
462 touch if you want to help make those happen, or would like to
463 translate into your mother tongue.&lt;/p&gt;
464
465 &lt;p&gt;The whole book project started when
466 &lt;a href=&quot;http://gwolf.org/node/4102&quot;&gt;Gunnar Wolf announced&lt;/a&gt; that he
467 was going to make a Spanish edition of the book. I noticed, and
468 offered some input on how to make a book, based on my experience with
469 translating the
470 &lt;a href=&quot;https://www.lulu.com/shop/lawrence-lessig/fri-kultur/paperback/product-22441576.html&quot;&gt;Free
471 Culture&lt;/a&gt; and
472 &lt;a href=&quot;https://debian-handbook.info/get/#norwegian&quot;&gt;The Debian
473 Administrator&#39;s Handbook&lt;/a&gt; books to Norwegian Bokmål. To make a
474 long story short, we ended up working on a Bokmål edition, and now the
475 first rough translation is complete, thanks to the hard work of
476 Ole-Erik Yrvin, Ingrid Yrvin, Allan Nordhøy and myself. The first
477 proof reading is almost done, and only the second and third proof
478 reading remains. We will also need to translate the 14 figures and
479 create a book cover. Once it is done we will publish the book on
480 paper, as well as in PDF, ePub and possibly Mobi formats.&lt;/p&gt;
481
482 &lt;p&gt;The book itself originates as a manuscript on Google Docs, is
483 downloaded as ODT from there and converted to Markdown using pandoc.
484 The Markdown is modified by a script before is converted to DocBook
485 using pandoc. The DocBook is modified again using a script before it
486 is used to create a Gettext POT file for translators. The translated
487 PO file is then combined with the earlier mentioned DocBook file to
488 create a translated DocBook file, which finally is given to dblatex to
489 create the final PDF. The end result is a set of editions of the
490 manuscript, one English and one for each of the translations.&lt;/p&gt;
491
492 &lt;p&gt;The translation is conducted using
493 &lt;a href=&quot;https://hosted.weblate.org/projects/madewithcc/translation/&quot;&gt;the
494 Weblate web based translation system&lt;/a&gt;. Please have a look there
495 and get in touch if you would like to help out with proof
496 reading. :)&lt;/p&gt;
497
498 &lt;p&gt;As usual, if you use Bitcoin and want to show your support of my
499 activities, please send Bitcoin donations to my address
500 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
501 </description>
502 </item>
503
504 </channel>
505 </rss>