resized images for performance

This commit is contained in:
Will Webberley 2021-02-09 22:47:00 +00:00
parent 19ba514cc6
commit 99a7fd5e44
5 changed files with 6 additions and 3 deletions

Binary file not shown.

Before

(image error) Size: 412 KiB

After

(image error) Size: 7.7 KiB

Binary file not shown.

Before

(image error) Size: 253 KiB

After

(image error) Size: 6.6 KiB

View File

@ -30,10 +30,11 @@ const IndexPage = (props) => (
<p><Emoji e='👨‍🏫' /> I lectured the Advanced Computer Science MSc module <i><ExternalLink href="https://github.com/willwebberley/CMT111">Web &amp; Social Computing</ExternalLink></i> and the Computer Science BSc module <i><ExternalLink href="https://github.com/willwebberley/CM2101">Human-Computer Interaction</ExternalLink></i>.</p>
<h3>What's on this website?</h3>
<p><Emoji n="Blogging" e='📝' /> I write about technology and things I find interesting on <Link to='/blog'>my blog</Link> <small>(<FontAwesomeIcon icon={faRss} /> <Link to='/feeds'>RSS feeds</Link> available)</small>.</p>
<p><Emoji n='Notes' e='📔' /> I maintain a collection of <Link to='/notes'>notes</Link> <small>(Recently updated: <Link to='/notes/plain-text-accounting'>Plain Text Accounting</Link>).</small></p>
<p><Emoji e='🚀' /> I publish additional content on my geminispace at <a href="gemini://g.wilw.dev">gemini://g.wilw.dev</a> <small>(see <Link to='/blog/2021/01/20/project-gemini'>this post</Link> for help with opening this link)</small>.</p>
<p><Emoji n="Research" e='👨‍💻' /> Some of my research publications are <Link to='/research'>available here</Link>.</p>
<p><Emoji e='📦' /> I work on and maintain a number of <Link to='/projects'>projects</Link>.</p>
<p><Emoji n="Blogging" e='📝' /> I write about technology and things I find interesting on <Link to='/blog'>my blog</Link> <small>(<FontAwesomeIcon icon={faRss} /> <Link to='/feeds'>RSS feeds</Link> available)</small>.</p>
<p><Emoji e='🚀' /> I publish additional content on my geminispace at <a href="gemini://g.wilw.dev">gemini://g.wilw.dev</a> <small>(see <Link to='/blog/2021/01/20/project-gemini'>this post</Link> for help with opening this link)</small>.</p>
<p><Emoji e='🪴' /> <Link to='/this'>Find out more</Link> about this website and its purpose.</p>
<h3>How to contact me</h3>

View File

@ -36,6 +36,8 @@ Below is a collection of software tools for working with plain text account file
- [hledger](https://hledger.org) - inspired by Ledger, written in Haskell. Slightly different focus. Can be used to report and add entries.
- [beancount](http://furius.ca/beancount) - lots of features, reporting, web interfaces.
Given the files are just plain text, common tools in the Unix ecosystem (e.g. `grep`, `awk`, `sed`, etc.) can also be used on their own (or as part of more complex pipelines) to read/edit your files.
## Resources
There are a number of other resources you might find useful:

View File

@ -17,7 +17,7 @@ export default class Note extends React.Component {
<Helmet title={note.frontmatter.title}>
{note.frontmatter.description && <meta name="description" content={note.frontmatter.description} />}
</Helmet>
<h4><FontAwesomeIcon icon={faArrowLeft} /> <Link to='/notes/'>More notes</Link></h4>
<h4><FontAwesomeIcon icon={faArrowLeft} /> <Link to='/notes'>More notes</Link></h4>
<h1>{note.frontmatter.title}</h1>
<h4>Last updated {moment(note.frontmatter.date).format('D MMMM YYYY')} <i><small>({moment(note.frontmatter.date).fromNow()})</small></i>