+ <div class="entry">
+ <div class="title"><a href="http://people.skolelinux.org/pere/blog/Debian_still_an_excellent_choice_for_Lego_builders.html">Debian still an excellent choice for Lego builders</a></div>
+ <div class="date">24th October 2021</div>
+ <div class="body"><p>The Debian Lego team saw a lot of activity the last few weeks. All
+the packages under the team umbrella has been updated to fix
+packaging, lintian issues and BTS reports. In addition, a new and
+inspiring team member appeared on both the
+<a href="https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-lego-team">debian-lego-team
+Team mailing list</a> and
+<a href="irc://irc.debian.org/%23debian-lego">IRC channel
+#debian-lego</a>. If you are interested in Lego CAD design and LEGO
+Minestorms programming, check out the
+<a href="http://wiki.debian.org/LegoDesigners">team wiki page</a> to
+see what Debian can offer the Lego enthusiast.</p>
+
+<p>Patches has been sent upstream, causing new upstream releases, one
+even the first one in more than ten years, and old upstreams was
+released with new ones. There are still a lot of work left, and the
+team welcome more members to help us make sure Debian is the Linux
+distribution of choice for Lego builders. If you want to contribute,
+join us in the IRC channel and become part of
+<a href="https://salsa.debian.org/debian-lego-team/">the team on
+Salsa</a>.</p>
+
+<p>As usual, if you use Bitcoin and want to show your support of my
+activities, please send Bitcoin donations to my address
+<b><a href="bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b</a></b>.</p>
+</div>
+ <div class="tags">
+
+
+ Tags: <a href="http://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="http://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="http://people.skolelinux.org/pere/blog/tags/lego">lego</a>, <a href="http://people.skolelinux.org/pere/blog/tags/robot">robot</a>.
+
+
+ </div>
+ </div>
+ <div class="padding"></div>
+
<div class="entry">
<div class="title"><a href="http://people.skolelinux.org/pere/blog/Hvilke_partier_st_ttet_datalagringsdirektivet_2_og_3_.html">Hvilke partier støttet datalagringsdirektivet 2 og 3?</a></div>
<div class="date">10th September 2021</div>
</div>
<div class="padding"></div>
- <div class="entry">
- <div class="title"><a href="http://people.skolelinux.org/pere/blog/Latest_Jami_back_in_Debian_Testing__and_scriptable_using_dbus.html">Latest Jami back in Debian Testing, and scriptable using dbus</a></div>
- <div class="date">12th January 2021</div>
- <div class="body"><p>After a lot of hard work by its maintainer Alexandre Viau and
-others, the decentralized communication platform
-<a href="https://en.wikipedia.org/wiki/Jami_(software)">Jami</a>
-(earlier known as Ring), managed to get
-<a href="https://tracker.debian.org/pkg/ring">its latest version</a>
-into Debian Testing. Several of its dependencies has caused build and
-propagation problems, which all seem to be solved now.</p>
-
-<p>In addition to the fact that Jami is decentralized, similar to how
-bittorrent is decentralized, I first of all like how it is not
-connected to external IDs like phone numbers. This allow me to set up
-computers to send me notifications using Jami without having to find
-get a phone number for each computer. Automatic notification via Jami
-is also made trivial thanks to the provided client side API (as a DBus
-service). Here is my bourne shell script demonstrating how to let any
-system send a message to any Jami address. It will create a new
-identity before sending the message, if no Jami identity exist
-already:</p>
-
-<p><pre>
-#!/bin/sh
-#
-# Usage: $0 <jami-address> <message>
-#
-# Send <message> to <jami-address>, create local jami account if
-# missing.
-#
-# License: GPL v2 or later at your choice
-# Author: Petter Reinholdtsen
-
-
-if [ -z "$HOME" ] ; then
- echo "error: missing \$HOME, required for dbus to work"
- exit 1
-fi
-
-# First, get dbus running if not already running
-DBUSLAUNCH=/usr/bin/dbus-launch
-PIDFILE=/run/asterisk/dbus-session.pid
-if [ -e $PIDFILE ] ; then
- . $PIDFILE
- if ! kill -0 $DBUS_SESSION_BUS_PID 2>/dev/null ; then
- unset DBUS_SESSION_BUS_ADDRESS
- fi
-fi
-if [ -z "$DBUS_SESSION_BUS_ADDRESS" ] && [ -x "$DBUSLAUNCH" ]; then
- DBUS_SESSION_BUS_ADDRESS="unix:path=$HOME/.dbus"
- dbus-daemon --session --address="$DBUS_SESSION_BUS_ADDRESS" --nofork --nopidfile --syslog-only < /dev/null > /dev/null 2>&1 3>&1 &
- DBUS_SESSION_BUS_PID=$!
- (
- echo DBUS_SESSION_BUS_PID=$DBUS_SESSION_BUS_PID
- echo DBUS_SESSION_BUS_ADDRESS=\""$DBUS_SESSION_BUS_ADDRESS"\"
- echo export DBUS_SESSION_BUS_ADDRESS
- ) > $PIDFILE
- . $PIDFILE
-fi &
-
-dringop() {
- part="$1"; shift
- op="$1"; shift
- dbus-send --session \
- --dest="cx.ring.Ring" /cx/ring/Ring/$part cx.ring.Ring.$part.$op $*
-}
-
-dringopreply() {
- part="$1"; shift
- op="$1"; shift
- dbus-send --session --print-reply \
- --dest="cx.ring.Ring" /cx/ring/Ring/$part cx.ring.Ring.$part.$op $*
-}
-
-firstaccount() {
- dringopreply ConfigurationManager getAccountList | \
- grep string | awk -F'"' '{print $2}' | head -n 1
-}
-
-account=$(firstaccount)
-
-if [ -z "$account" ] ; then
- echo "Missing local account, trying to create it"
- dringop ConfigurationManager addAccount \
- dict:string:string:"Account.type","RING","Account.videoEnabled","false"
- account=$(firstaccount)
- if [ -z "$account" ] ; then
- echo "unable to create local account"
- exit 1
- fi
-fi
-
-# Not using dringopreply to ensure $2 can contain spaces
-dbus-send --print-reply --session \
- --dest=cx.ring.Ring \
- /cx/ring/Ring/ConfigurationManager \
- cx.ring.Ring.ConfigurationManager.sendTextMessage \
- string:"$account" string:"$1" \
- dict:string:string:"text/plain","$2"
-</pre></p>
-
-<p>If you want to check it out yourself, visit the
-<a href="https://jami.net/">the Jami system project page</a> to learn
-more, and install the latest Jami client from Debian Unstable or
-Testing.</p>
-
-<p>As usual, if you use Bitcoin and want to show your support of my
-activities, please send Bitcoin donations to my address
-<b><a href="bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b</a></b>.</p>
-</div>
- <div class="tags">
-
-
- Tags: <a href="http://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="http://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="http://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet</a>, <a href="http://people.skolelinux.org/pere/blog/tags/surveillance">surveillance</a>.
-
-
- </div>
- </div>
- <div class="padding"></div>
-
<p style="text-align: right;"><a href="index.rss"><img src="http://people.skolelinux.org/pere/blog/xml.gif" alt="RSS feed" width="36" height="14" /></a></p>
<div id="sidebar">
<li><a href="http://people.skolelinux.org/pere/blog/archive/2021/09/">September (1)</a></li>
+<li><a href="http://people.skolelinux.org/pere/blog/archive/2021/10/">October (1)</a></li>
+
</ul></li>
<li>2020
<li><a href="http://people.skolelinux.org/pere/blog/tags/chrpath">chrpath (2)</a></li>
- <li><a href="http://people.skolelinux.org/pere/blog/tags/debian">debian (176)</a></li>
+ <li><a href="http://people.skolelinux.org/pere/blog/tags/debian">debian (177)</a></li>
<li><a href="http://people.skolelinux.org/pere/blog/tags/debian edu">debian edu (159)</a></li>
<li><a href="http://people.skolelinux.org/pere/blog/tags/drivstoffpriser">drivstoffpriser (4)</a></li>
- <li><a href="http://people.skolelinux.org/pere/blog/tags/english">english (427)</a></li>
+ <li><a href="http://people.skolelinux.org/pere/blog/tags/english">english (428)</a></li>
<li><a href="http://people.skolelinux.org/pere/blog/tags/fiksgatami">fiksgatami (23)</a></li>
<li><a href="http://people.skolelinux.org/pere/blog/tags/ldap">ldap (9)</a></li>
- <li><a href="http://people.skolelinux.org/pere/blog/tags/lego">lego (4)</a></li>
+ <li><a href="http://people.skolelinux.org/pere/blog/tags/lego">lego (5)</a></li>
<li><a href="http://people.skolelinux.org/pere/blog/tags/lenker">lenker (8)</a></li>
<li><a href="http://people.skolelinux.org/pere/blog/tags/rfid">rfid (3)</a></li>
- <li><a href="http://people.skolelinux.org/pere/blog/tags/robot">robot (12)</a></li>
+ <li><a href="http://people.skolelinux.org/pere/blog/tags/robot">robot (13)</a></li>
<li><a href="http://people.skolelinux.org/pere/blog/tags/rss">rss (1)</a></li>