1
0
Fork 0

update 2023-02-15

This commit is contained in:
Tom Lee-Gough 2023-02-15 22:28:07 +00:00
parent 0a58c61164
commit fe4f9aa118
54 changed files with 360 additions and 71 deletions

View File

@ -0,0 +1,18 @@
Title: Automation
Date: 2023-02-15
Tags: Software
Summary: Automated Blog Post Workflow
A well known Linkedin influencer crops up in my feed pretty frequently. The influencer often posts screenshots of tweets that they've made. They're not the only one, there are a number of posters that do similar things. I find it interesting becuase Twitter-Linkedin cross posting was a very early integration that I recall.
In fact, if you head over to your [LinkedIn Preferences](https://www.linkedin.com/mypreferences/d/twitter) you can connect Twitter and cross post automatically. I would have thought that most things would want to be cross posted, but then, I'm not an influencer.
I don't like inefficent processes. I dislike the feeling that I'm wasting time. I like automating small things, because it turns a boring action (copy & paste) into an interesting problem to solve (how do I do the thing). With that in mind, I'm going to describe my workflow for publishing a post on this blog. I don't publish very often, but when I do, I don't want to be copying and pasting anything.
I write my blog entries in [Markdown](https://www.markdownguide.org/), essentially, some minimal markup that can easily get converted into HTML. My website is generated in static site generator called [Pelican](https://docs.getpelican.com/en/latest/index.html). I use [git](https://git-scm.com/) for version control, which I self-host with [Gitea](https://gitea.io/en-us/). So far, not much automted. I can't really automate the writing of blog posts.
Now, the automation bits. The Gitea repository syncs every 8 hours with a Github repository. When the Github repository gets the latest code from Gitea, Netlify pulls the website from Gitea. Within the website all the blog posts are included in the [RSS feed](https://www.coraxfm.uk/feed.rss). [Zapier](https://zapier.com) gets the most recent blog post from the RSS feed and does three things: posts on the [CoraxFM Linkedin company page](https://www.linkedin.com/company/coraxfm/), creates a [tweet](https://twitter.com/CoraxFM), and a [Medium story](https://medium.com/@coraxfm).
I think that the trouble with some of the automations is that many people cannot even imagine what can be automated with relative ease. Zapier is a no-code solution to automation. You could replace the version control/static site stuff that here with Wordpress. Or anything else that supports an RSS feed.
What processes might you have to automate?

View File

@ -39,7 +39,7 @@
<a class="btn btn-link" href="./pages/services.html">Services</a>
<a class="btn btn-link" href="./pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -156,6 +156,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -43,7 +43,7 @@
<a class="btn btn-link" href="./pages/services.html">Services</a>
<a class="btn btn-link" href="./pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -121,6 +121,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -41,7 +41,7 @@
<a class="btn btn-link" href="./pages/services.html">Services</a>
<a class="btn btn-link" href="./pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -128,6 +128,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -34,7 +34,7 @@
<a class="btn btn-link" href="./pages/services.html">Services</a>
<a class="btn btn-link" href="./pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -71,6 +71,19 @@
<div class="column col-12 bg-gray text-primary hero hero-sm">
<div class="columns">
<div class="column col-3 col-md-6 col-sm-12 mt-2">
<div class="card">
<div class="card-image hide-md">
<!-- <img class="img-responsive" src="../images/"> -->
</div>
<div class="card-body">
<a href="./automation.html">Automation</a>
<p><p>Automated Blog Post Workflow</p></p>
</div>
</div>
</div>
<div class="column col-3 col-md-6 col-sm-12 mt-2">
<div class="card">
@ -283,6 +296,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -34,7 +34,7 @@
<a class="btn btn-link" href="../pages/services.html">Services</a>
<a class="btn btn-link" href="../pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -78,7 +78,7 @@
<li>Advice</li>
</ul>
<img height=300px width=300px class="p-centered img-responsive" src="../images/storyset/Fill out-amico.svg" alt="Image of a person holding a really big pen and completing an equally big form">
<img height=300px width=300px class="p-centered img-responsive hide-md" src="../images/storyset/Fill out-amico.svg" alt="Image of a person holding a really big pen and completing an equally big form">
</div>
<div class="column col-4 col-md-12">
@ -90,7 +90,7 @@
<li>Payroll</li>
</ul>
<img height=300px width=300px class="p-centered img-responsive" src="../images/storyset/Statistics-amico.svg" alt="A person holiding a clipboard, looking at a curvy line graph with percentage signs. Also there is a doughnut chart on the floor.">
<img height=300px width=300px class="p-centered img-responsive hide-md" src="../images/storyset/Statistics-amico.svg" alt="A person holiding a clipboard, looking at a curvy line graph with percentage signs. Also there is a doughnut chart on the floor.">
</div>
<div class="column col-4 col-md-12">
@ -101,7 +101,7 @@
<li>Business Analysis</li>
<li>Forecasts and Budgeting</li>
</ul>
<img height=300px width=300px class="p-centered img-responsive" src="../images/storyset/Report-amico.svg" alt="A person holding a clipboard, looking at a giant tablet containing some serious looking reports. He left his massive pencil and second clipboard on the floor. Presumably because he can't hold them.">
<img height=300px width=300px class="p-centered img-responsive hide-md" src="../images/storyset/Report-amico.svg" alt="A person holding a clipboard, looking at a giant tablet containing some serious looking reports. He left his massive pencil and second clipboard on the floor. Presumably because he can't hold them.">
</div>
</div>
@ -122,6 +122,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -34,7 +34,7 @@
<a class="btn btn-link" href="./pages/services.html">Services</a>
<a class="btn btn-link" href="./pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -73,6 +73,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

147
output/automation.html Normal file
View File

@ -0,0 +1,147 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Corax FM - Automation</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="../images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="../images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="../images/favicon/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="stylesheet" href="./theme/css/fontawesome/css/all.min.css" />
<link rel="stylesheet" href="./theme/css/spectre.min.css" />
<link rel="stylesheet" href="./theme/css/style.css" />
<link href="https://coraxfm.uk/feed.rss" type="application/atom+xml" rel="alternate" title="Corax FM Full Atom Feed" />
<meta name="tags" content="Software" />
<script src="https://swetrix.org/swetrix.js" defer></script>
</head>
<body id="index">
<div class="container">
<header class="navbar m-2">
<section class="navbar-section">
<a href="../" class="navbar-brand mr-2"><span class="text-primary text-large">Corax FM</span></a>
</section>
<section class="navbar-section">
<a class="btn btn-link bg-primary text-light hide-sm" href="mailto:info@coraxfm.uk">info@coraxfm.uk</a>
<a class="btn btn-link" href="./pages/about.html">About</a>
<a class="btn btn-link" href="./pages/services.html">Services</a>
<a class="btn btn-link" href="./pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
<a class="btn btn-link bg-primary text-light" href="mailto:info@coraxfm.uk">info@coraxfm.uk</a>
<a class="btn btn-link bg-success text-light" href="../">Get A Quote</a>
</secion>
</header>
<div class="page-content">
<div class="columns">
<div class="column hero col-12 bg-primary text-light">
<div class="columns">
<div class="column col-8 col-lg-10 col-md-12 col-mx-auto">
<div class="columns">
<div class="column col-12 text-center">
<h1>Automation</h1>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="columns">
<div class="column col-12 bg-gray text-primary hero hero-sm">
<div class="column col-8 col-sm-10 col-mx-auto">
<div class="columns">
<div class="column col-12">
<p>A well known Linkedin influencer crops up in my feed pretty frequently. The influencer often posts screenshots of tweets that they've made. They're not the only one, there are a number of posters that do similar things. I find it interesting becuase Twitter-Linkedin cross posting was a very early integration that I recall.</p>
<p>In fact, if you head over to your <a href="https://www.linkedin.com/mypreferences/d/twitter">LinkedIn Preferences</a> you can connect Twitter and cross post automatically. I would have thought that most things would want to be cross posted, but then, I'm not an influencer.</p>
<p>I don't like inefficent processes. I dislike the feeling that I'm wasting time. I like automating small things, because it turns a boring action (copy &amp; paste) into an interesting problem to solve (how do I do the thing). With that in mind, I'm going to describe my workflow for publishing a post on this blog. I don't publish very often, but when I do, I don't want to be copying and pasting anything.</p>
<p>I write my blog entries in <a href="https://www.markdownguide.org/">Markdown</a>, essentially, some minimal markup that can easily get converted into HTML. My website is generated in static site generator called <a href="https://docs.getpelican.com/en/latest/index.html">Pelican</a>. I use <a href="https://git-scm.com/">git</a> for version control, which I self-host with <a href="https://gitea.io/en-us/">Gitea</a>. So far, not much automted. I can't really automate the writing of blog posts.</p>
<p>Now, the automation bits. The Gitea repository syncs every 8 hours with a Github repository. When the Github repository gets the latest code from Gitea, Netlify pulls the website from Gitea. Within the website all the blog posts are included in the <a href="https://www.coraxfm.uk/feed.rss">RSS feed</a>. <a href="https://zapier.com">Zapier</a> gets the most recent blog post from the RSS feed and does three things: posts on the <a href="https://www.linkedin.com/company/coraxfm/">CoraxFM Linkedin company page</a>, creates a <a href="https://twitter.com/CoraxFM">tweet</a>, and a <a href="https://medium.com/@coraxfm">Medium story</a>.</p>
<p>I think that the trouble with some of the automations is that many people cannot even imagine what can be automated with relative ease. Zapier is a no-code solution to automation. You could replace the version control/static site stuff that here with Wordpress. Or anything else that supports an RSS feed.</p>
<p>What processes might you have to automate?</p>
</div>
<div class="column col-12">
<footer class="post-info text-left">
<p>If you have any comments about this blog post, email me at <a href="mailto:info@coraxfm.uk">info@coraxfm.uk</a><p>
<time class="published" datetime="2023-02-15T00:00:00+00:00">
Wed 15 February 2023
</time>
<div class="tags">
Tags:
<a href="./tag/software.html">Software</a>
</div>
</footer><!-- /.post-info -->
</div>
</div>
</div>
</div>
</div>
<footer class="hero hero-sm">
<div class="">
<a href="mailto:info@coraxfm.uk" class="btn btn-link">info@coraxfm.uk</a>
<a href="https://www.cimaglobal.com/About-us/Find-a-CIMA-Accountant/Corax-FM-13911/" class="btn btn-link">CIMA</a>
<a href="https://www.linkedin.com/company/coraxfm/" class="btn btn-link">LinkedIn</a>
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>
<!-- <p>&copy; 2017 - 2021 Tom Lee-Gough</p> -->
</footer>
</div>
<script>
document.addEventListener('DOMContentLoaded', () => {
// Initialising the script with the Project ID
// you can find in the dashboard
swetrix.init('tQ4Waqjms8ss')
// Tracking page views
swetrix.trackViews()
})
</script>
<noscript>
<!--
Don't forget to change YOUR_PROJECT_ID in the link to your Project ID
-->
<img
src="https://api.swetrix.com/log/noscript?pid=tQ4Waqjms8ss"
alt=""
referrerpolicy="no-referrer-when-downgrade"
/>
</noscript>
</body>
</html>

View File

@ -40,7 +40,7 @@
<a class="btn btn-link" href="./pages/services.html">Services</a>
<a class="btn btn-link" href="./pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -315,6 +315,8 @@ Gnucash Income statement:
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -34,7 +34,7 @@
<a class="btn btn-link" href="./pages/services.html">Services</a>
<a class="btn btn-link" href="./pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -73,6 +73,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -34,7 +34,7 @@
<a class="btn btn-link" href="../pages/services.html">Services</a>
<a class="btn btn-link" href="../pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -78,7 +78,7 @@
<li>Advice</li>
</ul>
<img height=300px width=300px class="p-centered img-responsive" src="../images/storyset/Fill out-amico.svg" alt="Image of a person holding a really big pen and completing an equally big form">
<img height=300px width=300px class="p-centered img-responsive hide-md" src="../images/storyset/Fill out-amico.svg" alt="Image of a person holding a really big pen and completing an equally big form">
</div>
<div class="column col-4 col-md-12">
@ -90,7 +90,7 @@
<li>Payroll</li>
</ul>
<img height=300px width=300px class="p-centered img-responsive" src="../images/storyset/Statistics-amico.svg" alt="A person holiding a clipboard, looking at a curvy line graph with percentage signs. Also there is a doughnut chart on the floor.">
<img height=300px width=300px class="p-centered img-responsive hide-md" src="../images/storyset/Statistics-amico.svg" alt="A person holiding a clipboard, looking at a curvy line graph with percentage signs. Also there is a doughnut chart on the floor.">
</div>
<div class="column col-4 col-md-12">
@ -101,7 +101,7 @@
<li>Business Analysis</li>
<li>Forecasts and Budgeting</li>
</ul>
<img height=300px width=300px class="p-centered img-responsive" src="../images/storyset/Report-amico.svg" alt="A person holding a clipboard, looking at a giant tablet containing some serious looking reports. He left his massive pencil and second clipboard on the floor. Presumably because he can't hold them.">
<img height=300px width=300px class="p-centered img-responsive hide-md" src="../images/storyset/Report-amico.svg" alt="A person holding a clipboard, looking at a giant tablet containing some serious looking reports. He left his massive pencil and second clipboard on the floor. Presumably because he can't hold them.">
</div>
</div>
@ -122,6 +122,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -45,7 +45,7 @@
<a class="btn btn-link" href="./pages/services.html">Services</a>
<a class="btn btn-link" href="./pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -161,6 +161,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -42,7 +42,7 @@
<a class="btn btn-link" href="../pages/services.html">Services</a>
<a class="btn btn-link" href="../pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -120,6 +120,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -40,7 +40,7 @@
<a class="btn btn-link" href="./pages/services.html">Services</a>
<a class="btn btn-link" href="./pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -135,6 +135,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -43,7 +43,7 @@
<a class="btn btn-link" href="./pages/services.html">Services</a>
<a class="btn btn-link" href="./pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -148,6 +148,8 @@ with open(xero_export, 'r') as input_file:
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -1,5 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Corax FM</title><link href="https://coraxfm.uk/" rel="alternate"></link><link href="https://coraxfm.uk/feed.rss" rel="self"></link><id>https://coraxfm.uk/</id><updated>2022-12-12T00:00:00+00:00</updated><entry><title>Personal Accounting</title><link href="https://coraxfm.uk/personal-accounting.html" rel="alternate"></link><published>2022-12-12T00:00:00+00:00</published><updated>2022-12-12T00:00:00+00:00</updated><author><name>Tom Lee-Gough</name></author><id>tag:coraxfm.uk,2022-12-12:/personal-accounting.html</id><summary type="html">&lt;p&gt;Thoughts on Personal Accounting&lt;/p&gt;</summary><content type="html">&lt;p&gt;I've been using &lt;a href="https://gnucash.org"&gt;Gnucash&lt;/a&gt; since 2016 to create a full set of accounts for myself. It is a thing of beauty. Now that I have several years worth of transactions, it is really interesting to see how things have changed over time. I initially started out just trying to monitor cashflows. However, as time has now gone on, I have a much more comprehensive set of accounts. Creating a good set of accounts has made me think about a few different complex scenarios in personal accounting.&lt;/p&gt;
<feed xmlns="http://www.w3.org/2005/Atom"><title>Corax FM</title><link href="https://coraxfm.uk/" rel="alternate"></link><link href="https://coraxfm.uk/feed.rss" rel="self"></link><id>https://coraxfm.uk/</id><updated>2023-02-15T00:00:00+00:00</updated><entry><title>Automation</title><link href="https://coraxfm.uk/automation.html" rel="alternate"></link><published>2023-02-15T00:00:00+00:00</published><updated>2023-02-15T00:00:00+00:00</updated><author><name>Tom Lee-Gough</name></author><id>tag:coraxfm.uk,2023-02-15:/automation.html</id><summary type="html">&lt;p&gt;Automated Blog Post Workflow&lt;/p&gt;</summary><content type="html">&lt;p&gt;A well known Linkedin influencer crops up in my feed pretty frequently. The influencer often posts screenshots of tweets that they've made. They're not the only one, there are a number of posters that do similar things. I find it interesting becuase Twitter-Linkedin cross posting was a very early integration that I recall.&lt;/p&gt;
&lt;p&gt;In fact, if you head over to your &lt;a href="https://www.linkedin.com/mypreferences/d/twitter"&gt;LinkedIn Preferences&lt;/a&gt; you can connect Twitter and cross post automatically. I would have thought that most things would want to be cross posted, but then, I'm not an influencer.&lt;/p&gt;
&lt;p&gt;I don't like inefficent processes. I dislike the feeling that I'm wasting time. I like automating small things, because it turns a boring action (copy &amp;amp; paste) into an interesting problem to solve (how do I do the thing). With that in mind, I'm going to describe my workflow for publishing a post on this blog. I don't publish very often, but when I do, I don't want to be copying and pasting anything.&lt;/p&gt;
&lt;p&gt;I write my blog entries in &lt;a href="https://www.markdownguide.org/"&gt;Markdown&lt;/a&gt;, essentially, some minimal markup that can easily get converted into HTML. My website is generated in static site generator called &lt;a href="https://docs.getpelican.com/en/latest/index.html"&gt;Pelican&lt;/a&gt;. I use &lt;a href="https://git-scm.com/"&gt;git&lt;/a&gt; for version control, which I self-host with &lt;a href="https://gitea.io/en-us/"&gt;Gitea&lt;/a&gt;. So far, not much automted. I can't really automate the writing of blog posts.&lt;/p&gt;
&lt;p&gt;Now, the automation bits. The Gitea repository syncs every 8 hours with a Github repository. When the Github repository gets the latest code from Gitea, Netlify pulls the website from Gitea. Within the website all the blog posts are included in the &lt;a href="https://www.coraxfm.uk/feed.rss"&gt;RSS feed&lt;/a&gt;. &lt;a href="https://zapier.com"&gt;Zapier&lt;/a&gt; gets the most recent blog post from the RSS feed and does three things: posts on the &lt;a href="https://www.linkedin.com/company/coraxfm/"&gt;CoraxFM Linkedin company page&lt;/a&gt;, creates a &lt;a href="https://twitter.com/CoraxFM"&gt;tweet&lt;/a&gt;, and a &lt;a href="https://medium.com/@coraxfm"&gt;Medium story&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I think that the trouble with some of the automations is that many people cannot even imagine what can be automated with relative ease. Zapier is a no-code solution to automation. You could replace the version control/static site stuff that here with Wordpress. Or anything else that supports an RSS feed.&lt;/p&gt;
&lt;p&gt;What processes might you have to automate?&lt;/p&gt;</content><category term="articles"></category><category term="Software"></category></entry><entry><title>Personal Accounting</title><link href="https://coraxfm.uk/personal-accounting.html" rel="alternate"></link><published>2022-12-12T00:00:00+00:00</published><updated>2022-12-12T00:00:00+00:00</updated><author><name>Tom Lee-Gough</name></author><id>tag:coraxfm.uk,2022-12-12:/personal-accounting.html</id><summary type="html">&lt;p&gt;Thoughts on Personal Accounting&lt;/p&gt;</summary><content type="html">&lt;p&gt;I've been using &lt;a href="https://gnucash.org"&gt;Gnucash&lt;/a&gt; since 2016 to create a full set of accounts for myself. It is a thing of beauty. Now that I have several years worth of transactions, it is really interesting to see how things have changed over time. I initially started out just trying to monitor cashflows. However, as time has now gone on, I have a much more comprehensive set of accounts. Creating a good set of accounts has made me think about a few different complex scenarios in personal accounting.&lt;/p&gt;
&lt;h2&gt;Cash vs Profit&lt;/h2&gt;
&lt;p&gt;I think that it is fair to say that most households probably think in terms of cashflow rather than profit. Profit is necessary in order to grow overall cash, but a profit and loss doesn't feel like it quite captures how one thinks about household finances.&lt;/p&gt;
&lt;p&gt;For example, if you has a repayment mortgage there are usually monthly repayments. A portion of that value is interest and a portion is debt repayment. A profit and loss would only capture the interest portion of the payment, not the debt repayment. In terms of a mental model, I think that this would screw a lot of people up. If you were doing a periodic review, you'd also need to look at the balance sheet to show the reduction in debt.&lt;/p&gt;

View File

@ -42,7 +42,7 @@
<a class="btn btn-link" href="./pages/services.html">Services</a>
<a class="btn btn-link" href="./pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -115,6 +115,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -34,7 +34,7 @@
<a class="btn btn-link" href="./pages/services.html">Services</a>
<a class="btn btn-link" href="./pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -138,7 +138,7 @@
<li>Advice</li>
</ul>
<img height=300px width=300px class="p-centered img-responsive" src="../images/storyset/Fill out-amico.svg" alt="Image of a person holding a really big pen and completing an equally big form">
<img height=300px width=300px class="p-centered img-responsive hide-md" src="../images/storyset/Fill out-amico.svg" alt="Image of a person holding a really big pen and completing an equally big form">
</div>
<div class="column col-4 col-md-12">
@ -150,7 +150,7 @@
<li>Payroll</li>
</ul>
<img height=300px width=300px class="p-centered img-responsive" src="../images/storyset/Statistics-amico.svg" alt="A person holiding a clipboard, looking at a curvy line graph with percentage signs. Also there is a doughnut chart on the floor.">
<img height=300px width=300px class="p-centered img-responsive hide-md" src="../images/storyset/Statistics-amico.svg" alt="A person holiding a clipboard, looking at a curvy line graph with percentage signs. Also there is a doughnut chart on the floor.">
</div>
<div class="column col-4 col-md-12">
@ -161,7 +161,7 @@
<li>Business Analysis</li>
<li>Forecasts and Budgeting</li>
</ul>
<img height=300px width=300px class="p-centered img-responsive" src="../images/storyset/Report-amico.svg" alt="A person holding a clipboard, looking at a giant tablet containing some serious looking reports. He left his massive pencil and second clipboard on the floor. Presumably because he can't hold them.">
<img height=300px width=300px class="p-centered img-responsive hide-md" src="../images/storyset/Report-amico.svg" alt="A person holding a clipboard, looking at a giant tablet containing some serious looking reports. He left his massive pencil and second clipboard on the floor. Presumably because he can't hold them.">
</div>
</div>
@ -222,6 +222,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -40,7 +40,7 @@
<a class="btn btn-link" href="./pages/services.html">Services</a>
<a class="btn btn-link" href="./pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -145,6 +145,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -43,7 +43,7 @@
<a class="btn btn-link" href="./pages/services.html">Services</a>
<a class="btn btn-link" href="./pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -137,6 +137,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -36,7 +36,7 @@
<a class="btn btn-link" href="../pages/services.html">Services</a>
<a class="btn btn-link" href="../pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -118,6 +118,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -36,7 +36,7 @@
<a class="btn btn-link" href="../pages/services.html">Services</a>
<a class="btn btn-link" href="../pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -83,6 +83,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -36,7 +36,7 @@
<a class="btn btn-link" href="../pages/services.html">Services</a>
<a class="btn btn-link" href="../pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -140,6 +140,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -36,7 +36,7 @@
<a class="btn btn-link" href="../pages/services.html">Services</a>
<a class="btn btn-link" href="../pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -107,6 +107,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -39,7 +39,7 @@
<a class="btn btn-link" href="./pages/services.html">Services</a>
<a class="btn btn-link" href="./pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -119,6 +119,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -41,7 +41,7 @@
<a class="btn btn-link" href="./pages/services.html">Services</a>
<a class="btn btn-link" href="./pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -200,6 +200,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -5,28 +5,35 @@ xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://coraxfm.uk/</loc>
<lastmod>2022-12-13T22:13:30-00:00</lastmod>
<lastmod>2023-02-15T22:26:24-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>https://coraxfm.uk/pages/about.html</loc>
<lastmod>2022-12-13T22:13:30-00:00</lastmod>
<lastmod>2023-02-15T22:26:24-00:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>https://coraxfm.uk/pages/services.html</loc>
<lastmod>2022-12-13T22:13:30-00:00</lastmod>
<lastmod>2023-02-15T22:26:24-00:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>https://coraxfm.uk/pages/software.html</loc>
<lastmod>2022-12-13T22:13:30-00:00</lastmod>
<lastmod>2023-02-15T22:26:24-00:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>https://coraxfm.uk/automation.html</loc>
<lastmod>2023-02-15T00:00:00+00:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
@ -138,7 +145,14 @@ xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://coraxfm.uk/category/articles.html</loc>
<lastmod>2022-12-12T00:00:00-00:01</lastmod>
<lastmod>2023-02-15T00:00:00-00:01</lastmod>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>https://coraxfm.uk/tag/software.html</loc>
<lastmod>2023-02-15T00:00:00-00:01</lastmod>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>
@ -192,13 +206,6 @@ xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<priority>0.5</priority>
</url>
<url>
<loc>https://coraxfm.uk/tag/software.html</loc>
<lastmod>2022-05-15T00:00:00-00:01</lastmod>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>https://coraxfm.uk/tag/xero.html</loc>
<lastmod>2022-05-15T00:00:00-00:01</lastmod>
@ -292,7 +299,7 @@ xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://coraxfm.uk/author/tom-lee-gough.html</loc>
<lastmod>2022-12-12T00:00:00-00:01</lastmod>
<lastmod>2023-02-15T00:00:00-00:01</lastmod>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>

View File

@ -34,7 +34,7 @@
<a class="btn btn-link" href="../pages/services.html">Services</a>
<a class="btn btn-link" href="../pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -73,6 +73,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -34,7 +34,7 @@
<a class="btn btn-link" href="../pages/services.html">Services</a>
<a class="btn btn-link" href="../pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -73,6 +73,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -34,7 +34,7 @@
<a class="btn btn-link" href="../pages/services.html">Services</a>
<a class="btn btn-link" href="../pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -73,6 +73,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -34,7 +34,7 @@
<a class="btn btn-link" href="../pages/services.html">Services</a>
<a class="btn btn-link" href="../pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -73,6 +73,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -34,7 +34,7 @@
<a class="btn btn-link" href="../pages/services.html">Services</a>
<a class="btn btn-link" href="../pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -73,6 +73,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -34,7 +34,7 @@
<a class="btn btn-link" href="../pages/services.html">Services</a>
<a class="btn btn-link" href="../pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -73,6 +73,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -34,7 +34,7 @@
<a class="btn btn-link" href="../pages/services.html">Services</a>
<a class="btn btn-link" href="../pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -73,6 +73,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -34,7 +34,7 @@
<a class="btn btn-link" href="../pages/services.html">Services</a>
<a class="btn btn-link" href="../pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -73,6 +73,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -34,7 +34,7 @@
<a class="btn btn-link" href="../pages/services.html">Services</a>
<a class="btn btn-link" href="../pages/software.html">Software</a>
<a class="btn btn-link mr-2" href="../archives.html">Blog</a>
<a class="btn btn-link bg-success text-light@ hide-sm" href="../">Get A Quote</a>
<a class="btn btn-link bg-success text-light hide-sm" href="../">Get A Quote</a>
</section>
<secion class="navbar-section show-sm">
@ -73,6 +73,8 @@
<a href="https://hermes.huginn.uk" class="btn btn-link">Hermes</a>
<a href="https://cosearch.huginn.uk" class="btn btn-link">Cosearch</a>
<a href="https://storyset.com/" class="btn btn-link">Storyset</a>
<a href="https://twitter.com/CoraxFM" class="btn btn-link">Twitter</a>
<a href="https://medium.com/@coraxfm" class="btn btn-link">Medium</a>
<a href="#" class="btn btn-link">TOP</a>
</div>

View File

@ -34,7 +34,7 @@