-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
6 changed files
with
66 additions
and
19 deletions.
There are no files selected for viewing
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,5 +1,6 @@ | ||
_docs/ | ||
_proc/ | ||
_libs/ | ||
|
||
*.bak | ||
.gitattributes | ||
|
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,27 @@ | ||
# See https://pre-commit.com for more information | ||
# See https://pre-commit.com/hooks.html for more hooks | ||
default_stages: [ commit, push ] | ||
repos: | ||
# pre-commit formatting hooks | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.6.0 # Replace by any tag/version: | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: check-case-conflict | ||
- id: end-of-file-fixer | ||
- id: check-yaml | ||
args: ["--unsafe"] | ||
- id: check-added-large-files | ||
args: [ '--maxkb=1024' ] | ||
- id: mixed-line-ending | ||
- id: fix-encoding-pragma | ||
- id: debug-statements | ||
- id: check-merge-conflict | ||
- id: check-symlinks | ||
- id: destroyed-symlinks | ||
# - id: no-commit-to-branch # personal project - just do main directly for now | ||
- repo: https://github.com/fastai/nbdev | ||
rev: 2.3.13 | ||
hooks: | ||
- id: nbdev_clean | ||
# - id: nbdev_export - no library needed |
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,23 +1,17 @@ | ||
# mudiarto.github.io | ||
# Kusno Mudiarto’s Blog | ||
|
||
|
||
<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! --> | ||
|
||
This file will become your README and also the index of your | ||
documentation. | ||
A place to keep my notes and experiment with what I learn. I hope it is | ||
helpful for you too. | ||
|
||
## Install | ||
## Links | ||
|
||
``` sh | ||
pip install mudiarto.github.io | ||
``` | ||
- [GitHub/mudiarto](https://github.com/mudiarto) | ||
- [LinkedIn/mudiarto](https://www.linkedin.com/in/mudiarto/) | ||
- [Twitter/mudiarto](https://twitter.com/mudiarto) | ||
|
||
## How to use | ||
#### Credits | ||
|
||
Fill me in please! Don’t forget code examples: | ||
|
||
``` python | ||
1+1 | ||
``` | ||
|
||
2 | ||
- This page was created using [nbdev](https://nbdev.fast.ai/). |
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,25 @@ | ||
#!/usr/bin/env just | ||
# see: https://just.systems/man/en/ | ||
|
||
# | ||
# general | ||
# | ||
|
||
# list all recipes | ||
_default: | ||
@just --list --unsorted --justfile {{justfile()}} | ||
|
||
# | ||
# run | ||
# | ||
|
||
# preview current notebook | ||
preview: | ||
#!/usr/bin/env bash | ||
nbdev_preview | ||
|
||
# prepare notebook before publishing. WARNING: cleanup jupyter output | ||
prepare: | ||
#!/usr/bin/env bash | ||
nbdev_prepare |
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