<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:media="http://search.yahoo.com/mrss/"><channel><title><![CDATA[stën]]></title><description><![CDATA[Thoughts, stories and ideas.]]></description><link>https://sten.pw/</link><image><url>https://sten.pw/favicon.png</url><title>stën</title><link>https://sten.pw/</link></image><generator>Ghost 4.0</generator><lastBuildDate>Wed, 04 Feb 2026 12:33:45 GMT</lastBuildDate><atom:link href="https://sten.pw/rss/" rel="self" type="application/rss+xml"/><ttl>60</ttl><item><title><![CDATA[Programmable XBee in Linux/MacOS/*BSD]]></title><description><![CDATA[<!--kg-card-begin: markdown--><h2 id="intro">Intro</h2>
<p><a href="https://www.digi.com">Digi</a> is quite famous for its <a href="https://www.sparkfun.com/pages/xbee_guide">confusing portfolio</a> of XBee radios that over the years have been featured in numerous DIY projects and are available from many hobby shops. There are literally <a href="https://learn.sparkfun.com/tutorials/exploring-xbees-and-xctu">tons</a> <a href="https://spin.atomicobject.com/2016/07/18/xbee-tutorial/">of</a> <a href="https://www.cooking-hacks.com/documentation/tutorials/xbee-arduino-raspberry-pi-tutorial/">guides</a> out there to get you started. They usually start by configuring the radios so</p>]]></description><link>https://sten.pw/programmable-xbee-zigbee-radio-development-in-linux-macos/</link><guid isPermaLink="false">597f38a558d8720d33b1cb03</guid><category><![CDATA[xbee]]></category><dc:creator><![CDATA[Sten Feldman]]></dc:creator><pubDate>Tue, 04 Jul 2017 10:53:27 GMT</pubDate><media:content url="https://sten.pw/content/images/2017/07/program_xbee.png" medium="image"/><content:encoded><![CDATA[<!--kg-card-begin: markdown--><h2 id="intro">Intro</h2>
<img src="https://sten.pw/content/images/2017/07/program_xbee.png" alt="Programmable XBee in Linux/MacOS/*BSD"><p><a href="https://www.digi.com">Digi</a> is quite famous for its <a href="https://www.sparkfun.com/pages/xbee_guide">confusing portfolio</a> of XBee radios that over the years have been featured in numerous DIY projects and are available from many hobby shops. There are literally <a href="https://learn.sparkfun.com/tutorials/exploring-xbees-and-xctu">tons</a> <a href="https://spin.atomicobject.com/2016/07/18/xbee-tutorial/">of</a> <a href="https://www.cooking-hacks.com/documentation/tutorials/xbee-arduino-raspberry-pi-tutorial/">guides</a> out there to get you started. They usually start by configuring the radios so that the channel works for communication. Continuing from there, the tutorials cover how to hook up an Arduino/Raspberry/[Name-your-board] so that they can &quot;talk&quot; to each other for whatever practical application you may have in mind. There is also an excellent book about <a href="https://www.amazon.com/Building-Wireless-Sensor-Networks-Processing/dp/0596807732">Building Wireless Sensor Networks</a> which covers XBee radios in detail as well as <a href="https://www.amazon.com/gp/product/1784395587">Building Wireless Sensor Networks Using Arduino</a> for more specialized usage and scenarios.</p>
<p>This is all <strong>great</strong>! But what if I told you, <strong>you can add logic</strong> to certain XBee modules without having any additional boards attached to it. This may or may not be news, but Digi also has a programmable variant of its radio modules, in which they have included an 8-bit HCS08 microcontroller (<a href="http://www.nxp.com/docs/en/data-sheet/MC9S08QE32.pdf">MC9S08QE32</a>) directly on the XBee module.</p>
<p>From pricing point of view, there&apos;s very little difference between the two. For an example:</p>
<table>
<tr>
  <th><b>Model</b></th>
  <th><b>SKU</b></th>
  <th><b>Programmable</b></th>
  <th><b>Price</b></th>
