Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 63 additions & 0 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

# Sample workflow for building and deploying a Jekyll site to GitHub Pages
name: Deploy Jekyll site to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["jekyll-2"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 0 # Increment this number if you need to re-download cached gems
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Build with Jekyll
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production
- name: Upload artifact
# Automatically uploads an artifact from the './_site' directory by default
uses: actions/upload-pages-artifact@v3

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
_site
.sass-cache
.jekyll-cache
.jekyll-metadata
vendor

Gemfile.lock
25 changes: 25 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
permalink: /404.html
layout: default
---

<style type="text/css" media="screen">
.container {
margin: 10px auto;
max-width: 600px;
text-align: center;
}
h1 {
margin: 30px 0;
font-size: 4em;
line-height: 1;
letter-spacing: -1px;
}
</style>

<div class="container">
<h1>404</h1>

<p><strong>Page not found :(</strong></p>
<p>The requested page could not be found.</p>
</div>
35 changes: 35 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
source "https://rubygems.org"
# Hello! This is where you manage which Jekyll version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
#
# bundle exec jekyll serve
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
# gem "jekyll", "~> 4.3.4"
# This is the default theme for new Jekyll sites. You may change this to anything you like.
gem "minima", "~> 2.5"
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`.
gem "github-pages", group: :jekyll_plugins
# If you have any plugins, put them here!
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.12"
end

# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
# and associated library.
platforms :mingw, :x64_mingw, :mswin, :jruby do
gem "tzinfo", ">= 1", "< 3"
gem "tzinfo-data"
end

# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1", :platforms => [:mingw, :x64_mingw, :mswin]

# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
# do not have a Java counterpart.
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]

gem "just-the-docs"
26 changes: 13 additions & 13 deletions Resources_Dump.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
# Resources Dump

1​.​ [https://augmentingcognition.com/ltm.html](https://augmentingcognition.com/ltm.html)
1. [https://augmentingcognition.com/ltm.html](https://augmentingcognition.com/ltm.html)

2​.​ [https://gwern.net/spaced-repetition](https://gwern.net/spaced-repetition) (this one is more than a decade old)
2. [https://gwern.net/spaced-repetition](https://gwern.net/spaced-repetition) (this one is more than a decade old)

3​.​ 20 rules for making good cards: [https://super-memory.com/articles/20rules.htm](https://super-memory.com/articles/20rules.htm)
3. 20 rules for making good cards: [https://super-memory.com/articles/20rules.htm](https://super-memory.com/articles/20rules.htm)

4​.​ [https://cademcniven.com/](https://cademcniven.com/)
4. [https://cademcniven.com/](https://cademcniven.com/)

5​.​ [https://supermemo.guru/wiki/SuperMemo_Guru](https://supermemo.guru/wiki/SuperMemo_Guru). This one has a metric crapton of articles: about spaced repetition, neuroscience, education, etc. Some are great, some...not so much.
5. [https://supermemo.guru/wiki/SuperMemo_Guru](https://supermemo.guru/wiki/SuperMemo_Guru). This one has a metric crapton of articles: about spaced repetition, neuroscience, education, etc. Some are great, some...not so much.

6​.​ A great article about spaced repetition algorithms by Jarrett Ye, the creator of FSRS: [https://github.com/open-spaced-repetition/fsrs4anki/wiki/Spaced-Repetition-Algorithm:-A-Three%E2%80%90Day-Journey-from-Novice-to-Expert](https://github.com/open-spaced-repetition/fsrs4anki/wiki/Spaced-Repetition-Algorithm:-A-Three%E2%80%90Day-Journey-from-Novice-to-Expert)
6. A great article about spaced repetition algorithms by Jarrett Ye, the creator of FSRS: [https://github.com/open-spaced-repetition/fsrs4anki/wiki/Spaced-Repetition-Algorithm:-A-Three%E2%80%90Day-Journey-from-Novice-to-Expert](https://github.com/open-spaced-repetition/fsrs4anki/wiki/Spaced-Repetition-Algorithm:-A-Three%E2%80%90Day-Journey-from-Novice-to-Expert)

7​.​ [https://andymatuschak.org/](https://andymatuschak.org/)
7. [https://andymatuschak.org/](https://andymatuschak.org/)

8​.​ [https://eshapard.github.io/](https://eshapard.github.io/) (inactive since 2022)
8. [https://eshapard.github.io/](https://eshapard.github.io/) (inactive since 2022)

9​.​ [https://controlaltbackspace.org/](https://controlaltbackspace.org/)
9. [https://controlaltbackspace.org/](https://controlaltbackspace.org/)

10​.​ Learning techniques ranked based on effectiveness: [http://web.archive.org/web/20190711014620/http://tlcp.depaultla.org/wp-content/uploads/sites/2/2015/05/Dunlosky-et-al-2013-What-Works-What-Doesnt.pdf](http://web.archive.org/web/20190711014620/http://tlcp.depaultla.org/wp-content/uploads/sites/2/2015/05/Dunlosky-et-al-2013-What-Works-What-Doesnt.pdf)
10. Learning techniques ranked based on effectiveness: [http://web.archive.org/web/20190711014620/http://tlcp.depaultla.org/wp-content/uploads/sites/2/2015/05/Dunlosky-et-al-2013-What-Works-What-Doesnt.pdf](http://web.archive.org/web/20190711014620/http://tlcp.depaultla.org/wp-content/uploads/sites/2/2015/05/Dunlosky-et-al-2013-What-Works-What-Doesnt.pdf)

11​.​ An interactive comic that explains spaced repetition in a beginner-friendly way: [https://ncase.me/remember/](https://ncase.me/remember/)
11. An interactive comic that explains spaced repetition in a beginner-friendly way: [https://ncase.me/remember/](https://ncase.me/remember/)

12​.​ Spaced repetition for hierarchical knowledge, such as math and physics: [https://www.justinmath.com/individualized-spaced-repetition-in-hierarchical-knowledge-structures/](https://www.justinmath.com/individualized-spaced-repetition-in-hierarchical-knowledge-structures/)
12. Spaced repetition for hierarchical knowledge, such as math and physics: [https://www.justinmath.com/individualized-spaced-repetition-in-hierarchical-knowledge-structures/](https://www.justinmath.com/individualized-spaced-repetition-in-hierarchical-knowledge-structures/)

---

___
### [←Return to homepage](https://expertium.github.io/)
67 changes: 64 additions & 3 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,66 @@
# Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
#
# If you need help with YAML syntax, here are some quick references for you:
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
# https://learnxinyminutes.com/docs/yaml/
#
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.

title: Expertium's Blog
description: Spaced repetition stuff
site_name: ""
site_description: ""
remote_theme: pages-themes/cayman@v0.2.0
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://expertium.github.io/" # the base hostname & protocol for your site, e.g. http://example.com

# Build settings
theme: just-the-docs
plugins:
- jekyll-feed
# Exclude from processing.
# The following items will not be processed, by default.
# Any item listed under the `exclude:` key here will be automatically added to
# the internal "default list".
#
# Excluded items can be processed by explicitly listing the directories or
# their entries' file path in the `include:` list.
#
# exclude:
# - .sass-cache/
# - .jekyll-cache/
# - gemfiles/
# - Gemfile
# - Gemfile.lock
# - node_modules/
# - vendor/bundle/
# - vendor/cache/
# - vendor/gems/
# - vendor/ruby/
#
color_scheme: dark

giscus:
repo: "brainwo/expertium.github.io"
repo-id: "R_kgDOMxNzpA"
category: "General"
category-id: "DIC_kwDOMxNzpM4CkJZZ"
mapping: "pathname"
reaction-enabled: "1"
theme: "dark"
crossorigin: "anonymous"

last_edit_timestamp: true

gh_edit_link: true

math: mathjax
15 changes: 15 additions & 0 deletions _includes/footer_custom.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<script src="https://giscus.app/client.js"
data-repo="Expertium/expertium.github.io"
data-repo-id="R_kgDOMcOa1A"
data-category="General"
data-category-id="DIC_kwDOMcOa1M4Ch4mF"
data-mapping="pathname"
data-strict="0"
data-reactions-enabled="1"
data-emit-metadata="0"
data-input-position="bottom"
data-theme="preferred_color_scheme"
data-lang="en"
crossorigin="anonymous"
async>
</script>
6 changes: 6 additions & 0 deletions _includes/head_custom.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{% assign math = page.math | default: layout.math | default: site.math %}

{% case math %}
{% when "mathjax" %}
{% include mathjax.html %}
{% endcase %}
9 changes: 9 additions & 0 deletions _includes/mathjax.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!-- Automatically display code inside script tags with type=math/tex using MathJax -->
<script type="text/javascript" defer
src="/just-the-docs-tests/assets/js/mathjax-script-type.js">
</script>

<!-- Copied from https://docs.mathjax.org/en/latest/web/components/combined.html -->
<script type="text/javascript" id="MathJax-script" defer
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js">
</script>
12 changes: 12 additions & 0 deletions _layouts/mathjax.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
layout: default
math: mathjax
---
<div style="display: none">
\(
<!-- optional definitions using \newcommand, etc.
see https://docs.mathjax.org/en/latest/input/tex/macros.html -->
\)
</div>

{{ content }}
Loading