Skip to content

Commit

Permalink
Generate Pelican site
Browse files Browse the repository at this point in the history
  • Loading branch information
tooh committed Jan 30, 2024
1 parent b7b3516 commit 165dd5c
Show file tree
Hide file tree
Showing 38 changed files with 477 additions and 330 deletions.
2 changes: 1 addition & 1 deletion articles/azure.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions articles/bugzilla-git-migration.html
Original file line number Diff line number Diff line change
Expand Up @@ -127,15 +127,15 @@ <h1 class="entry-title">Bugzilla git migration</h1>
</header>

<div class="entry-content"><p>[toc]</p>
<h1>Introduction</h1>
<h1 id="introduction">Introduction</h1>
<p>Bugzilla project switched to Git instead of&nbsp;Bzr.</p>
<p><a href="https://wiki.mozilla.org/Bugzilla:Moving_From_Bazaar_To_Git">Moving_From_Bazaar_To_Git</a></p>
<p><a href="https://wiki.mozilla.org/Bugzilla:Git">Wiki</a></p>
<h2>Installation</h2>
<h2 id="installation">Installation</h2>
<p><a href="http://bugzilla.readthedocs.org/en/latest/installation.html">Installation&nbsp;manual</a></p>
<h2>Git</h2>
<h2 id="git">Git</h2>
<p><a href="http://git.mozilla.org/?p=bugzilla/bugzilla.git;a%3Dsummary">Bugzilla Git&nbsp;Summary</a></p>
<h2>Update to newer&nbsp;release</h2>
<h2 id="update-to-newer-release">Update to newer&nbsp;release</h2>
<p><a href="https://wiki.mozilla.org/Bugzilla:Git#Updating_to_a_Newer_Release">Updating to a newer&nbsp;release</a></p>
<!-- more --></div>

Expand Down
4 changes: 2 additions & 2 deletions articles/cairosvg.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ <h1 class="entry-title">cairosvg</h1>
<time datetime="2015-01-18T08:09:00+01:00" pubdate>Sun 18 January 2015</time> </p>
</header>

<div class="entry-content"><h2>Install&nbsp;Cairosvg</h2>
<div class="entry-content"><h2 id="install-cairosvg">Install&nbsp;Cairosvg</h2>
<div class="highlight"><pre><span></span><code>sudo pip install pycairo
</code></pre></div>

Expand All @@ -139,7 +139,7 @@ <h1 class="entry-title">cairosvg</h1>
<div class="highlight"><pre><span></span><code>sudo ./waf configure --prefix=/System/Library/Frameworks/Python.framework/Versions/2.7
</code></pre></div>

<h2>Additional</h2>
<h2 id="additional">Additional</h2>
<ul>
<li>find out where the svg/cairo libraries were&nbsp;installed</li>
<li>make sure that pkg-config finds these, if not, set PKG_CONFIG_PATH to
Expand Down
16 changes: 8 additions & 8 deletions articles/convert-markdown-to-word-docx-with-pandoc.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,22 +129,22 @@ <h1 class="entry-title">Convert Markdown to Word docx with Pandoc</h1>
<div class="entry-content"><p>If you need to convert files from one markup format into another, pandoc is your swiss-army&nbsp;knife.</p>
<!-- more -->

<h3>Installation</h3>
<h3 id="installation">Installation</h3>
<p>My <span class="caps">OS</span> is <span class="caps">OSX</span> so the easiest is to use&nbsp;Homebrew.</p>
<h4>With&nbsp;homebrew</h4>
<h4 id="with-homebrew">With&nbsp;homebrew</h4>
<div class="highlight"><pre><span></span><code>$<span class="w"> </span>brew<span class="w"> </span>install<span class="w"> </span>pandoc
</code></pre></div>

<h4>Use the&nbsp;installer</h4>
<h4 id="use-the-installer">Use the&nbsp;installer</h4>
<p>Go to the github project&nbsp;downloads</p>
<div class="highlight"><pre><span></span><code>https://github.com/jgm/pandoc/releases/
</code></pre></div>

<h3>Convert your&nbsp;document</h3>
<h3 id="convert-your-document">Convert your&nbsp;document</h3>
<div class="highlight"><pre><span></span><code>$<span class="w"> </span>pandoc<span class="w"> </span>-o<span class="w"> </span>output.docx<span class="w"> </span>-f<span class="w"> </span>markdown<span class="w"> </span>-t<span class="w"> </span>docx<span class="w"> </span>markdown-file.md
</code></pre></div>

<h3>Make it&nbsp;easy</h3>
<h3 id="make-it-easy">Make it&nbsp;easy</h3>
<p>To make it even easier I added the below code to my .bashrc&nbsp;file</p>
<div class="highlight"><pre><span></span><code>...

Expand All @@ -165,13 +165,13 @@ <h3>Make it&nbsp;easy</h3>
}
</code></pre></div>

<h3>Convert a&nbsp;file</h3>
<h3 id="convert-a-file">Convert a&nbsp;file</h3>
<div class="highlight"><pre><span></span><code> md2word ~/path/to/some/markdown/file/to/convert.md ~/path/to/some/word/document/output.docx
</code></pre></div>

<h3>Use Pandoc from&nbsp;Sublime</h3>
<h3 id="use-pandoc-from-sublime">Use Pandoc from&nbsp;Sublime</h3>
<p>http://plaintext-productivity.net/2-05-how-to-set-up-sublime-text-for-markdown-export-to-word.html</p>
<h4>My customized build&nbsp;file</h4>
<h4 id="my-customized-build-file">My customized build&nbsp;file</h4>
<div class="highlight"><pre><span></span><code>{
&quot;cmd&quot;: [&quot;/usr/local/bin/pandoc&quot;, &quot;-S&quot;, &quot;-s&quot;, &quot;-f&quot;, &quot;markdown&quot;, &quot;-t&quot;, &quot;docx&quot;, &quot;-o&quot;, &quot;/Users/peter/Documents/Docs/Inbox/$file_base_name.docx&quot;, &quot;$file_name&quot;],
&quot;selector&quot;: &quot;text.html.markdown&quot;
Expand Down
4 changes: 2 additions & 2 deletions articles/convert-svg-to-png-with-inkscape-osx.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,11 @@ <h1 class="entry-title">convert svg to png with inkscape (OSX)</h1>
<time datetime="2015-01-25T16:21:00+01:00" pubdate>Sun 25 January 2015</time> </p>
</header>

<div class="entry-content"><h3>Set alias to inkscape&nbsp;commandline</h3>
<div class="entry-content"><h3 id="set-alias-to-inkscape-commandline">Set alias to inkscape&nbsp;commandline</h3>
<div class="highlight"><pre><span></span><code>alias inkscape=&quot;/Applications/Inkscape.app/Contents/Resources/bin/inkscape&quot;
</code></pre></div>

<h3>call inkscape to&nbsp;convert</h3>
<h3 id="call-inkscape-to-convert">call inkscape to&nbsp;convert</h3>
<div class="highlight"><pre><span></span><code> inkscape -z -f test_full.svg -j -e test_full.png
</code></pre></div>

Expand Down
8 changes: 4 additions & 4 deletions articles/diagrams-with-plantuml.html

Large diffs are not rendered by default.

76 changes: 54 additions & 22 deletions articles/fritzbox-7390-configuration.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,38 +129,70 @@ <h1 class="entry-title">Fritz!Box 7390 configuration</h1>
<div class="entry-content"><p>I recently bought a Fritz!Box 7390. Main reason was that I wanted to integrate telephony (<span class="caps">POTS</span>) in my daily workflow on my&nbsp;Mac.</p>
<p>In this article I will describe the configuration and add-ons I&nbsp;installed.</p>
<!-- more -->
<h2>Contents</h2>
<p>[<span class="caps">TOC</span>]</p>
<h2>The&nbsp;Fritz!Box</h2>
<h2 id="contents">Contents</h2>
<div class="toc">
<ul>
<li><a href="#contents">Contents</a></li>
<li><a href="#the-fritzbox">The Fritz!Box</a><ul>
<li><a href="#options">Options</a></li>
</ul>
</li>
<li><a href="#internet-access">Internet access</a><ul>
<li><a href="#using-the-internet-connection-of-another-router-with-fritzbox">Using the Internet connection of another router with <span class="caps">FRITZ</span>!Box</a></li>
</ul>
</li>
<li><a href="#analog-telephony-cisco-epc3212">Analog telephony (Cisco <span class="caps">EPC3212</span>)</a><ul>
<li><a href="#connections-for-tel-1-tel-2">Connections for <span class="caps">TEL</span> 1 / <span class="caps">TEL</span>&nbsp;2</a></li>
<li><a href="#fritzbox-connections">Fritz!Box&nbsp;connections</a></li>
<li><a href="#connection-to-a-cable-modem">Connection to a cable&nbsp;modem</a></li>
<li><a href="#dect-telephone-device"><span class="caps">DECT</span> telephone&nbsp;device</a></li>
</ul>
</li>
<li><a href="#voip-telephony"><span class="caps">VOIP</span>&nbsp;telephony</a></li>
<li><a href="#add-ons">Add-ons</a><ul>
<li><a href="#alfred-workflow">Alfred&nbsp;workflow</a></li>
<li><a href="#call-diversion-from-script">Call diversion from&nbsp;script</a></li>
<li><a href="#frizzix-call-monitor-mac">Frizzix Call monitor (<span class="caps">MAC</span>)</a></li>
<li><a href="#fritzbox-browser-add-on">Fritz!Box browser&nbsp;add-on</a></li>
<li><a href="#dialing-scripts">dialing&nbsp;scripts</a></li>
<li><a href="#pop3-mail-checker-and-alert-on-fritzbox"><span class="caps">POP3</span> mail checker and alert on&nbsp;Fritz!Box</a></li>
<li><a href="#fhem">fhem</a></li>
<li><a href="#synology-diskstation-front-end">Synology Diskstation&nbsp;front-end</a></li>
</ul>
</li>
<li><a href="#references">References</a></li>
</ul>
</div>
<h2 id="the-fritzbox">The&nbsp;Fritz!Box</h2>
<p><img alt="Fritz!Box 3790" src="https://blog.florijnconsultancy.nl/images/fritzbox_7390product.jpg"></p>
<p><a href="http://www.avm.de/en/Produkte/FRITZBox/FRITZ_Box_Fon_WLAN_7390/index.php">The Fritz!Box&nbsp;7390</a></p>
<h3>Options</h3>
<h2>Internet&nbsp;access</h2>
<h3 id="options">Options</h3>
<h2 id="internet-access">Internet&nbsp;access</h2>
<p>I have a <span class="caps">UPC</span> cable&nbsp;modem </p>
<p><a href="http://192.168.100.1"><span class="caps">CISCO</span> <span class="caps">EPC3212</span></a></p>
<p><a href="http://www.cisco.com/web/consumer/support/userguides2/4021203A.pdf">Cisco <span class="caps">EPC3212</span> User&nbsp;manual</a></p>
<p><img alt="Typical setup" src="https://blog.florijnconsultancy.nl/images/ciscoEPC3212setup.png"></p>
<h3>Using the Internet connection of another router with <span class="caps">FRITZ</span>!Box</h3>
<h3 id="using-the-internet-connection-of-another-router-with-fritzbox">Using the Internet connection of another router with <span class="caps">FRITZ</span>!Box</h3>
<p><a href="http://service.avm.de/support/en/SKB/FRITZ-Box-7390-int/598:Using-the-Internet-connection-of-another-router-with-FRITZ-Box">Using the Internet connection of another router with <span class="caps">FRITZ</span>!Box</a></p>
<h2>Analog telephony (Cisco <span class="caps">EPC3212</span>)</h2>
<h4>Connections for <span class="caps">TEL</span> 1 / <span class="caps">TEL</span>&nbsp;2</h4>
<h2 id="analog-telephony-cisco-epc3212">Analog telephony (Cisco <span class="caps">EPC3212</span>)</h2>
<h4 id="connections-for-tel-1-tel-2">Connections for <span class="caps">TEL</span> 1 / <span class="caps">TEL</span>&nbsp;2</h4>
<p><img alt="TEL 1/TEL 2 connections" src="/images/EPC3212.png"></p>
<h4>Fritz!Box&nbsp;connections</h4>
<h4 id="fritzbox-connections">Fritz!Box&nbsp;connections</h4>
<p><img alt="Fritz!Box 3790" src="/images/fritzbox_7390.jpg"></p>
<h4>Connection to a cable&nbsp;modem</h4>
<h4 id="connection-to-a-cable-modem">Connection to a cable&nbsp;modem</h4>
<p><a href="http://service.avm.de/support/en/skb/FRITZ-Box-7390-int/700:Connecting-FRITZ-Box-to-a-cable-modem">Connection to a cable&nbsp;modem</a></p>
<p>I wanted to use the Fritz!Box as part of my existing network.
I decided not to use the <span class="caps">WLAN</span> option of the Fritz!Box, but instead I bought a Fritz! Powerline 520 E set, because I did not have a cabled network connection on the location where the Internet modem was located. In this setup I could connect the Internet modem to the <span class="caps">LAN</span> 1/<span class="caps">WAN</span> connection of my&nbsp;Fritz!Box.</p>
<h3><span class="caps">DECT</span> telephone&nbsp;device</h3>
<h3 id="dect-telephone-device"><span class="caps">DECT</span> telephone&nbsp;device</h3>
<p>The Fritz!Box 7390 offers a basestation, upto 6 <span class="caps">DECT</span> telephones can be&nbsp;connected. </p>
<p>Note: For now I do not have any <span class="caps">DECT</span> phones&nbsp;connected. </p>
<p>Update: Some developments here. I bought a <span class="caps">DECT</span> Gigaset <span class="caps">A420A</span> <span class="caps">TRIO</span>. When they are setup I will update my&nbsp;findings.</p>
<h2><span class="caps">VOIP</span>&nbsp;telephony</h2>
<h2 id="voip-telephony"><span class="caps">VOIP</span>&nbsp;telephony</h2>
<p>For <span class="caps">OSX</span> there are several softphone apps&nbsp;available:</p>
<p><a href="http://www.tlphn.com/">Telephone</a></p>
<p><a href="http://counterpath.s3.amazonaws.com/downloads/X-Lite_Mac_3520g_70143.dmg">Counterpath&nbsp;X-Lite</a></p>
<h2>Add-ons</h2>
<h3>Alfred&nbsp;workflow</h3>
<h2 id="add-ons">Add-ons</h2>
<h3 id="alfred-workflow">Alfred&nbsp;workflow</h3>
<p>I created a simple Alfred 2 workflow that calls the Frizzix dial&nbsp;helper.</p>
<p>Use keyword &#8220;Dial&#8221; to trigger a little Applescript that&nbsp;contains:</p>
<div class="highlight"><pre><span></span><code><span class="k">on</span> <span class="nv">alfred_script</span><span class="p">(</span><span class="nv">q</span><span class="p">)</span>
Expand All @@ -175,9 +207,9 @@ <h3>Alfred&nbsp;workflow</h3>
<span class="k">end</span> <span class="nv">alfred_script</span>
</code></pre></div>

<h3>Call diversion from&nbsp;script</h3>
<h3 id="call-diversion-from-script">Call diversion from&nbsp;script</h3>
<p><a href="http://www.robbastiaansen.nl/node/51">Call diversion&nbsp;script</a></p>
<h3>Frizzix Call monitor (<span class="caps">MAC</span>)</h3>
<h3 id="frizzix-call-monitor-mac">Frizzix Call monitor (<span class="caps">MAC</span>)</h3>
<p><a href="http://mac.frizzix.de/en/">Frizzix</a></p>
<p>I also&nbsp;installed:</p>
<ul>
Expand All @@ -188,18 +220,18 @@ <h3>Frizzix Call monitor (<span class="caps">MAC</span>)</h3>
<p>Services&nbsp;plugin</p>
</li>
</ul>
<h3>Fritz!Box browser&nbsp;add-on</h3>
<h3 id="fritzbox-browser-add-on">Fritz!Box browser&nbsp;add-on</h3>
<p><a href="http://www.avm.de/de/Service/FRITZ_Tools/browser_plugin.html">Add-on for&nbsp;Firefox</a></p>
<p>Note: it seems that in my setup phone numbers are recognized in webpages, but dialing out does not&nbsp;work.</p>
<h3>dialing&nbsp;scripts</h3>
<h3 id="dialing-scripts">dialing&nbsp;scripts</h3>
<p><a href="http://wehavemorefun.de/fritzbox/W%C3%A4hlen_aus_OS_X_Adressbuch">Dialing from Address&nbsp;book</a></p>
<h3><span class="caps">POP3</span> mail checker and alert on&nbsp;Fritz!Box</h3>
<h3 id="pop3-mail-checker-and-alert-on-fritzbox"><span class="caps">POP3</span> mail checker and alert on&nbsp;Fritz!Box</h3>
<p><a href="http://wehavemorefun.de/fritzbox/POP3-Robot"><span class="caps">POP3</span>-Robot</a></p>
<h3>fhem</h3>
<h3 id="fhem">fhem</h3>
<p><a href="http://fhem.de/fritzbox.html">fhem</a></p>
<h3>Synology Diskstation&nbsp;front-end</h3>
<h3 id="synology-diskstation-front-end">Synology Diskstation&nbsp;front-end</h3>
<p><a href="http://spk.q14six.de/">Fritz!Box front-end&nbsp;package</a></p>
<h2>References</h2>
<h2 id="references">References</h2>
<p>[1] <a href="http://http://en.wikipedia.org/wiki/Plain_old_telephone_service"><span class="caps">POTS</span></a></p>
<p>[2] <a href="http://www.avm.de"><span class="caps">AVM</span></a></p>
<p>[3] <a href="http://http://service.avm.de/support/en/skb/FRITZ-Box-7390-int/page:1"><span class="caps">AVM</span> Knowledge&nbsp;base</a></p>
Expand Down
6 changes: 3 additions & 3 deletions articles/helpdesk-and-wallboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,17 +130,17 @@ <h1 class="entry-title">helpdesk and wallboard</h1>
<!-- more -->

<p toc>Contents</p>
<h3>What is a&nbsp;wallboard?</h3>
<h3 id="what-is-a-wallboard">What is a&nbsp;wallboard?</h3>
<p>A wallboard is a type of information radiator that displays vital data about the progress of the development team. Similar to a scoreboard at a sporting event, wallboards are large, highly visible and easy to understand for anyone walking&nbsp;by.</p>
<p>Traditional wallboards are made of paper or use sticky notes on a wall. Electronic wallboards are very effective since they update automatically with real-time data ensuring that people check back&nbsp;regularly.</p>
<h3>Software used by&nbsp;others</h3>
<h3 id="software-used-by-others">Software used by&nbsp;others</h3>
<p><a href="https://wiki.jenkins-ci.org/display/JENKINS/Wall+Display+Plugin">Jenkins wall display&nbsp;plugin</a></p>
<p><a href="https://answers.atlassian.com/questions/156696/would-jira-work-well-in-samsung-smart-tv-built-in-web-browser">Jira and Greenhopper on Samsung Smart <span class="caps">TV</span></a></p>
<p><a href="https://marketplace.atlassian.com/plugins/com.atlassian.jirawallboard.atlassian-wallboard-plugin">Jira Wallboard&nbsp;plugin</a></p>
<p><a href="http://shopify.github.io/dashing/">Dashing</a></p>
<p><a href="https://github.com/ITV/radiator-rotator/blob/master/index.html">Radiator&nbsp;rotator</a></p>
<p><a href="http://jquery.malsup.com/cycle2/">Jquery&nbsp;Cycle2</a></p>
<h3>Hardware used by&nbsp;others</h3>
<h3 id="hardware-used-by-others">Hardware used by&nbsp;others</h3>
<p><a href="http://pivotallabs.com/using-a-raspberry-pi-as-an-information-radiator/">Raspberry&nbsp;Pi</a></p></div>

<div class="entry-content">
Expand Down
Loading

0 comments on commit 165dd5c

Please sign in to comment.