Skip to content

Commit

Permalink
chore: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ravener committed Mar 25, 2024
0 parents commit df0a477
Show file tree
Hide file tree
Showing 6 changed files with 60 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Deploy
on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write # To push a branch
pages: write # To push to a GitHub Pages site
id-token: write # To update the deployment status
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install latest mdbook
run: |
tag=$(curl 'https://api.github.com/repos/rust-lang/mdbook/releases/latest' | jq -r '.tag_name')
url="https://github.com/rust-lang/mdbook/releases/download/${tag}/mdbook-${tag}-x86_64-unknown-linux-gnu.tar.gz"
mkdir mdbook
curl -sSL $url | tar -xz --directory=./mdbook
echo `pwd`/mdbook >> $GITHUB_PATH
- name: Build Book
run: |
# This assumes your book is in the root of your repository.
# Just add a `cd` here if you need to change to another directory.
mdbook build
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: 'book'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
book
6 changes: 6 additions & 0 deletions book.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[book]
authors = ["Raven Ravener"]
language = "en"
multilingual = false
src = "src"
title = "Kakegurui"
5 changes: 5 additions & 0 deletions src/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Introduction

This book serves to analyze and document the games found in Kakegurui.

This is still at a very early stage and work in progress to be gradually written.
4 changes: 4 additions & 0 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Summary

- [Introduction](README.md)
- [Martingale System](martingale.md)
5 changes: 5 additions & 0 deletions src/martingale.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Martingale System

This strategy was used in Kakegurui Twin in Episode 2, by Miboumi Aoi from the Student Council, who decided to challenge Saotome Mary's new gambling den in which he started with a 1 million yen bet and lost, then he bet 2 million yen on the second round and lost again, it appeared as if Mary is winning by 3 million yen but Mary mentions that "there is an over 90% chance of winning once in three rolls." and Aoi on his third and last round bet 4 million and won, allowing him to recover all his losses and still win a profit of a million yen.

In regards to the strategy Mary mentions that "This method isn't usually used due to the risk of a massive loss. But it's the best approach if he's trying to ruin us!"

0 comments on commit df0a477

Please sign in to comment.