-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b52a72
commit e5f673c
Showing
270 changed files
with
9,819 additions
and
10,012 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
title: "{{name}}" | ||
slug: "/{{kebabCase name}}/" | ||
description: null | ||
date: 2019-08-22T15:20:28.000Z | ||
lastmod: "2022-01-09T13:40:59.055Z" | ||
draft: true | ||
tags: [] | ||
categories: [] | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
name: Broken Link | ||
about: Report a broken link. Use this if you encountered a 404. | ||
title: "" | ||
labels: "bug" | ||
assignees: "andrewmcodes" | ||
--- | ||
|
||
## What is the link | ||
|
||
https://andrewm.codes/ | ||
|
||
## What did you expect | ||
|
||
<!-- What page were you expecting to go to? --> | ||
|
||
## Screenshots | ||
|
||
<!-- If applicable, provide screenshots or videos --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,18 @@ | ||
--- | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
# Yarn | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: npm | ||
directory: "/javascript" | ||
schedule: | ||
interval: daily | ||
- package-ecosystem: bundler | ||
directory: "/ruby" | ||
interval: "weekly" | ||
open-pull-requests-limit: 3 | ||
assignees: | ||
- andrewmcodes | ||
# Bundler | ||
- package-ecosystem: "bundler" | ||
directory: "/" | ||
schedule: | ||
interval: weekly | ||
interval: "weekly" | ||
open-pull-requests-limit: 3 | ||
assignees: | ||
- andrewmcodes |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: data | ||
on: | ||
schedule: | ||
- cron: 0 0 * * * | ||
workflow_dispatch: {} | ||
push: | ||
paths: | ||
- .github/workflows/flat.yml | ||
jobs: | ||
scheduled: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup deno | ||
uses: denoland/setup-deno@main | ||
with: | ||
deno-version: v1.x | ||
- name: Check out repo | ||
uses: actions/checkout@v2 | ||
- name: Fetch data | ||
uses: githubocto/flat@v3 | ||
with: | ||
http_url: https://api.raindrop.io/rest/v1/raindrops/17535508 | ||
downloaded_filename: src/_data/raindrop/accounts.json | ||
authorization: Bearer ${{ secrets.RAINDROP_TOKEN }} | ||
- name: Fetch data | ||
uses: githubocto/flat@v3 | ||
with: | ||
http_url: https://api.raindrop.io/rest/v1/raindrops/22341884 | ||
downloaded_filename: src/_data/raindrop/reading_list.json | ||
authorization: Bearer ${{ secrets.RAINDROP_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
_bridgetown | ||
.bridgetown-cache | ||
.bridgetown-webpack | ||
src/_posts/archive/**/*.md | ||
output | ||
.bridgetown-build | ||
.obsidian | ||
.vercel | ||
node_modules | ||
build | ||
.snowpack | ||
vendor | ||
.vscode | ||
.husky | ||
Gemfile | ||
yarn.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1 @@ | ||
{ | ||
"arrowParens": "always", | ||
"printWidth": 120, | ||
"rubySingleQuote": false, | ||
"rubyToProc": true, | ||
"semi": false, | ||
"singleQuote": false, | ||
"trailingComma": "all" | ||
} | ||
"@andrewmcodes/prettier-config" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
fix: true | ||
parallel: true | ||
format: progress | ||
|
||
ignore: | ||
- ".bridgetown-build/**/*" | ||
- "node_modules/**/*" | ||
- ".github/**/*" | ||
- ".obsidian/**/*" | ||
- ".vscode/**/*" | ||
- "src/**/*": | ||
- Layout/LeadingCommentSpace |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
nodejs 14.16.1 | ||
nodejs 14.17.3 | ||
ruby 3.0.0 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,23 @@ | ||
source "https://rubygems.org" | ||
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | ||
# | ||
# To install a plugin, run bundle add and specify the group | ||
# "bridgetown_plugins". For example: | ||
# | ||
# bundle add some-new-plugin -g bridgetown_plugins | ||
# | ||
|
||
gem "bridgetown", "~> 0.19.3" | ||
gem "classifier-reborn", "~> 2.2" | ||
gem "htmlbeautifier", "~> 1.3", group: :development | ||
gem "bridgetown", "~> 0.21.5" | ||
|
||
group :development do | ||
gem "debug", "~> 1.4" | ||
gem "standard", "~> 1.5.0" | ||
gem "solargraph", "~> 0.44.2" | ||
end | ||
|
||
group :bridgetown_plugins do | ||
gem "pry" | ||
gem "opt_struct", "~> 1.1" | ||
gem "httparty" | ||
gem "graphtown", "~> 1.0" | ||
gem "sanitize", "~> 5.2" | ||
gem "bridgetown-feed", "~> 1.1" | ||
gem "bridgetown-plausible" | ||
gem "bridgetown-view-component", "~> 0.7.0" | ||
gem "bridgetown-svg-inliner", "~> 1.0" | ||
gem "bridgetown-cloudinary", "~> 1.2" | ||
gem "bridgetown-plausible", "~> 1.0.2" | ||
end |
Oops, something went wrong.
e5f673c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs: