Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This site offers a variety of courses focused on Python, including:
- Computer Vision
- MicroPython

πŸ“š Visit the site [here](https://mciwing.github.io/)!
πŸ“š Visit the site [here](https://code-campus.at/)!

## Docker

Expand Down
Binary file added docs/assets/favicon.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/assets/free-open-source.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/icon.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
200 changes: 0 additions & 200 deletions docs/assets/logo.svg

This file was deleted.

2 changes: 1 addition & 1 deletion docs/blog/posts/uv.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ an idea of how `uv` can simplify your Python development workflow. In
subsequent posts, I will dive deeper into specific features and use cases of
`uv`. Until then, you can take a look at a couple of projects that use `uv`:

- This site you're reading right now is built with `uv` - [code](https://github.com/mciwing/mciwing.github.io).
- This site you're reading right now is built with `uv` - [code](https://github.com/mciwing/code-campus).
- Two Python packages I develop, [first](https://github.com/JakobKlotz/md-snakeoil) and
[second](https://github.com/JakobKlotz/tiler-api)
- An app to assess rainfall-triggered landslide risks - [here](https://github.com/JakobKlotz/lhasa-app/tree/main/backend).
2 changes: 1 addition & 1 deletion docs/python-extensive/data/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ information of this site's project (repository):

```python hl_lines="7"
owner = "mciwing"
repo = "mciwing.github.io"
repo = "code-campus"

url = f"https://api.github.com/repos/{owner}/{repo}/contributors"

Expand Down
6 changes: 6 additions & 0 deletions docs/stylesheets/colors.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/* custom primary and accent colors */
:root > * {
--md-primary-fg-color: #009485;
--md-accent-fg-color: #FFB482;

}
21 changes: 11 additions & 10 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
site_name: MCI | WING
repo_url: https://github.com/mciwing/mciwing.github.io
site_url: https://mciwing.github.io
site_name: Code Campus
repo_url: https://github.com/mciwing/code-campus
site_url: https://code-campus.at
theme:
name: material
custom_dir: overrides
logo: assets/logo.png
favicon: assets/logo.png
logo: assets/favicon.png
favicon: assets/favicon.png
palette:
- scheme: slate
primary: teal
accent: pink
primary: custom # teal
accent: custom # peachy peach
toggle:
icon: material/weather-night
name: Switch to dark mode

- scheme: default
primary: teal
accent: pink
primary: custom
accent: custom
toggle:
icon: material/weather-sunny
name: Switch to light mode
Expand Down Expand Up @@ -283,4 +283,5 @@ extra_javascript:
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js

extra_css:
- stylesheets/extra.css
- stylesheets/extra.css
- stylesheets/colors.css
Loading