</tr>
<tr>
  <td>XBee-PRO ZigBee Through-Hole (Wire Antenna)</td>
  <td>XBP24CZ7WIT-004</td>
  <td align="center"><font color="red">No!</font></td>
  <td>25.83&#x20AC;+VAT</td>
</tr>
<tr>
  <td>Programmable XBee-PRO ZigBee Through-Hole (Wire Antenna)</td>
  <td>XBP24CZ7WITB003</td>
  <td align="center"><font color="green">Yes!</font></td>
  <td>27.99&#x20AC;+VAT</td>
</tr>
</table>
<p>This looks really really good and competitive, and one might start to wonder why aren&apos;t they covered in more detail, until you start looking into what you&apos;d need to develop on it:</p>
<ul>
<li>You&apos;d need a DEV-Kit (<a href="http://eu.mouser.com/search/ProductDetail.aspx?R=0virtualkey0virtualkeyXK2-Z7SBE0">XK2-Z7SBE0</a>)! Digi sells one with some SMT version of the modules, interface board and a debugger for <strong>400+&#x20AC;!</strong> What if I just need one for blinking some LEDs?</li>
<li>Although the excellent configuration tooling called <a href="https://www.digi.com/products/xbee-rf-solutions/xctu-software/xctu">XCTU</a> is a multiplatform offering, the development tools are strictly Windows bound!</li>
<li>SDK Documentation and tutorials are all burried into the same Windows based SDK tooling, making accessibility difficult.</li>
</ul>
<p>Based on this, it&apos;s easy to see why the Hobbyist crowd aren&apos;t much using these.</p>
<p>But what if I told you, <strong>you don&apos;t need the DEV-Kit</strong> and that <strong>you can develop/flash the module at the comfort of your Linux/MacOS/BSD machine!</strong></p>
<h2 id="developmentflowandtooling">Development flow and tooling</h2>
<p><strong>Time for some warning!</strong> Do keep in mind that this solution makes it more challenging to debug your application. Also, it relies on the bootloader to work properly. The bootloader code is designed to protect its memory space not to overwrite itself but I guess it&apos;s still possible to end up with a non-functional XBee module. Consider yourself warned!</p>
<p>If you have familiarized yourself with the basic XBee modules, here&apos;s what you need with the Programmable variant:</p>
<ul>
<li>An <a href="https://www.sparkfun.com/products/11812">USB XBee Explorer</a> or <a href="https://www.sparkfun.com/products/11697">equivalent</a> with a working Reset button. The Reset button is used frequently to access the module&apos;s bootloader for Bypassing the onboard MCU or for flashing application firmware.</li>
<li><a href="https://github.com/exsilium/pxbee-fwup.js">pxbee-fwup.js</a> - for flashing the built binary.</li>
<li>Unless you are on Linux, <a href="https://www.docker.com/">Docker</a> is required for building the project as the compiler and burner are 32-bit Linux binaries.</li>
<li>A Programmable XBee module (duh!)</li>
</ul>
<h3 id="buildinghelloworld">Building hello world</h3>
<p>Start with a boilerplate hello-world project for blinking a LED on your new shiny Programmable S2B or S2C Xbee module. For that check-out the <a href="https://github.com/exsilium/pxbee-blink-led">pxbee-blink-led</a> project.</p>
<pre><code>git clone https://github.com/exsilium/pxbee-blink-led.git
cd pxbee-blink-led
</code></pre>
<p>If you are using a S2C version of Programmable module, edit the <code>include/xbee_config.h</code> file and change <code>#define CONFIG_XBEE_S2B</code> to <code>#define CONFIG_XBEE_S2CTH</code>. Then build the project:</p>
<pre><code>make all
</code></pre>
<p>For nuances about compiling on non 32-bit Linux, please see the above linked Github page but if you have <a href="https://www.docker.com/">Docker</a> installed the following should work:</p>
<pre><code>make builddocker
make dall
</code></pre>
<p>This will produce an HCS08 binary (<code>./obj/blink_led.abs.bin</code>) that you can upload to the XBee module. The application offers very little in functionality - it just turns on/off pin 7 in 125ms intervals. The same pin is by default used for RX signal strength indicator so if your XBee shield has a LED connected to it, you will see a rapidly blinking LED when the application will boot up.</p>
<h3 id="flashing">Flashing</h3>
<p>The factory shipped modules are all flashed with a bootloader and they do support firmware update over the serial interface. As long as the bootloader works, it&apos;s quite safe to upload a new application binary to the module.</p>
<p>For that, we need the help of <a href="https://github.com/exsilium/pxbee-fwup.js">pxbee-fwup.js</a> project:</p>
<pre><code>git clone https://github.com/exsilium/pxbee-fwup.js.git
cd pxbee-fwup.js
npm install
./fwup.js --help
</code></pre>
<p>To flash the binary:</p>
<pre><code>./fwup.js -d /dev/your-serial-port -b 9600 -F ./obj/blink_led.abs.bin
</code></pre>
<p><a href="https://asciinema.org/a/2BP9maFqVWEz2MdN37sb73KE4"><img src="https://asciinema.org/a/2BP9maFqVWEz2MdN37sb73KE4.png" alt="Programmable XBee in Linux/MacOS/*BSD" loading="lazy"></a></p>
<h2 id="conclusions">Conclusions</h2>
<p>For the DIY crowd on a Linux machine, there is now tooling in place that gives a good opportunity to explore Programmable XBee radios without big investments. Futher more, this will enable you to save power and reduce the footprint of your projects as there is no need for a separate microcontroller board.</p>
<p><strong>Have fun!</strong> &#x1F37B;&#x1F60E;</p>
<h2 id="somelinks">Some links</h2>
<ul>
<li>
<p><a href="https://xbee-sdk-doc.readthedocs.io">XBee-SDK Documentation</a></p>
</li>
<li>
<p><a href="http://exsilium.github.io/xbee-sdk-doc/">XBee-SDK API Documentation</a></p>
</li>
<li>
<p><a href="https://exsilium.github.io/xbee-frame-generator/">XBee Frame Generator</a></p>
</li>
<li>
<p><a href="https://github.com/exsilium/pxbee-trigger">XBee Relay Trigger</a> - Practical application for automating garage doors and swing gates</p>
</li>
</ul>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[My 10+ years with a Mac]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>The recent Macbook Pro launch started an avalanche of discussions about what Apple has done wrong, how the MBP is not a real <em>pro</em> device and how the machine&apos;s only purpose is to get money from rich <em>iSheep</em>. Looking at Mac related discussions forums, there seems to be</p>]]></description><link>https://sten.pw/my-10-years-with-a-mac/</link><guid isPermaLink="false">597f38a558d8720d33b1cb02</guid><dc:creator><![CDATA[Sten Feldman]]></dc:creator><pubDate>Sun, 08 Jan 2017 10:32:56 GMT</pubDate><media:content url="https://sten.pw/content/images/2017/01/12yearsofMacs.png" medium="image"/><content:encoded><![CDATA[<!--kg-card-begin: markdown--><img src="https://sten.pw/content/images/2017/01/12yearsofMacs.png" alt="My 10+ years with a Mac"><p>The recent Macbook Pro launch started an avalanche of discussions about what Apple has done wrong, how the MBP is not a real <em>pro</em> device and how the machine&apos;s only purpose is to get money from rich <em>iSheep</em>. Looking at Mac related discussions forums, there seems to be a vocal group of people who have had <strong>enough</strong> and they are moving away from Apple to Windows/Linux/<em>you-name-it</em> OS.</p>
<p>Some of the loudest arguments that got repeated to death:</p>
<ul>
<li>No ports! Pros need and use USB/SD/x ports! Welcome to Dongleland.</li>
<li>It&apos;s slow! Skylake <em>lulz</em>!</li>
<li>16GB in 2016? What a joke!</li>
<li>Expensive!</li>
</ul>
<p>Well, as it stands, I ordered one of the 15&quot; beauties with almost maxed out configuration (only constraining myself to 1TB instead of 2TB - <em>Ouch</em>, screamed the wallet). Why? Let me try to explain.</p>
<h2 id="tldr">TL;DR;</h2>
<p>I like UNIX, I like macOS. Upgrades are different. My previous laptop was from year 2009 making the 2016 tMBP an excellent upgrade!</p>
<h3 id="switchingtoamacinthefirstplace">Switching to a Mac in the first place</h3>
<p>Looking back at my computer history I started with a PC - DOS, Windows 3.1, 95, NT, 98, 2000, ME, XP. In 1996 I was exposed to FreeBSD and Linux (Slackware) which i grew to love enormously, but purely as a server side OS. A big part of why I loved and used Windows at the time on my Desktop, was the games. I didn&apos;t care much for the OS itself, but it was the standard at the time for productivity/document authoring (Office) as well as entertainment/gaming - remember, this was all before Web 2.0 explosion.</p>
<p>I don&apos;t count the times when I had a multiboot setup or experimented with different Linux desktops, because it doesn&apos;t really count if you don&apos;t use it as a daily driver. I remember that there were severe limitations accessing NTFS partitions from Linux side and vice versa creating data silos. During the experimentation phase I quickly realised that I needed a single OS, switching between different two worlds wasn&apos;t for me.</p>
<p>I don&apos;t recall when I made the switch, but I do remember the game that finally pushed me over to the Linux side - it was <strong>Neverwinter Nights</strong> Linux client release. After that, in 2003, I found that, hey, I can live in Linux! &#x1F64C; Wine was able to run MS Office programs, so I made the decision to see it through and the disk/partition that hosted my Windows installation was slowly forgotten.</p>
<p>Still, I can&apos;t say my Linux desktop experience was smooth. Actually, it was quite the opposite. Driver issues and compatibility as well as the whole upgrade experience became an hurdle. This was partly due to Linux dependency-circle-of-hell that eventually always surfaced. Some of my mandatory commercial driver packages contributed to this issue a lot. Every upgrade started to become a challenge to get everything working. This kind of constant (re)configuring started to distract me.</p>
<p>Late 2004 I started to look around for a laptop due to increased traveling and my experiences with Linux on the Desktop as well as multiple sources stating that Linux in laptop is a bumpy ride (drivers, power management) made me look elsewhere. A coworker of mine at the time had made the jump to experiment Apple&apos;s Mac OS X and demonstrated proudly his new <a href="http://www.everymac.com/systems/apple/ibook/specs/ibook_g4_1.0_12.html">iBook G4</a>. Already then, the white plastic shell looked like something straight out from a sci-fi movie. The owner of it was also a Linux fan, so it was a good reference to begin with.</p>
<p>The winning arguments at the time was that OS X was really a UNIX OS at heart. There where two package managers <a href="https://en.wikipedia.org/wiki/Fink">Fink</a> and <a href="https://en.wikipedia.org/wiki/MacPorts">DarwinPorts</a> bridging the world to GNU and OSS so this made my soon-to-be-system familiar even before I had one. Another winning argument was that the software and hardware came from a single company - no driver issues guaranteed! If something didn&apos;t work, you knew whom to blame. As an added bonus, the gaming situation, although not comparable to Windows, was much better than in Linux, so it felt like I was gaining something. &#x1F44C;</p>
<p>I did get a word of advice from another Apple &quot;pro&quot; user to stay away from iBook and look towards more capable PowerBook. I was oblivious to the PowerPC CPU situation, nor did I have any insight to the rumors about Apple switching to Intel. I was just happy when in early 2005 I found a good offer on a barely used <a href="http://www.everymac.com/systems/apple/powerbook_g4/specs/powerbook_g4_1.5_17.html">PowerBook G4 17&quot;</a> which was a BTO/CTO configured machine. The top of the line model available at the time.</p>
<p>This machine was marvellous piece of engineering. The software worked so well on the laptop that first time ever I started to rely on laptop sleep function. The UI was refreshing, everything was running smooth and with the help of <a href="https://qsapp.com/">Quicksilver</a>, launching applications was superfast and intuitive. It was remarkable experience that showed how hardware and software can work together. It quickly made my Desktop PC obsolete. This happened 12 years ago.</p>
<h3 id="switchingtointelmac">Switching to Intel Mac</h3>
<p>In retrospective, I was bummed when Apple announced that it will be switching to Intel based CPUs already during the same year when I had bought my first Mac. However, the effects of how and what it would mean to me as a user were unknown. Apple kept improving its OS and as long as my machine was supported, everything worked really really well making me a happy user. Because of the significant number of PowerPCs out there, the support for the architecture remained strong.</p>
<p>I ended up using the trusty Powerbook until 2009 when Apple launched the new Unibody design. I switched to a <a href="http://www.everymac.com/systems/apple/macbook_pro/specs/macbook-pro-core-2-duo-2.66-aluminum-17-early-2009-unibody-specs.html">Macbook Pro 17&quot;</a>. Comparing to the competition, it was strongly ahead. It was a beautiful piece of engineering that also cost arm and a leg but I already knew what to expect and I knew it was worth it. I ended up getting the &quot;<em>cheapest</em>&quot; 17&quot; MBP one could buy (brand new this time), but I did end up upgrading the memory and switching to SSD at a later time. I knew the journey I was on and I was comfortable knowing that the investment in the machine will be for many years to come. The launch of the Unibody received some screams as well, Apple had chosen to go with a glossy screen as default, although offering matte BTO/CTO option. I remember a lot of the comments about this being not a <em>pro</em> move.</p>
<p>In 2011 I started to use a 2009 15&quot; Unibody MBP that I received from work. As my wife had used the Powerbook G4 to write her Master&apos;s thesis (showing some challenging performance issues) and planned to start her PhD dissertation, I proudly handed the 17&quot; Unibody to her, she&apos;s been happy with it to this day.</p>
<h3 id="macosondesktop">macOS on Desktop</h3>
<p>In 2012, mainly out of curiousity, I built myself a Desktop machine with passive liquid-cooling and I squeezed OS X on it with an ulterior motive to occasionally play something on Windows &#x1F921;. The i7-3770K machine hasn&apos;t given me any headache. I&apos;ve upgraded from one macOS version to another and the only components that have changed are either SSDs (I currently run 2x1TB SSD in RAID-0 configuration) or memory (now @ 16GB). Some trickery and magic were needed at some point to get iCloud and some other services to work. I don&apos;t really fancy that. It&apos;s clear that although Apple doesn&apos;t actively block the Hackintosh crowd, they don&apos;t necessarily make their life easy - protecting their cloud infrastructure and customers, it all makes sense. However, there has been no urge for me to boot into Windows 10, other than the occasional AAA game title that gets launched. I dream more about gaming than I have actually time to enjoy them - such is life.</p>
<h3 id="timetomoveforward">Time to move forward</h3>
<p>Oddly enough, I was still quite happy with the 2009 models. Although I know that there has been plenty of improvements over the years, none seemed significant enough for me to go out and buy a new machine.</p>
<p>Latest version of macOS changed that. Apple doesn&apos;t support installing the newest MacOS 10.12 &quot;<em>Sierra</em>&quot; on our 15&quot;&amp;17&quot; 2009 Unibody models, nor will I start to force it. There&apos;s no real point to it. My wife is happy with that machine and I figure <em>El Capitan</em> will receive security fixes for the next year or two. Kudos to Apple making planned obsolescence work that well. Suddenly, I was on a lookout for a new machine.</p>
<p>For me, when I saw the announcement of the 2016 model I knew it was time for me to move on, not away.</p>
<h3 id="themacbookpro2016">The Macbook Pro 2016</h3>
<h4 id="whywhynot">Why? Why not?</h4>
<p>The choices we make in the past and the experiences we gain, shape our decisions for the future.</p>
<p>Looking back more than 10 years with Apple, I&apos;ve had only 2 different Mac generations, the PowerBook and the 2009 Unibody. Both did receive some minor upgrades (battery for the G4, SSD and/or memory for the Unibodies) but they have proved themselves to be battle worthy. I didn&apos;t have any issues with them nor did I have any complaints - why should I change? Just because the rage on the Internets? Nope.</p>
<p>Speaking of complaints, let&apos;s circle back to the original list of screams about the 2016 MBP to see how I feel about things:</p>
<ul>
<li>USB-C is a great standard, I like how Apple seems to have fully invested into it. I personally have very little appliances that I hook up so I don&apos;t feel the pain. I did buy the following to ease the transition though:
<ul>
<li><a href="https://www.amazon.com/dp/B01AZC3NWY">Sony USB-A/C flash drive</a></li>
<li><a href="https://www.amazon.com/dp/B015Z7XE0A">nonda USB-C to USB 3.0 Mini Adapter</a></li>
</ul>
</li>
<li><a href="https://www.cpubenchmark.net/compare.php?cmp%5B%5D=2863&amp;cmp%5B%5D=2699">It&apos;s not slow</a>. Moore&apos;s Law <strong>is</strong> slowing down @ Intel. The only Kaby Lake mobile CPU that is aimed at performance and was available at the time of launch was the dual core i7-7500U. An i7-6920HQ which is a four core model almost doubles the performance. A new generation of Intel chips no longer brings the added performance bonuses that people have come to expect. Upgrading from Penryn T9550 however, does. The new chip is more than <strong>5 times</strong> faster. Apple has skipped generations before, they might do it again.</li>
<li>Memory - If you really need beyond 16GB then, yes.. you have a problem. Even when running VMs, it&apos;s hard for me to exhaust all that memory. Heavy lifting for me happens in the cloud. I just can&apos;t relate to the problem.</li>
<li>It is expensive, this is not news, it has always been so. Then again, I don&apos;t switch machines every year.</li>
</ul>
<p>Some reasons I&apos;m not switching away:</p>
<ul>
<li>I really like macOS. To the point that I even use it on non-Apple hardware (<em>sssh!</em>)</li>
<li>Linux position and experience on laptops hasn&apos;t changed over the years. The alternatives that are offered are limited, often sub-par and buying just &quot;any&quot; computer for cheap doesn&apos;t justify the potential driver/power management hell. It&apos;s never fun to hit some serious UEFI issue to boot Linux.</li>
<li>You pay for the full experience. You simply can&apos;t get similar UNIX experience anywhere else.</li>
<li>XPS Developer Edition is often cited as recommended alternative to MBP. Sorry, but when it comes to build quality and sturdiness, you simply can&apos;t compare these two.</li>
<li>Although it costs more, I <em>feel</em> like I get more out of it.</li>
</ul>
<h4 id="firstimpressions">First impressions</h4>
<ul>
<li>Received it 2017-01-05</li>
<li>Youtube videos and pictures don&apos;t do it justice, the thing is an absolute marvel of engineering to look at, feel and use.</li>
<li>My unit came with macOS 10.12.2 installed, the release date of that was 2016-12-13</li>
<li>Keyboard is nice, quickly adapted, but I&apos;m not sure I can get used to the silent/feedbackless tbESC, I might need to remap.</li>
<li>Some of the TouchBar functionality is nice. It&apos;s not a must have revolution, but it is a convenience function if the software supports it. I was delighted to see that the just recently launched <a href="https://sparkmailapp.com">Spark</a> already has built in support. I do get it why they call it the emoji bar. It&apos;s actually useful for that function &#x1F60F;</li>
<li>I do miss MagSafe for charging.</li>
</ul>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[Goodbye Confluence]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>It all started simple enough, a simple wiki to host different projects and experiments. Among all the other great functionality for the time, It also had a &quot;<em>News</em>&quot; feature that at a later date evolved into a blog.</p>
<p>But <em>The Times They Are A Changin&apos;</em>, so it&</p>]]></description><link>https://sten.pw/goodbye-confluence/</link><guid isPermaLink="false">597f38a558d8720d33b1cb01</guid><dc:creator><![CDATA[Sten Feldman]]></dc:creator><pubDate>Thu, 17 Nov 2016 10:12:32 GMT</pubDate><media:content url="https://sten.pw/content/images/2021/03/confluence_black_sakura.png" medium="image"/><content:encoded><![CDATA[<!--kg-card-begin: markdown--><img src="https://sten.pw/content/images/2021/03/confluence_black_sakura.png" alt="Goodbye Confluence"><p>It all started simple enough, a simple wiki to host different projects and experiments. Among all the other great functionality for the time, It also had a &quot;<em>News</em>&quot; feature that at a later date evolved into a blog.</p>
<p>But <em>The Times They Are A Changin&apos;</em>, so it&apos;s been a fun experiment with some takeaways:</p>
<ol>
<li>
<p>Blogs are fun, even if no one reads them but yourself - the magical number of 7 limits our working <a href="https://en.wikipedia.org/wiki/The_Magical_Number_Seven,_Plus_or_Minus_Two">memory capacity</a>. It&apos;s fun to look back even a year or two to see what felt <em>important</em> at the time, triggering different emotions as you look back - both good and bad.</p>
</li>
<li>
<p>Stick to one language. I scribbled stuff in Estonian but even when writing just for myself, it felt out of place. As English isn&apos;t my native tongue, I don&apos;t have to feel embarrassed when looking back at all the awful spelling mistakes i did ;)</p>
</li>
<li>
<p>Archive and move on. I think that was the hardest part. A collection of <em>something</em> that hold marginal value only to yourself. Software entropy at work is good motivation to make the switch, but it&apos;s emotionally hard to break away from something old to something new. Still, it&apos;s a beneficial and needed exercise to do just that!</p>
</li>
</ol>
<p>Confluence Blog statistics:</p>
<ul>
<li>Total entries: <strong>38</strong></li>
<li>Time in service: (4th of May) <strong>2008-2016</strong> (24th of April)</li>
<li>Shutdown: 2016-11-17</li>
</ul>
<!--kg-card-end: markdown-->]]></content:encoded></item><item><title><![CDATA[Welcome to Ghost]]></title><description><![CDATA[<!--kg-card-begin: markdown--><p>Ghost is not new to me. I&apos;ve patiently waited while the software matures to the point that I can migrate away from my current <a href="https://www.atlassian.com/software/confluence">Atlassian Confluence</a> setup that I have been running since <a href="https://en.wikipedia.org/wiki/2008">2008</a>.</p>
<p>Confluence is (was) great, but for personal use it&apos;s simply a piece</p>]]></description><link>https://sten.pw/welcome-to-ghost/</link><guid isPermaLink="false">597f38a558d8720d33b1cb00</guid><category><![CDATA[Getting Started]]></category><dc:creator><![CDATA[Sten Feldman]]></dc:creator><pubDate>Mon, 24 Oct 2016 09:30:23 GMT</pubDate><media:content url="https://sten.pw/content/images/2016/11/mountain_motel-2.gif" medium="image"/><content:encoded><![CDATA[<!--kg-card-begin: markdown--><img src="https://sten.pw/content/images/2016/11/mountain_motel-2.gif" alt="Welcome to Ghost"><p>Ghost is not new to me. I&apos;ve patiently waited while the software matures to the point that I can migrate away from my current <a href="https://www.atlassian.com/software/confluence">Atlassian Confluence</a> setup that I have been running since <a href="https://en.wikipedia.org/wiki/2008">2008</a>.</p>
<p>Confluence is (was) great, but for personal use it&apos;s simply a piece of complexity that requires huge amount of resources to properly run (Java! I&apos;m looking at you!). Instead, I&apos;ve taken on the quest to find ways to make things thinner and lighter. I&apos;ll export my old legacy stuff for archiving purposes and will just try to <strong>let it go...</strong></p>
<p>Before that happens though, this article will remain my testing grounds.</p>
<h4 id="nodebulletinboard">Node Bulletin Board</h4>
<p>NodeBB and Ghost seems like were made to complement each other. A lot of the philosophies are shared. Namely <strong>Markdown</strong> has been made centerpiece for formatting.</p>
<p>When a Ghost entry is greated, NodeBB topic can be created to handle the comments. This is great! However, one thing to keep in mind is that the stub that gets created in NodeBB is not updated and only reflects the content of the article at the time of creation.</p>
<h4 id="confluencevsghostnodebb">Confluence vs Ghost+NodeBB</h4>
<h6 id="projectsandpages">Projects and pages</h6>
<p>Confluence was about creating a &quot;space&quot; for a project and then arbitrary number of pages and sub-pages with content under that space. However, for smaller personal projects NodeBB allows similar content management. Categories and sub-categories represent the &quot;space&quot; and a thread a particular content page.</p>
<h6 id="blog">Blog</h6>
<p>In Confluence, Blog was just a special content within a space and a lot of effort was put into making the Blog section look something more interesting than the vanilla Confluence site. Ghost as a publishing platform is much more elegant for those purposes and the theming options are endless. However, the basic &quot;casper&quot; theme is so modern and clean that I don&apos;t see any immediate reason to switch to something more custom. However, I&apos;ve tweaked some of the css to make the site more &quot;me&quot; in terms of switching to a monospace font. There are plenty of free and commercial Ghost themes available. One possible caveat seems to be that many of them are out-of-date when it comes to supporting all the newest features of Ghost...</p>
<h6 id="sharingaccess">Sharing access</h6>
<p>Confluence was connected to Atlassian Crowd, an identity management solution that made it easy to propagate single identity over multiple Atlassian products. Still the requirement was that the use account was registered within the Crowd itself and for personal projects, again... too much overhead!</p>
<p>Sharing access to particular category within NodeBB has been made easy. The access management is really fine grained and the user can utilize different authorities to log in to NodeBB.</p>
<p>Access to Blog isn&apos;t restricted, as well.. that&apos;s the idea of the Blog, these are public postings after all.</p>
<h4 id="testing">Testing</h4>
<blockquote>
<p>This quote block!</p>
</blockquote>
<blockquote>
<p>--Cool!</p>
</blockquote>
<pre><code>This is a code block
Here every line is rendered
As entered
</code></pre>
<h5 id="tables">Tables</h5>
<p>Unforuntately, the native markdown extension for tables is not supported. Ghost proclaims that all HTML is valid markdown, so one must enter tables like so:</p>
<table>
<tr>
  <th>Feature</th>
  <th>Intel Core2 Quad Q9650 @ 3.00GHz</th>
  <th>Intel Core i7-6920HQ @ 2.90GHz</th>
