<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Programming on Programmer.ie: Modern AI programming</title>
    <link>http://programmer.ie/categories/programming/</link>
    <description>Recent content in Programming on Programmer.ie: Modern AI programming</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Thu, 20 Feb 2025 07:54:29 +0000</lastBuildDate>
    <atom:link href="http://programmer.ie/categories/programming/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>SQLite: the small database that packs a big punch</title>
      <link>http://programmer.ie/post/sqlite/</link>
      <pubDate>Thu, 20 Feb 2025 07:54:29 +0000</pubDate>
      <guid>http://programmer.ie/post/sqlite/</guid>
      <description>&lt;h2 id=&#34;summary&#34;&gt;Summary&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.sqlite.org/index.html&#34;&gt;SQLite&lt;/a&gt; is one of the most widely used database engines in the world, powering everything from mobile applications (Android, iOS) to browsers (Google Chrome, Mozilla Firefox), IoT devices, and even gaming consoles. Unlike traditional client-server databases (e.g., MySQL, PostgreSQL), SQLite is an embedded, serverless database that stores data in a single file, making it easy to manage and deploy.&lt;/p&gt;&#xA;&lt;p&gt;Python developers frequently choose SQLite for its inherent simplicity and portability, leveraging the built-in sqlite3 module for effortless database integration.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Debugging Jupyter Notebooks in VS Code</title>
      <link>http://programmer.ie/post/debugging/</link>
      <pubDate>Tue, 11 Feb 2025 11:48:38 +0000</pubDate>
      <guid>http://programmer.ie/post/debugging/</guid>
      <description>&lt;h2 id=&#34;summary&#34;&gt;Summary&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://code.visualstudio.com/&#34;&gt;Visual Studio Code&lt;/a&gt; is the most popular editor for development.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://jupyter.org/&#34;&gt;Jupyter Notebooks&lt;/a&gt; is the most widely used way to share, demonstrate and develop code in modern AI development.&lt;/p&gt;&#xA;&lt;p&gt;Debugging code is not just used when you have a bug. After you have written any substantial piece of code I suggest  stepping through it in the debugger if possible. This can help improve you understanding and the quality of the code you have written&lt;/p&gt;</description>
    </item>
    <item>
      <title>Project 6: Validator</title>
      <link>http://programmer.ie/post/validator/</link>
      <pubDate>Thu, 28 Apr 2016 23:45:48 +0100</pubDate>
      <guid>http://programmer.ie/post/validator/</guid>
      <description>&lt;p&gt;A validation tool for excel files. Sometimes you need to export data from one system for loading into another. For instance&#xA;you may export a report from a derivatives trading system for information for a collateral management system.&lt;/p&gt;&#xA;&lt;p&gt;This Excel macro file validates input files to make sure that they are in a specific format.&#xA;The input file can be in any format that excel can load. The workbook will load the file and check for errors in place.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Project 5: Dictator</title>
      <link>http://programmer.ie/post/dictator/</link>
      <pubDate>Mon, 28 Mar 2016 23:45:48 +0100</pubDate>
      <guid>http://programmer.ie/post/dictator/</guid>
      <description>&lt;p&gt;Google have just released their speech API. One really cool feature is the ability to transcribe voice in real time.&#xA;Two years ago I built an app with this idea in mind. At that at the time I could no make it work. Now it is time to resurrect that app.&#xA;This post will cover the recording section of that application.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Project 4: Meth</title>
      <link>http://programmer.ie/post/meth/</link>
      <pubDate>Tue, 08 Mar 2016 20:46:38 +0000</pubDate>
      <guid>http://programmer.ie/post/meth/</guid>
      <description>&lt;p&gt;This is another simple android application. It does one thing&#xA;It keeps your phone awake.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Project 3: Site Shot</title>
      <link>http://programmer.ie/post/site_shot/</link>
      <pubDate>Wed, 03 Feb 2016 20:46:38 +0000</pubDate>
      <guid>http://programmer.ie/post/site_shot/</guid>
      <description>&lt;p&gt;This is a really simple android application. It does one thing&#xA;It takes a photo of a web site and allows you to share the photo.&lt;/p&gt;</description>
    </item>
    <item>
      <title>An android SharedPreferences wrapper class</title>
      <link>http://programmer.ie/post/android_settings/</link>
      <pubDate>Sun, 31 Jan 2016 00:08:26 +0000</pubDate>
      <guid>http://programmer.ie/post/android_settings/</guid>
      <description>&lt;p&gt;This is a wrapper around the Android &lt;a href=&#34;http://developer.android.com/reference/android/content/SharedPreferences.html&#34; title=&#34;SharedPreferences&#34;&gt;SharedPreferences&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;It adds a few useful extensions&lt;/p&gt;</description>
    </item>
    <item>
      <title>Project 2: File Explorer for android</title>
      <link>http://programmer.ie/post/fileexplorer/</link>
      <pubDate>Sat, 30 Jan 2016 00:13:56 +0000</pubDate>
      <guid>http://programmer.ie/post/fileexplorer/</guid>
      <description>&lt;p&gt;In this project I am building a file explorer library for android.&#xA;As I was working on &lt;a href=&#34;https://github.com/ernan/catcher&#34; title=&#34;Catcher&#34;&gt;catcher&lt;/a&gt; it became obvious I would need a file picker&#xA;and explorer solution. So I did a bit of looking on the web.&#xA;I found three interesting projects that nearly did what I wanted. I put a few of them together to come up with a hybrid solution.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Project 1: Catcher</title>
      <link>http://programmer.ie/post/catcher/</link>
      <pubDate>Mon, 25 Jan 2016 22:06:44 +0000</pubDate>
      <guid>http://programmer.ie/post/catcher/</guid>
      <description>&lt;p&gt;This is an android application to transfer files from your phone to somewhere else. I will be built as a PC solution but&#xA;can be used for a server solution also.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
