]> pere.pagekite.me Git - homepage.git/blobdiff - blog/index.rss
Generated.
[homepage.git] / blog / index.rss
index c3c24abf3bbf4a720079a3a3c87d7c57d71eddb5..f8ff764b4d23d908e32c3362da6df0f431103a7b 100644 (file)
@@ -6,6 +6,38 @@
                 <link>http://people.skolelinux.org/pere/blog/</link>
                 <atom:link href="http://people.skolelinux.org/pere/blog/index.rss" rel="self" type="application/rss+xml" />
        
+       <item>
+               <title>Debian still an excellent choice for Lego builders</title>
+               <link>http://people.skolelinux.org/pere/blog/Debian_still_an_excellent_choice_for_Lego_builders.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_still_an_excellent_choice_for_Lego_builders.html</guid>
+                <pubDate>Sun, 24 Oct 2021 07:10:00 +0200</pubDate>
+               <description>&lt;p&gt;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
+&lt;a href=&quot;https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-lego-team&quot;&gt;debian-lego-team
+Team mailing list&lt;/a&gt; and
+&lt;a href=&quot;irc://irc.debian.org/%23debian-lego&quot;&gt;IRC channel
+#debian-lego&lt;/a&gt;.  If you are interested in Lego CAD design and LEGO
+Minestorms programming, check out the
+&lt;a href=&quot;http://wiki.debian.org/LegoDesigners&quot;&gt;team wiki page&lt;/a&gt; to
+see what Debian can offer the Lego enthusiast.&lt;/p&gt;
+
+&lt;p&gt;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
+&lt;a href=&quot;https://salsa.debian.org/debian-lego-team/&quot;&gt;the team on
+Salsa&lt;/a&gt;.&lt;/p&gt;
+
+&lt;p&gt;As usual, if you use Bitcoin and want to show your support of my
+activities, please send Bitcoin donations to my address
+&lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
+</description>
+       </item>
+       
        <item>
                <title>Hvilke partier støttet datalagringsdirektivet 2 og 3?</title>
                <link>http://people.skolelinux.org/pere/blog/Hvilke_partier_st_ttet_datalagringsdirektivet_2_og_3_.html</link>
@@ -1665,119 +1697,5 @@ Merk, betaling med bitcoin er ikke anonymt. :)&lt;/p&gt;
 </description>
        </item>
        
-       <item>
-               <title>Latest Jami back in Debian Testing, and scriptable using dbus</title>
-               <link>http://people.skolelinux.org/pere/blog/Latest_Jami_back_in_Debian_Testing__and_scriptable_using_dbus.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Latest_Jami_back_in_Debian_Testing__and_scriptable_using_dbus.html</guid>
-                <pubDate>Tue, 12 Jan 2021 17:00:00 +0100</pubDate>
-               <description>&lt;p&gt;After a lot of hard work by its maintainer Alexandre Viau and
-others, the decentralized communication platform
-&lt;a href=&quot;https://en.wikipedia.org/wiki/Jami_(software)&quot;&gt;Jami&lt;/a&gt;
-(earlier known as Ring), managed to get
-&lt;a href=&quot;https://tracker.debian.org/pkg/ring&quot;&gt;its latest version&lt;/a&gt;
-into Debian Testing.  Several of its dependencies has caused build and
-propagation problems, which all seem to be solved now.&lt;/p&gt;
-
-&lt;p&gt;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:&lt;/p&gt;
-
-&lt;p&gt;&lt;pre&gt;
-#!/bin/sh
-#
-# Usage: $0 &lt;jami-address&gt; &lt;message&gt;
-#
-# Send &lt;message&gt; to &lt;jami-address&gt;, create local jami account if
-# missing.
-#
-# License: GPL v2 or later at your choice
-# Author: Petter Reinholdtsen
-
-
-if [ -z &quot;$HOME&quot; ] ; then
-    echo &quot;error: missing \$HOME, required for dbus to work&quot;
-    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&gt;/dev/null ; then
-        unset DBUS_SESSION_BUS_ADDRESS
-    fi
-fi
-if [ -z &quot;$DBUS_SESSION_BUS_ADDRESS&quot; ] &amp;&amp; [ -x &quot;$DBUSLAUNCH&quot; ]; then
-    DBUS_SESSION_BUS_ADDRESS=&quot;unix:path=$HOME/.dbus&quot;
-    dbus-daemon --session --address=&quot;$DBUS_SESSION_BUS_ADDRESS&quot; --nofork --nopidfile --syslog-only &lt; /dev/null &gt; /dev/null 2&gt;&amp;1 3&gt;&amp;1 &amp;
-    DBUS_SESSION_BUS_PID=$!
-    (
-        echo DBUS_SESSION_BUS_PID=$DBUS_SESSION_BUS_PID
-        echo DBUS_SESSION_BUS_ADDRESS=\&quot;&quot;$DBUS_SESSION_BUS_ADDRESS&quot;\&quot;
-        echo export DBUS_SESSION_BUS_ADDRESS
-    ) &gt; $PIDFILE
-    . $PIDFILE
-fi &amp;
-
-dringop() {
-    part=&quot;$1&quot;; shift
-    op=&quot;$1&quot;; shift
-    dbus-send --session \
-        --dest=&quot;cx.ring.Ring&quot; /cx/ring/Ring/$part cx.ring.Ring.$part.$op $*
-}
-
-dringopreply() {
-    part=&quot;$1&quot;; shift
-    op=&quot;$1&quot;; shift
-    dbus-send --session --print-reply \
-        --dest=&quot;cx.ring.Ring&quot; /cx/ring/Ring/$part cx.ring.Ring.$part.$op $*
-}
-
-firstaccount() {
-    dringopreply ConfigurationManager getAccountList | \
-      grep string | awk -F&#39;&quot;&#39; &#39;{print $2}&#39; | head -n 1
-}
-
-account=$(firstaccount)
-
-if [ -z &quot;$account&quot; ] ; then
-    echo &quot;Missing local account, trying to create it&quot;
-    dringop ConfigurationManager addAccount \
-      dict:string:string:&quot;Account.type&quot;,&quot;RING&quot;,&quot;Account.videoEnabled&quot;,&quot;false&quot;
-    account=$(firstaccount)
-    if [ -z &quot;$account&quot; ] ; then
-        echo &quot;unable to create local account&quot;
-        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:&quot;$account&quot; string:&quot;$1&quot; \
-  dict:string:string:&quot;text/plain&quot;,&quot;$2&quot; 
-&lt;/pre&gt;&lt;/p&gt;
-
-&lt;p&gt;If you want to check it out yourself, visit the 
-&lt;a href=&quot;https://jami.net/&quot;&gt;the Jami system project page&lt;/a&gt; to learn
-more, and install the latest Jami client from Debian Unstable or
-Testing.&lt;/p&gt;
-
-&lt;p&gt;As usual, if you use Bitcoin and want to show your support of my
-activities, please send Bitcoin donations to my address
-&lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
-</description>
-       </item>
-       
         </channel>
 </rss>