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">
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" />
10 <title>Buster update of Norwegian Bokmål edition of Debian Administrator
's Handbook almost done
</title>
11 <link>http://people.skolelinux.org/pere/blog/Buster_update_of_Norwegian_Bokm_l_edition_of_Debian_Administrator_s_Handbook_almost_done.html
</link>
12 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Buster_update_of_Norwegian_Bokm_l_edition_of_Debian_Administrator_s_Handbook_almost_done.html
</guid>
13 <pubDate>Fri,
11 Sep
2020 09:
45:
00 +
0200</pubDate>
14 <description><p
>Thanks to the good work of several volunteers, the updated edition
15 of the Norwegian translation for
16 "<a href=
"https://debian-handbook.info/
">The Debian Administrator
's
17 Handbook
</a
>" is now almost completed. After many months of proof
18 reading, I consider the proof reading complete enough for us to move
19 to the next step, and have asked for the print version to be prepared
20 and sent of to the print on demand service lulu.com. While it is
21 still not to late if you find any incorrect translations on
22 <a href=
"https://hosted.weblate.org/languages/nb_NO/debian-handbook/
">the
23 hosted Weblate service
</a
>, but it will be soon. :) You can check out
24 <a href=
" https://debian-handbook.info/browse/nb-NO/stable/
">the Buster
25 edition on the web
</a
> until the print edition is ready.
</p
>
27 <p
>The book will be for sale on lulu.com and various web book stores,
28 with links available from the web site for the book linked to above.
29 I hope a lot of readers find it useful.
</p
>
31 <p
>As usual, if you use Bitcoin and want to show your support of my
32 activities, please send Bitcoin donations to my address
33 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
38 <title>Working on updated Norwegian Bokmål edition of Debian Administrator
's Handbook
</title>
39 <link>http://people.skolelinux.org/pere/blog/Working_on_updated_Norwegian_Bokm_l_edition_of_Debian_Administrator_s_Handbook.html
</link>
40 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Working_on_updated_Norwegian_Bokm_l_edition_of_Debian_Administrator_s_Handbook.html
</guid>
41 <pubDate>Sat,
4 Jul
2020 23:
55:
00 +
0200</pubDate>
42 <description><p
>Three years ago, the first Norwegian Bokmål edition of
43 "<a href=
"https://debian-handbook.info/
">The Debian Administrator
's
44 Handbook
</a
>" was published. This was based on Debian Jessie. Now a
45 new and updated version based on Buster is getting ready. Work on the
46 updated Norwegian Bokmål edition has been going on for a few months
47 now, and yesterday, we reached the first mile stone, with
100% of the
48 texts being translated. A lot of proof reading remains, of course,
49 but a major step towards a new edition has been taken.
</p
>
51 <p
>The book is translated by volunteers, and we would love to get some
52 help with the proof reading. The translation uses
53 <a href=
"https://hosted.weblate.org/languages/nb_NO/debian-handbook/
">the
54 hosted Weblate service
</a
>, and we welcome everyone to have a look and
55 submit improvements and suggestions. There is also a proof readers
56 PDF available on request, get in touch if you want to help out that
59 <p
>As usual, if you use Bitcoin and want to show your support of my
60 activities, please send Bitcoin donations to my address
61 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
66 <title>Secure Socket API - a simple and powerful approach for TLS support in software
</title>
67 <link>http://people.skolelinux.org/pere/blog/Secure_Socket_API___a_simple_and_powerful_approach_for_TLS_support_in_software.html
</link>
68 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Secure_Socket_API___a_simple_and_powerful_approach_for_TLS_support_in_software.html
</guid>
69 <pubDate>Sat,
6 Jun
2020 12:
40:
00 +
0200</pubDate>
70 <description><p
>As a member of the
<a href=
"https://www.nuug.no/
">Norwegian Unix
71 User Group
</a
>, I have the pleasure of receiving the
72 <a href=
"https://www.usenix.org/
">USENIX
</a
> magazine
73 <a href=
"https://www.usenix.org/publications/login/
">;login:
</a
>
74 several times a year. I rarely have time to read all the articles,
75 but try to at least skim through them all as there is a lot of nice
76 knowledge passed on there. I even carry the latest issue with me most
77 of the time to try to get through all the articles when I have a few
78 spare minutes.
</p
>
80 <p
>The other day I came across a nice article titled
81 "<a href=
"https://www.usenix.org/publications/login/winter2018/oneill
">The
82 Secure Socket API: TLS as an Operating System Service
</a
>" with a
83 marvellous idea I hope can make it all the way into the POSIX standard.
84 The idea is as simple as it is powerful. By introducing a new
85 socket() option IPPROTO_TLS to use TLS, and a system wide service to
86 handle setting up TLS connections, one both make it trivial to add TLS
87 support to any program currently using the POSIX socket API, and gain
88 system wide control over certificates, TLS versions and encryption
89 systems used. Instead of doing this:
</p
>
91 <p
><blockquote
><pre
>
92 int socket = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
93 </pre
></blockquote
></p
>
95 <p
>the program code would be doing this:
<p
>
97 <p
><blockquote
><pre
>
98 int socket = socket(PF_INET, SOCK_STREAM, IPPROTO_TLS);
99 </pre
></blockquote
></p
>
101 <p
>According to the ;login: article, converting a C program to use TLS
102 would normally modify only
5-
10 lines in the code, which is amazing
103 when compared to using for example the OpenSSL API.
</p
>
105 <p
>The project has set up the
106 <a href=
"https://securesocketapi.org/
">https://securesocketapi.org/
</a
>
107 web site to spread the idea, and the code for a kernel module and the
108 associated system daemon is available from two github repositories:
109 <a href=
"https://github.com/markoneill/ssa
">ssa
</a
> and
110 <a href=
"https://github.com/markoneill/ssa-daemon
">ssa-daemon
</a
>.
111 Unfortunately there is no explicit license information with the code,
112 so its copyright status is unclear. A
113 <a href=
"https://github.com/markoneill/ssa/issues/
2">request to solve
114 this
</a
> about it has been unsolved since
2018-
08-
17.
</p
>
116 <p
>I love the idea of extending socket() to gain TLS support, and
117 understand why it is an advantage to implement this as a kernel module
118 and system wide service daemon, but can not help to think that it
119 would be a lot easier to get projects to move to this way of setting
120 up TLS if it was done with a user space approach where programs
121 wanting to use this API approach could just link with a wrapper
124 <p
>I recommend you check out this simple and powerful approach to more
125 secure network connections. :)
</p
>
127 <p
>As usual, if you use Bitcoin and want to show your support of my
128 activities, please send Bitcoin donations to my address
129 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
134 <title>Bompenge-Norge, med noen tall fra bompengekalkulator
</title>
135 <link>http://people.skolelinux.org/pere/blog/Bompenge_Norge__med_noen_tall_fra_bompengekalkulator.html
</link>
136 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Bompenge_Norge__med_noen_tall_fra_bompengekalkulator.html
</guid>
137 <pubDate>Mon,
1 Jun
2020 14:
50:
00 +
0200</pubDate>
138 <description><p
>Det er tett med sensorstasjoner langs veinettet i Norge, som
139 registrerer hvilke kjøretøy som passerer eller tar bilde av de som
141 <a href=
"https://vegkart.atlas.vegvesen.no/
">Vegvesenets nasjonale
142 veidatabank (NVDB)
</a
>, er det
353 bomstasjoner langs det norske
143 veinettet.
21 i nordnorge,
48 i trøndelagsområdet,
13 på
144 nordvestlandet,
91 i bergenstraktene og
180 på østlandsområdet. I
145 tillegg finnes det et utall overvåkningskamera og noen titalls
146 RFID-avlesere for bompengebrikker som samler inn informasjon om hvilke
147 biler som befinner seg hvor i landet. For ikke å glemme alle
148 mobilbasestasjoner som registrerer hvor brukere av mobilnettverket
149 befinner seg. De er ikke tema i dag.
</p
>
151 <p
>De som kjører mye har interesse av å vite hvor mye bompenger det vil
152 koste å kjøre fra et sted til et annet, og dette behovet har aktørene
153 bak
<a href=
"https://bompengekalkulator.no/
">Bompengekalkulatoren
</a
>
154 tatt sikte på å tilby i markedet. Fornuftig nok har de også en
155 gratistjeneste, slik at de får frivillige til å gi innspill om feil i
156 datagrunnlaget. Jeg ble nylig nysgjerring på hvor mye det til koste å
157 kjøre på kryss og tvers i Norge, og valgte meg ut en teststrekning fra
158 Oslo til Tromsø for å se hvilke beløp som gjelder.
</p
>
160 <p
>Bompengekalkulatoren viser frem flere rutealternativer for et gitt
161 reisesøk, og i dette tilfellet, for reise fra Oslo Sentralstasjon til
162 Tromsø sentrum, viser den tre alternativ. Merk, disse tallene gjelder
163 bensindrevet personbil. En kan velge takstkategori i
164 webgrensesnittet. Det ene rutealternativet er E6 gjennom Norge, de to
165 andre er E45 og E4 gjennom sverige. E45 er innlandsruten i Sverige,
166 motorvei gjennom store skoger som i følge kalkulatoren skal ta
22
167 timer og
26 minutter med norsk bompengebeløp på
164 kroner. Jeg har
168 mine tvil til om datasettet til Bompengekalkulatoren har svenske
169 bomstasjoner, så ta dette beløpet med en klype salt. E4 er veien
170 langs Bottenviken og mer befolket område, og skal ta
22 timer og
50
171 minutter til en norsk bompengebeløp på
71 kroner. Den norske ruten
172 langs E6 skal derimot ta
23 timer og
16 minutter og beløpe seg til
664
173 kroner. Beløpene er uten autopass-brikke, slik at en slipper å få
174 bilens posisjon registrert i alle bompengebrikkeavleserne som ikke
175 også er bomstasjoner. For trailere er bompengekostnaden
2-
3 ganger så
176 høy som for personbil. I tillegg til pengebeløpet, som faktureres
177 etterskuddsvis og de siste årene har blitt umulig å gjøre opp kontant
178 på stedet, så kommer kostnaden med å få sine personopplysninger samlet
179 inn, lagret og gjort tilgjengelig for fremmede på ubestemt tid. Jeg
180 ser på den kostnaden som mye høyere en pengebeløpet som
181 faktureres.
</p
>
183 <p
>For en tilsvarende tur fra Oslo til Bergen, så forteller
184 kalkulatoren at raskeste vei er riksvei
7 på
7 timer
4 minutter med
185 bompengebeløp
409 kroner. Alternativene listet opp er E134 på
8 timer
186 37 minutter med bompengebeløp
318 kroner og fylkesivei
40 på
7 timer
187 30 minutter med beløp
331. Det kan kanskje være greit å sjekke ut før
188 en setter seg i bilen hvor ens personopplysninger vil bli samlet inn
189 og lagret
5 fem år, når en velger hvilken rute en går for.
</p
>
191 <p
>Som vanlig, hvis du bruker Bitcoin og ønsker å vise din støtte til
192 det jeg driver med, setter jeg pris på om du sender Bitcoin-donasjoner
194 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
195 Merk, betaling med bitcoin er ikke anonymt. :)
</p
>
200 <title>More reliable vlc bittorrent plugin in Debian (version
2.9)
</title>
201 <link>http://people.skolelinux.org/pere/blog/More_reliable_vlc_bittorrent_plugin_in_Debian__version_2_9_.html
</link>
202 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/More_reliable_vlc_bittorrent_plugin_in_Debian__version_2_9_.html
</guid>
203 <pubDate>Sun,
24 May
2020 17:
00:
00 +
0200</pubDate>
204 <description><p
>I am very happy to report that a more reliable
205 <a href=
"https://tracker.debian.org/pkg/vlc-plugin-bittorrent
">VLC
206 bittorrent plugin
</a
> was just uploaded into debian. This fixes a
207 couple of crash bugs in the plugin, hopefully making the VLC
208 experience even better when streaming directly from a bittorrent
209 source. The package is currently in Debian unstable, but should be
210 available in Debian testing in two days. To test it, simply install
211 it like this:
</p
>
214 apt install vlc-plugin-bittorrent
215 </pre
></p
>
217 <p
>After it is installed, you can try to use it to play a file
218 downloaded live via bittorrent like this:
221 vlc https://archive.org/download/Glass_201703/Glass_201703_archive.torrent
222 </pre
></p
>
224 <p
>It also support magnet links and local .torrent files.
</p
>
226 <p
>As usual, if you use Bitcoin and want to show your support of my
227 activities, please send Bitcoin donations to my address
228 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
233 <title>Debian Edu interview: Yvan Masson
</title>
234 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Yvan_Masson.html
</link>
235 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Yvan_Masson.html
</guid>
236 <pubDate>Tue,
12 May
2020 06:
30:
00 +
0200</pubDate>
237 <description><p
>It has been way too long since my last interview, but as the
238 <a href=
"http://www.skolelinux.org/
">Debian Edu / Skolelinux
</a
>
239 community is still active, and new people keep showing up on the IRC
240 channel
<a href=
"irc://irc.debian.org/#debian-edu
">#debian-edu
</a
> and
241 <a href=
"https://lists.debian.org/debian-edu/
">the debian-edu mailing
242 list
</a
>, I decided to give it another go. I was hoping someone else
243 might pick up the idea and run with it, but this has not happened as
244 far as I can tell, so here we are… This time the announcement of a new
245 free software tool to
246 <a href=
"https://framagit.org/Yvan-Masson/WhosWho
">create a school year
247 book
</a
> triggered my interest, and I decided to learn more about its
250 <p
><strong
>Who are you, and how do you spend your days?
</strong
></p
>
252 <p
>My name is Yvan MASSON, I live in France. I have my own one person
253 business in computer services. The work consist of visiting my
254 customers (person
's home, local authority, small business) to give
255 advise, install computers and software, fix issues, and provide
256 computing usage training. I spend the rest of my time enjoying my
257 family and promoting free software.
</p
>
259 <p
><strong
>What is your approach for promoting free
260 software?
</strong
></p
>
262 <p
>When I think that free software could be suitable for someone, I
263 explain what it is, with simple words, give a few known examples, and
264 explain that while there is no fee it is a viable alternative in many
265 situations. Most people are receptive when you explain how it is
266 better (I simplify arguments here, I know that it is not so simple):
267 Linux works on older hardware, there are no viruses, and the software
268 can be audited to ensure user is not spied upon. I think the most
269 important is to keep a clear but moderated speech: when you try to
270 convince too much, people feel attacked and stop listening.
</p
>
272 <p
><strong
>How did you get in contact with the Skolelinux / Debian Edu
273 project?
</strong
></p
>
275 <p
>I can not remember how I first heard of Skolelinux / Debian Edu,
276 but probably on planet.debian.org. As I have been working for a
277 school, I have interest in this type of project.
279 <p
>The school I am involved in is a school for
"children
" between
14
280 and
18 years old. The French government has recommended free software
281 since
2012, but they do not always use free software themselves. The
282 school computers are still using the Windows operating system, but all
283 of them have the classic set of free software: Firefox ESR,
284 LibreOffice (with the excellent extension Grammalecte that indicates
285 French grammatical errors), SumatraPDF, Audacity,
7zip, KeePass2, VLC,
288 <p
><strong
>What do you see as the advantages of Skolelinux / Debian
289 Edu?
</strong
></p
>
291 <p
>It is free software! Built on Debian, I am sure that users are not
292 spied upon, and that it can run on low end hardware. This last point
293 is very important, because we really need to improve
"green IT
". I do
294 not know enough about Skolelinux / Debian Edu to tell how it is better
295 than another free software solution, but what I like is the
"all in
296 one
" solution: everything has been thought of and prepared to ease
297 installation and usage.
</p
>
299 <p
>I like Free Software because I hate using something that I can not
300 understand. I do not say that I can understand everything nor that I
301 want to understand everything, but knowing that someone / some company
302 intentionally prevents me from understanding how things work is really
303 unacceptable to me.
</p
>
305 <p
>Secondly, and more importantly, free software is a requirement to
306 prevent abuses regarding human rights and environmental care.
307 Humanity can not rely on tools that are in the hands of small group of
310 <p
><strong
>What do you see as the disadvantages of Skolelinux / Debian
311 Edu?
</strong
></p
>
313 <p
>Again, I don
't know this project enough. Maybe a dedicated website?
314 Debian wiki works well for documentation, but is not very appealing to
315 someone discovering the project. Also, as Skolelinux / Debian Edu uses
316 OpenLDAP, it probably means that Windows workstations cannot use
317 centralized authentication. Maybe the project could use Samba as an
318 Active Directory domain controller instead, allowing Windows desktop
319 usage when necessary.
</p
>
321 <p
>(Editors note: In fact Windows workstations can
322 <a href=
"https://wiki.debian.org/DebianEdu/Documentation/Buster/HowTo/Samba
">use
323 the centralized authentication in a Debian Edu setup
</a
>, at least for
324 some versions of Windows, but the fact that this is not well known can
325 be seen as an indication of the need for better documentation and
326 marketing. :)
</p
>
328 <p
><strong
>Which free software do you use daily?
</strong
></p
>
330 <p
>Nothing original: Debian testing/sid with Gnome desktop, Firefox,
331 Thunderbird, LibreOffice…
</p
>
333 <p
><strong
>Which strategy do you believe is the right one to use to
334 get schools to use free software?
</strong
></p
>
336 <p
>Every effort to spread free software into schools is important,
337 whatever it is. But I think, at least where I live, that IT
338 professionals maintaining schools networks are still very
"Microsoft
339 centric
". Schools will use any working solution, but they need people
340 to install and maintain it. How to make these professionals sensitive
341 about free software and train them with solutions like Debian Edu /
342 Skolelinux is a really good question :-)
</p
>
347 <title>Jami as a Zoom client, a trick for password protected rooms...
</title>
348 <link>http://people.skolelinux.org/pere/blog/Jami_as_a_Zoom_client__a_trick_for_password_protected_rooms___.html
</link>
349 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Jami_as_a_Zoom_client__a_trick_for_password_protected_rooms___.html
</guid>
350 <pubDate>Fri,
8 May
2020 13:
30:
00 +
0200</pubDate>
351 <description><p
>Half a year ago,
352 <a href=
"http://people.skolelinux.org/pere/blog/Jami_Ring__finally_functioning_peer_to_peer_communication_client.html
">I
353 wrote
</a
> about
<a href=
"https://jami.net/
">the Jami communication
354 client
</a
>, capable of peer-to-peer encrypted communication. It
355 handle both messages, audio and video. It uses distributed hash
356 tables instead of central infrastructure to connect its users to each
357 other, which in my book is a plus. I mentioned briefly that it could
358 also work as a SIP client, which came in handy when the higher
359 educational sector in Norway started to promote Zoom as its video
360 conferencing solution. I am reluctant to use the official Zoom client
361 software, due to their
<a href=
"https://zoom.us/terms
">copyright
362 license clauses
</a
> prohibiting users to reverse engineer (for example
363 to check the security) and benchmark it, and thus prefer to connect to
364 Zoom meetings with free software clients.
</p
>
366 <p
>Jami worked OK as a SIP client to Zoom as long as there was no
367 password set on the room. The Jami daemon leak memory like crazy
368 (approximately
1 GiB a minute) when I am connected to the video
369 conference, so I had to restart the client every
7-
10 minutes, which
370 is not a great. I tried to get other SIP Linux clients to work
371 without success, so I decided I would have to live with this wart
372 until someone managed to fix the leak in the dring code base. But
373 another problem showed up once the rooms were password protected. I
374 could not get my dial tone signaling through from Jami to Zoom, and
375 dial tone signaling is used to enter the password when connecting to
376 Zoom. I tried a lot of different permutations with my Jami and
377 Asterisk setup to try to figure out why the signaling did not get
378 through, only to finally discover that the fundamental problem seem to
379 be that Zoom is simply not able to receive dial tone signaling when
380 connecting via SIP. There seem to be nothing wrong with the Jami and
381 Asterisk end, it is simply broken in the Zoom end. I got help from a
382 very skilled VoIP engineer figuring out this last part. And being a
383 very skilled engineer, he was also able to locate a solution for me.
384 Or to be exact, a workaround that solve my initial problem of
385 connecting to password protected Zoom rooms using Jami.
</p
>
387 <p
>So, how do you do this, I am sure you are wondering by now. The
389 <a href=
"https://support.zoom.us/hc/en-us/articles/
202405539-H-
323-SIP-Room-Connector-Dial-Strings#sip
">documented
390 from Zoom
</a
>, and it is to modify the SIP address to include the room
391 password. What is most surprising about this is that the
392 automatically generated email from Zoom with instructions on how to
393 connect via SIP do not mention this. The SIP address to use normally
394 consist of the room ID (a number), an @ character and the IP address
395 of the Zoom SIP gateway. But Zoom understand a lot more than just the
396 room ID in front of the at sign. The format is
"<tt
>[Meeting
397 ID].[Password].[Layout].[Host Key]
</tt
>", and you can hear see how you
398 can both enter password, control the layout (full screen, active
399 presence and gallery) and specify the host key to start the meeting.
400 The full SIP address entered into Jami to provide the password will
401 then look like this (all using made up numbers):
</p
>
403 <p
><blockquote
>
404 <tt
>sip:
657837644.522827@
192.168.169.170</tt
>
405 </blockquote
></p
>
407 <p
>Now if only jami would reduce its memory usage, I could even
408 recommend this setup to others. :)
</p
>
410 <p
>As usual, if you use Bitcoin and want to show your support of my
411 activities, please send Bitcoin donations to my address
412 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
417 <title>GnuCOBOL, a free platform to learn and use COBOL - nice free software
</title>
418 <link>http://people.skolelinux.org/pere/blog/GnuCOBOL__a_free_platform_to_learn_and_use_COBOL___nice_free_software.html
</link>
419 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/GnuCOBOL__a_free_platform_to_learn_and_use_COBOL___nice_free_software.html
</guid>
420 <pubDate>Wed,
29 Apr
2020 13:
10:
00 +
0200</pubDate>
421 <description><p
>The curiosity got the better of me when
422 <a href=
"https://developers.slashdot.org/story/
20/
04/
06/
1424246/new-jersey-desperately-needs-cobol-programmers
">Slashdot
423 reported
</a
> that New Jersey was desperately looking for
424 <a href=
"https://en.wikipedia.org/wiki/COBOL
">COBOL
</a
> programmers,
425 and a few days later it was reported that
426 <a href=
"https://onezero.medium.com/ibm-rallies-cobol-engineers-to-save-overloaded-unemployment-systems-eeadf13eddce
">IBM
427 tried to locate COBOL programmers
</a
>.
</p
>
429 <p
>I thus decided to have a look at free software alternatives to
430 learn COBOL, and had the pleasure to find
431 <a href=
"https://sourceforge.net/projects/open-cobol/
">GnuCOBOL
</a
> was
432 already
<a href=
"https://tracker.debian.org/pkg/gnucobol
">in
433 Debian
</a
>. It used to be called Open Cobol, and is a
"compiler
"
434 transforming COBOL code to C or C++ before giving it to GCC or Visual
435 Studio to build binaries.
</p
>
437 <p
>I managed to get in touch with upstream, and was impressed with the
438 quick response, and also was happy to see a new Debian maintainer
439 taking over when the original one recently asked to be replaced. A
440 new Debian upload was done as recently as yesterday.
</p
>
442 <p
>Using the Debian package, I was able to follow a simple COBOL
443 introduction and make and run simple COBOL programs. It was fun to
444 learn a new programming language. If you want to test for yourself,
445 <a href=
"https://en.wikipedia.org/wiki/GnuCOBOL
">the GnuCOBOL Wikipedia
446 page
</a
> have a few simple examples to get you startet.
</p
>
448 <p
>As I do not have much experience with COBOL, I do not know how
449 standard compliant it is, but it claim to pass most tests from COBOL
450 test suite, which sound good to me. It is nice to know it is possible
451 to learn COBOL using software without any usage restrictions, and I am
452 very happy such nice free software project as this is available. If
453 you as me is curious about COBOL, check it out.
</p
>
455 <p
>As usual, if you use Bitcoin and want to show your support of my
456 activities, please send Bitcoin donations to my address
457 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
462 <title>Totalovervåkning av innbyggernes bevegelser - nei takk!
</title>
463 <link>http://people.skolelinux.org/pere/blog/Totaloverv_kning_av_innbyggernes_bevegelser___nei_takk_.html
</link>
464 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Totaloverv_kning_av_innbyggernes_bevegelser___nei_takk_.html
</guid>
465 <pubDate>Thu,
16 Apr
2020 20:
30:
00 +
0200</pubDate>
466 <description><p
>Jeg er blitt spurt hva jeg synes om lansering av smittestopp-appen,
467 overvåkningsløsningen lansert av Folkehelseinstituttet,
468 Simula-senteret og Regjeringen i dag, fulgt av klare trusler fra
469 regjeringen om konsekvenser hvis befolkningen ikke tar den i bruk.
470 Rekker ikke skrive noe fyldig om temaet, men det er klart for meg at
471 den utraderer retten til privatliv samt utgjør en personlig
472 sikkerhetsrisiko for alle som tar den i bruk. Bare det er nok til at
473 det fremstår som en svært dårlig ide å bli med på denne
"dugnaden
".
474 Det finnes andre og bedre tilnærminger enn den valgt av FHI. Har de
475 valgt sin tilnærming for å sikre seg nok et datasett i den fremtidige
476 ehelse-portalen? Potensialet for misbruk av informasjon samlet inn av
477 appen er for stort, effekten på neste krise for klar og gevinsten for
480 <p
>For å si det med forhenværende leder i Datatilsynet, Georg Apenes,
481 som skrev i en kronikk den gang Datatilsynet vernet
483 «
<a href=
"https://www.dagbladet.no/kultur/rent-mel-i-bilen/
66333882">SENTRALT
484 I en liberal forestillingsverden finner vi aksept av borgerens rett
485 til å kunne velge å være i fred; å være u-iakttatt, uregistrert og
486 anonym
</a
>». Det er ikke uten grunn han startet kronikken med
487 «Personvern et fremmedord i enkelte av de statsorganene som samler
488 inn, oppbevarer og bruker personopplysninger». Der har nok
489 statsorganene bare blitt dårligere på
13 år.
</p
>
491 <p
>Det er jo også verdt å merke seg at personvernrådet i EU (EDPB)
492 mener smittestopp-appen
493 <a href=
"https://nrkbeta.no/
2020/
04/
16/personvernrad-i-eu-mener-norsk-app-bryter-med-viktig-personvernprinsipp/
">opererer
494 i strid med prinsippet om dataminimering
</a
>. Også de ser at det
495 finnes mye bedre måter å gjøre dette på.
</p
>
498 <p
>Som vanlig, hvis du bruker Bitcoin og ønsker å vise din støtte til
499 det jeg driver med, setter jeg pris på om du sender Bitcoin-donasjoner
501 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
502 Merk, betaling med bitcoin er ikke anonymt. :)
</p
>
507 <title>Ny URL til den frie norske stavekontrollen
</title>
508 <link>http://people.skolelinux.org/pere/blog/Ny_URL_til_den_frie_norske_stavekontrollen.html
</link>
509 <guid isPermaLink=
"true">http://people.skolelinux.org/pere/blog/Ny_URL_til_den_frie_norske_stavekontrollen.html
</guid>
510 <pubDate>Sat,
21 Mar
2020 08:
00:
00 +
0100</pubDate>
511 <description><p
>Det er lenge siden jeg har sett på den norske stavekontrollen, sist
512 jeg skrev om temaet var i
2016, og i mellomtiden har nettstedet
513 no.speling.org forsvunnet, og både git-depotet på Alioth og
514 mailman-tjenesten som hadde epostlistene for oversettelser blitt lagt
515 ned. Men bokmål og nynorsk trenger fortsatt stavekontroll, så etter
516 et par purringer fra en som har lyst til å forbedre stavekontrollen
517 har jeg endelig fått lagt ut ny offentlig kopi av git-depotet. Jeg
518 valgte gitlab foran github.. Siste utgave av stavekontrollen kan
520 <a href=
"https://gitlab.com/norwegian-language-tools/spell-norwegian
">https://gitlab.com/norwegian-language-tools/spell-norwegian
</a
>.
521 Ingen ny versjon i denne omgang altså, bare et nytt sted å samle
522 forbedringer til den frie norske stavekontrollen. :)
524 <p
>Som vanlig, hvis du bruker Bitcoin og ønsker å vise din støtte til
525 det jeg driver med, setter jeg pris på om du sender Bitcoin-donasjoner
527 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
528 Merk, betaling med bitcoin er ikke anonymt. :)
</p
>