</tr>
<tr>
  <td>Socket Type</td>
  <td>LGA775</td>
  <td>LGA1151</td>
</tr>
<tr>
  <td>CPU Class</td>
  <td>Desktop</td>
  <td>Laptop</td>
</tr>
<tr>
  <td>Clockspeed</td>
  <td>3.0 GHz</td>
  <td>2.9 GHz</td>
</tr>
<tr>
  <td>Turbo Speed</td>
  <td>Not Supported</td>
  <td>Up to 3.8 GHz</td>
</tr>
<tr>
  <td># of Physical Cores</td>
  <td>4</td>
  <td>4 (2 logical cores per physical)</td>
</tr>
<tr>
  <td>Max TDP</td>
  <td>95W</td>
  <td>45W</td>
</tr>
<tr>
  <td>First Seen on Chart</td>
  <td>Q4 2008</td>
  <td>Q1 2016</td>
</tr>
<tr>
  <td># of Samples</td>
  <td>802</td>
  <td>48</td>
</tr>
<tr>
  <td>Single Thread Rating</td>
  <td>1272</td>
  <td>2047</td>
</tr>
<tr>
  <td>CPU Mark</td>
  <td><font color="red"><b>4266</b></font></td>
  <td><font color="red"><b>9595</b></font></td>
</tr>
</table>
[Source][CPU Benchmark]
<h4 id="credits">Credits</h4>
<p>Post cover image by <a href="http://faxdoc.deviantart.com/">faxdoc</a> licensed under terms of <a href="http://creativecommons.org/licenses/by-nc-nd/3.0/">Creative Commons</a></p>
<!--kg-card-end: markdown-->]]></content:encoded></item></channel></rss>