[06/08/23] added gruvbox color scheme, removed style.html

This commit is contained in:
andrew 2023-08-06 18:30:38 +01:00
parent 83590d3916
commit 39c52872d7
12 changed files with 25 additions and 126 deletions

View File

@ -1,5 +1,5 @@
<h1 class="display-3" style="font-weight:700;position:sticky;top:0;backdrop-filter:blur(10px);z-index:1000;" id="logo">
<span style="color:black;background-color:white;">ac</span>
<span style="color:#282828;background-color:#ebdbb2;">ac</span>
</h1>
<div class="row row-cols-1 row-cols-md-2">
<div class="col col-md-3">

View File

@ -1,14 +0,0 @@
<style>
code {
color: white;
}
pre {
color: white;
}
::selection {
background-color: white;
color: black;
}
</style>

View File

@ -10,12 +10,11 @@
<link href="https://use.fontawesome.com/releases/v6.0.0/css/all.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="/assets/css/default.css" rel="stylesheet">
{% include style.html a=page.categories.first %}
</head>
<body>
<div class="container text-start">
{% include nav.html a=page.categories.first %}
{% include nav.html %}
<div class="col col-md-9">
<h1 style="font-weight: 500;">
{{ page.title }}

View File

@ -19,23 +19,23 @@ hr.menu {
}
a {
color: white;
color: #ebdbb2;
}
body {
background-color: black;
color: white;
background-color: #282828;
color: #ebdbb2;
font-family: "Rubik";
min-height: 100vh;
}
code {
color: white;
color: #ebdbb2;
}
pre {
color: white;
background-color: #171717;
color: #ebdbb2;
background-color: #504945;
padding: 10px 10px 10px 10px;
border-radius: 10px;
white-space: pre-wrap;
@ -67,7 +67,6 @@ img.letterboxd {
}
::selection {
background-color: white;
color: black;
background-color: #ebdbb2;
color: #282828;
}

View File

@ -10,26 +10,12 @@
<link href="https://use.fontawesome.com/releases/v6.0.0/css/all.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="/assets/css/default.css" rel="stylesheet">
<style>
code {
color: white;
}
pre {
color: white;
}
::selection {
background-color: white;
color: black;
}
</style>
</head>
<body>
<div class="container text-start">
<h1 class="display-3" style="font-weight:700;position:sticky;top:0;backdrop-filter:blur(10px);z-index:1000;" id="logo">
<span style="color:black;background-color:white;">ac</span>
<span style="color:#282828;background-color:#ebdbb2;">ac</span>
</h1>
<div class="row row-cols-1 row-cols-md-2">
<div class="col col-md-3">

View File

@ -10,26 +10,12 @@
<link href="https://use.fontawesome.com/releases/v6.0.0/css/all.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="/assets/css/default.css" rel="stylesheet">
<style>
code {
color: white;
}
pre {
color: white;
}
::selection {
background-color: white;
color: black;
}
</style>
</head>
<body>
<div class="container text-start">
<h1 class="display-3" style="font-weight:700;position:sticky;top:0;backdrop-filter:blur(10px);z-index:1000;" id="logo">
<span style="color:black;background-color:white;">ac</span>
<span style="color:#282828;background-color:#ebdbb2;">ac</span>
</h1>
<div class="row row-cols-1 row-cols-md-2">
<div class="col col-md-3">

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.3.2">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2023-08-06T18:20:12+01:00</updated><id>http://localhost:4000/feed.xml</id><author><name>Andrew Conlin</name></author><entry><title type="html">Running a Python script periodically in a Docker container using cron</title><link href="http://localhost:4000/til/running-python-in-cron-in-docker/" rel="alternate" type="text/html" title="Running a Python script periodically in a Docker container using cron" /><published>2023-04-19T00:00:00+01:00</published><updated>2023-04-19T00:00:00+01:00</updated><id>http://localhost:4000/til/running-python-in-cron-in-docker</id><content type="html" xml:base="http://localhost:4000/til/running-python-in-cron-in-docker/"><![CDATA[<p>Recently, my partner gave a great idea for utilising my old Kindle: generate a “newspaper” each morning from a bunch of RSS feeds, and email it to the Kindle using “Send-to-Kindle” feature (a blog post about this project is in the works).</p>
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.3.2">Jekyll</generator><link href="http://localhost:4000/feed.xml" rel="self" type="application/atom+xml" /><link href="http://localhost:4000/" rel="alternate" type="text/html" /><updated>2023-08-06T18:28:13+01:00</updated><id>http://localhost:4000/feed.xml</id><author><name>Andrew Conlin</name></author><entry><title type="html">Running a Python script periodically in a Docker container using cron</title><link href="http://localhost:4000/til/running-python-in-cron-in-docker/" rel="alternate" type="text/html" title="Running a Python script periodically in a Docker container using cron" /><published>2023-04-19T00:00:00+01:00</published><updated>2023-04-19T00:00:00+01:00</updated><id>http://localhost:4000/til/running-python-in-cron-in-docker</id><content type="html" xml:base="http://localhost:4000/til/running-python-in-cron-in-docker/"><![CDATA[<p>Recently, my partner gave a great idea for utilising my old Kindle: generate a “newspaper” each morning from a bunch of RSS feeds, and email it to the Kindle using “Send-to-Kindle” feature (a blog post about this project is in the works).</p>
<p>I loved this idea, and thought it would be no problem to get a Python script up and running periodically on my Raspberry Pi home server using <code class="language-plaintext highlighter-rouge">cron</code>. However, I ran into various issues along the way (some of which were not so easy to resolve), so Im collating all the configuration changes I made in the hopes that it will be useful to someone one day. You can find the full repo for this project <a href="https://github.com/andrwcnln/watchman">here</a>, and I have also included my Dockerfile, docker-compose.yml and crontab at the end of this TIL.</p>

View File

@ -10,26 +10,12 @@
<link href="https://use.fontawesome.com/releases/v6.0.0/css/all.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="/assets/css/default.css" rel="stylesheet">
<style>
code {
color: white;
}
pre {
color: white;
}
::selection {
background-color: white;
color: black;
}
</style>
</head>
<body>
<div class="container text-start">
<h1 class="display-3" style="font-weight:700;position:sticky;top:0;backdrop-filter:blur(10px);z-index:1000;" id="logo">
<span style="color:black;background-color:white;">ac</span>
<span style="color:#282828;background-color:#ebdbb2;">ac</span>
</h1>
<div class="row row-cols-1 row-cols-md-2">
<div class="col col-md-3">

View File

@ -10,26 +10,12 @@
<link href="https://use.fontawesome.com/releases/v6.0.0/css/all.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="/assets/css/default.css" rel="stylesheet">
<style>
code {
color: white;
}
pre {
color: white;
}
::selection {
background-color: white;
color: black;
}
</style>
</head>
<body>
<div class="container text-start">
<h1 class="display-3" style="font-weight:700;position:sticky;top:0;backdrop-filter:blur(10px);z-index:1000;" id="logo">
<span style="color:black;background-color:white;">ac</span>
<span style="color:#282828;background-color:#ebdbb2;">ac</span>
</h1>
<div class="row row-cols-1 row-cols-md-2">
<div class="col col-md-3">

View File

@ -10,26 +10,12 @@
<link href="https://use.fontawesome.com/releases/v6.0.0/css/all.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="/assets/css/default.css" rel="stylesheet">
<style>
code {
color: white;
}
pre {
color: white;
}
::selection {
background-color: white;
color: black;
}
</style>
</head>
<body>
<div class="container text-start">
<h1 class="display-3" style="font-weight:700;position:sticky;top:0;backdrop-filter:blur(10px);z-index:1000;" id="logo">
<span style="color:black;background-color:white;">ac</span>
<span style="color:#282828;background-color:#ebdbb2;">ac</span>
</h1>
<div class="row row-cols-1 row-cols-md-2">
<div class="col col-md-3">

View File

@ -10,26 +10,12 @@
<link href="https://use.fontawesome.com/releases/v6.0.0/css/all.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="/assets/css/default.css" rel="stylesheet">
<style>
code {
color: white;
}
pre {
color: white;
}
::selection {
background-color: white;
color: black;
}
</style>
</head>
<body>
<div class="container text-start">
<h1 class="display-3" style="font-weight:700;position:sticky;top:0;backdrop-filter:blur(10px);z-index:1000;" id="logo">
<span style="color:black;background-color:white;">ac</span>
<span style="color:#282828;background-color:#ebdbb2;">ac</span>
</h1>
<div class="row row-cols-1 row-cols-md-2">
<div class="col col-md-3">

View File

@ -19,23 +19,23 @@ hr.menu {
}
a {
color: white;
color: #ebdbb2;
}
body {
background-color: black;
color: white;
background-color: #282828;
color: #ebdbb2;
font-family: "Rubik";
min-height: 100vh;
}
code {
color: white;
color: #ebdbb2;
}
pre {
color: white;
background-color: #171717;
color: #ebdbb2;
background-color: #504945;
padding: 10px 10px 10px 10px;
border-radius: 10px;
white-space: pre-wrap;
@ -67,7 +67,6 @@ img.letterboxd {
}
::selection {
background-color: white;
color: black;
background-color: #ebdbb2;
color: #282828;
}