Skip to content

Commit

Permalink
Irgendein Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Marvin Heilemann committed Jan 7, 2020
1 parent f9ed55f commit 4df2483
Show file tree
Hide file tree
Showing 35 changed files with 707 additions and 81 deletions.
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
lts/*
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@
"cSpell.words": [
"dayjs",
"taskz"
],
"todo-tree.filtering.excludeGlobs": [
"**/*.md",
]
}
6 changes: 4 additions & 2 deletions ISSUES.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Open issues that affect this project

- [PostCss plugin is not executed when using Scss](#postcss-plugin-is-not-executed-when-using-scss)
- [#1: PostCss plugin is not executed when using Scss](#1-postcss-plugin-is-not-executed-when-using-scss)

## PostCss plugin is not executed when using Scss
## #1: PostCss plugin is not executed when using Scss

- https://github.com/gatsbyjs/gatsby/issues/17887
- https://github.com/larsenwork/postcss-easing-gradients/issues/11
- https://github.com/w3c/csswg-drafts/issues/1332
- https://larsenwork.com/easing-gradients/
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

- [Start](#start)
- [Deploy](#deploy)
- [Issues](#issues)

## Start

Expand All @@ -15,3 +16,8 @@ for development.

Since I use [now](https://zeit.co/muuvmuuv/portfolio) for my website, it is
deployed there and fully automated.

## Issues

Issues are referenced with `// BUG: #<NUMBER>` and can be seen in
[ISSUES.md](./ISSUES.md).
13 changes: 13 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,12 @@
- [x] analyze via bundlephobia
- [x] add github bots to auto update dependencies
- [x] add lighthouse from M8FINDER project
- [ ] use better [color system][10]
- [ ] use CSS blend modes (overlay)
- [ ] add League of Legends API to show profile and stats
- [ ] add classes to tags https://github.com/gatsbyjs/gatsby/issues/17824
- [ ] use Inter variable Font: https://rsms.me/inter/var-test.html
- [ ] set font feature settings: https://rsms.me/inter/#features
- [ ] Upload all writings
- [ ] Grammatical corrections
- [ ] Find images on Unsplash
Expand All @@ -41,10 +45,19 @@
- [ ] check markdown for [Readability][4]
- [ ] generate [rich snippets][5]
- [ ] use [Scheme customizations][6] to map post meta e.g. for authors
- [ ] use [Guess.js][7]
- [ ] use new iPad and Apple Pencil to make ["Marvin/Design"-Logo][8]
- [ ] new color profile
- [ ] light theme (will be default)
- [ ] Eventually by Font; [ZOOM-PRO][9]

[1]: https://www.gatsbyjs.org/packages/gatsby-plugin-preact/
[2]: https://nim-lang.org/docs/tut1.html
[3]: https://github.com/wooorm/write-music
[4]: https://wooorm.com/readability/
[5]: https://www.gatsbyjs.org/docs/seo/
[6]: https://www.gatsbyjs.org/docs/schema-customization/#foreign-key-fields
[7]: https://github.com/guess-js/guess/issues/233#issuecomment-537542342
[8]: https://cdn.dribbble.com/uploads/2566/original/3b90b34984de0d727ac99e2fc28afda8.png?1569966332
[9]: https://thedesignersfoundry.com/zoom-pro
[10]: https://stripe.com/de/blog/accessible-color-systems
6 changes: 4 additions & 2 deletions content/projects/__demo__/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,10 @@ _Some normal text because the parser has problems here._
<form>
<fieldset>
<label for="fc-checkbox">This is a label</label>
<input type="checkbox" name="checkbox" id="fc-checkbox" />
<span for="fc-checkbox">This is a checkbox</span>
<div class="form-control">
<input type="checkbox" name="checkbox" id="fc-checkbox" />
<span for="fc-checkbox">This is a checkbox</span>
</div>
</fieldset>
</form>
</div>
Expand Down
3 changes: 2 additions & 1 deletion docker/nginx/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ RUN printf "\n\e[96m>\e[0m\033[1m Build brotli \e[0m\n\n" \


# ┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
# Start NGINX
# NGINX
# ┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄

FROM nginx:${version}
Expand All @@ -61,6 +61,7 @@ COPY components/ /etc/nginx/components/
COPY nginx.conf /etc/nginx/nginx.conf
COPY certs/* /etc/nginx/ssl/


# ┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
# Install packages

Expand Down
14 changes: 13 additions & 1 deletion gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,13 @@ module.exports = {
},
},
},
`gatsby-plugin-layout`,
// `gatsby-plugin-layout`,
{
resolve: 'gatsby-plugin-transition-link',
options: {
layout: require.resolve(`./src/layouts/Index.jsx`),
},
},
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-canonical-urls`,
Expand Down Expand Up @@ -181,6 +187,12 @@ module.exports = {
],
},
},
{
resolve: 'gatsby-plugin-remove-generator',
options: {
removeVersionOnly: true,
},
},
{
resolve: 'gatsby-plugin-webpack-bundle-analyzer',
options: {
Expand Down
17 changes: 16 additions & 1 deletion metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,33 +11,48 @@ module.exports = {
'writings',
'photography',
],
/**
* - => regular file
* d => directory
* l => link
*/
menuLinks: [
{
name: 'Root',
link: '/',
type: null,
},
{
name: 'About',
link: '/about',
type: '-',
},
{
name: 'Setup',
external: true,
// link: '/about/setup', use Notion API later?
link:
'https://www.notion.so/marvins/Setup-9ad349afe68942ae807dc31c9afccd7d',
type: 'l',
},
{
name: 'Projects',
link: '/projects',
type: 'd',
},
{
name: 'Photography',
link: '/photography',
type: 'd',
},
{
name: 'Writings',
link: '/writings',
type: 'd',
},
{
name: 'CHANGELOG.md',
link: '/changelog',
type: '-',
},
],
socialLinks: [
Expand Down
Loading

0 comments on commit 4df2483

Please sign in to comment.