Skip to content

Instantly share code, notes, and snippets.

View Rainymood's full-sized avatar

Jan Meppe Rainymood

View GitHub Profile
@Rainymood
Rainymood / frontmatter.yaml
Created April 6, 2020 19:00
How to add teaser image in minimal mistakes
header:
teaser: "/path/to/image.png"
@Rainymood
Rainymood / frontmatter.yaml
Created April 6, 2020 19:01
Complete frontmatter with added teaser image
---
title: "How to add a teaser image to minimal mistakes"
date: 2020-04-06
categories:
- blog
tags:
- Jekyll
- update
header:
teaser: "/assets/2020-04-06-add-teaser-to-minimal-mistakes/before.png"
@Rainymood
Rainymood / splash-page.md
Created April 8, 2020 10:24
frontmatter splash page

title: "Splash Page" layout: splash permalink: /splash-page/ date: 2020-04-08 header: overlay_color: "#000" overlay_filter: "0.5" overlay_image: /assets/splash/coffee.jpeg

import logo from './logo.svg';
import './App.css';
function App() {
return (
<div>
<div className='content'>
<h1 className='heading'>Google Fonts in React</h1>
<h2 className='subheading'>Learn how to add fonts in a React Project</h2>
<p>
@Rainymood
Rainymood / roam_daily_to_noteplan.py
Created May 18, 2021 12:16 — forked from qbatten/roam_daily_to_noteplan.py
Python script to rename your Roam daily notes to match Noteplan Calendar format.
'''
This is a script that tries to convert Roam Daily Notes to Noteplan Calendar
Notes. All it does is find files in the current directory that have a name
matching the Roam Daily Notes format (e.g. "August 8th, 2020.md"), rename them
to the Noteplan Calendar Notes format (YYYYMMDD, e.g. "20200808.md") and move
them into a subfolder of the current directory: 'renamed_daily_notes'.
I recommend you read this blog post before going any further: