Compare commits
10 Commits
7f35d8e550
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9f841c330b | ||
|
|
0fbaa5359b | ||
|
|
92e0ff63ec | ||
|
|
52d160f857 | ||
|
|
d2db439c16 | ||
|
|
cecfc4237f | ||
|
|
525c2888c5 | ||
|
|
4950edc75e | ||
|
|
66bf232951 | ||
|
|
37377a43e0 |
8
2026-01-23-test.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Test Post
|
||||
date: 2026-01-23 11:40
|
||||
categories: [Test]
|
||||
tags: [bleb] # TAG names should always be lowercase
|
||||
---
|
||||
|
||||
Hello! This is a test post
|
||||
7
502.md
Normal file
@@ -0,0 +1,7 @@
|
||||
---
|
||||
|
||||
layout: default
|
||||
tite: 502 Error!
|
||||
permalink: /502/
|
||||
---
|
||||
[](..)
|
||||
4
Gemfile
@@ -6,9 +6,9 @@ gemspec
|
||||
|
||||
gem "html-proofer", "~> 5.0", group: :test
|
||||
|
||||
platforms :mingw, :x64_mingw, :mswin, :jruby do
|
||||
platforms :windows, :jruby do
|
||||
gem "tzinfo", ">= 1", "< 3"
|
||||
gem "tzinfo-data"
|
||||
end
|
||||
|
||||
gem "wdm", "~> 0.2.0", :platforms => [:mingw, :x64_mingw, :mswin]
|
||||
gem "wdm", "~> 0.2.0", :platforms => [:windows]
|
||||
|
||||
28
_config.yml
@@ -9,37 +9,31 @@ theme: jekyll-theme-chirpy
|
||||
lang: en
|
||||
|
||||
# Change to your timezone › https://zones.arilyn.cc
|
||||
timezone: Asia/Shanghai
|
||||
timezone: America/Denver
|
||||
|
||||
# jekyll-seo-tag settings › https://github.com/jekyll/jekyll-seo-tag/blob/master/docs/usage.md
|
||||
# ↓ --------------------------
|
||||
|
||||
title: Chirpy # the main title
|
||||
title: NeoKoffee
|
||||
|
||||
tagline: A text-focused Jekyll theme # it will display as the subtitle
|
||||
tagline: The best website ever!
|
||||
|
||||
description: >- # used by seo meta and the atom feed
|
||||
A minimal, responsive and feature-rich Jekyll theme for technical writing.
|
||||
The best website ever! No really, it is.
|
||||
|
||||
# Fill in the protocol & hostname for your site.
|
||||
# E.g. 'https://username.github.io', note that it does not end with a '/'.
|
||||
url: ""
|
||||
url: "https://www.koffeejava.us"
|
||||
|
||||
github:
|
||||
username: github_username # change to your GitHub username
|
||||
|
||||
twitter:
|
||||
username: twitter_username # change to your Twitter username
|
||||
username: koffeejava
|
||||
|
||||
social:
|
||||
# Change to your full name.
|
||||
# It will be displayed as the default author of the posts and the copyright owner in the Footer
|
||||
name: your_full_name
|
||||
email: example@domain.com # change to your email address
|
||||
name: KoffeeJava
|
||||
links:
|
||||
# The first element serves as the copyright owner's link
|
||||
- https://twitter.com/username # change to your Twitter homepage
|
||||
- https://github.com/username # change to your GitHub homepage
|
||||
- https://github.com/koffeejava # change to your GitHub homepage
|
||||
# Uncomment below to add more social links
|
||||
# - https://www.facebook.com/username
|
||||
# - https://www.linkedin.com/in/username
|
||||
@@ -89,16 +83,16 @@ pageviews:
|
||||
# dark — Use the dark color scheme
|
||||
#
|
||||
theme_mode: # [light | dark]
|
||||
|
||||
rss: false
|
||||
# The CDN endpoint for media resources.
|
||||
# Notice that once it is assigned, the CDN url
|
||||
# will be added to all media resources (site avatar, posts' images, audio and video files) paths starting with '/'
|
||||
#
|
||||
# e.g. 'https://cdn.com'
|
||||
cdn: "https://chirpy-img.netlify.app"
|
||||
cdn: "https://www.koffeejava.us"
|
||||
|
||||
# the avatar on sidebar, support local or CORS resources
|
||||
avatar: "/commons/avatar.jpg"
|
||||
avatar: "assets/img/kj.png"
|
||||
|
||||
# The URL of the site-wide social preview image used in SEO `og:image` meta tag.
|
||||
# It can be overridden by a customized `page.image` in front matter.
|
||||
|
||||
@@ -50,11 +50,24 @@
|
||||
|
||||
{{ seo_tags }}
|
||||
|
||||
{%- if site.social.fediverse_handle %}
|
||||
<!-- Fediverse handle/creator -->
|
||||
<meta name="fediverse:creator" content="{{ site.social.fediverse_handle }}">
|
||||
{% endif %}
|
||||
|
||||
<title>
|
||||
{%- unless page.layout == 'home' -%}
|
||||
{{ page.title | append: ' | ' }}
|
||||
{%- capture title -%}
|
||||
{%- if page.collection == 'tabs' -%}
|
||||
{%- assign tab_key = page.title | downcase -%}
|
||||
{{- site.data.locales[include.lang].tabs[tab_key] -}}
|
||||
{%- else -%}
|
||||
{{- page.title -}}
|
||||
{%- endif -%}
|
||||
{%- endcapture -%}
|
||||
{{- title | append: ' | ' -}}
|
||||
{%- endunless -%}
|
||||
{{ site.title }}
|
||||
{{- site.title -}}
|
||||
</title>
|
||||
|
||||
{% include_cached favicons.html %}
|
||||
|
||||
@@ -15,9 +15,7 @@
|
||||
{%- if url -%}
|
||||
{% unless url contains ':' %}
|
||||
{%- comment -%} Add media resources subpath prefix {%- endcomment -%}
|
||||
{% if include.subpath %}
|
||||
{% assign url = include.subpath | append: '/' | append: url %}
|
||||
{% endif %}
|
||||
{% assign url = include.subpath | default: '' | append: '/' | append: url %}
|
||||
|
||||
{%- comment -%} Prepend CND URL {%- endcomment -%}
|
||||
{% if site.cdn %}
|
||||
|
||||
@@ -14,7 +14,7 @@ layout: compress
|
||||
|
||||
<!-- `site.alt_lang` can specify a language different from the UI -->
|
||||
<html lang="{{ page.lang | default: site.alt_lang | default: site.lang }}" {{ prefer_mode }}>
|
||||
{% include head.html %}
|
||||
{% include head.html lang=lang %}
|
||||
|
||||
<body>
|
||||
{% include sidebar.html lang=lang %}
|
||||
@@ -25,7 +25,7 @@ layout: compress
|
||||
|
||||
<div class="row flex-grow-1">
|
||||
<main aria-label="Main Content" class="col-12 col-lg-11 col-xl-9 px-md-4">
|
||||
{% if layout.refactor or layout.layout == 'default' %}
|
||||
{% if layout.layout == 'default' %}
|
||||
{% include refactor-content.html content=content lang=lang %}
|
||||
{% else %}
|
||||
{{ content }}
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
---
|
||||
layout: default
|
||||
refactor: true
|
||||
---
|
||||
|
||||
{% include lang.html %}
|
||||
@@ -55,19 +54,39 @@ refactor: true
|
||||
|
||||
{% if post.image %}
|
||||
{% assign src = post.image.path | default: post.image %}
|
||||
{% capture src %}{% include media-url.html src=src subpath=post.media_subpath %}{% endcapture %}
|
||||
|
||||
{% if post.media_subpath %}
|
||||
{% unless src contains '://' %}
|
||||
{% assign src = post.media_subpath
|
||||
| append: '/'
|
||||
| append: src
|
||||
| replace: '///', '/'
|
||||
| replace: '//', '/'
|
||||
%}
|
||||
{% endunless %}
|
||||
{% endif %}
|
||||
|
||||
{% if post.image.lqip %}
|
||||
{% assign lqip = post.image.lqip %}
|
||||
|
||||
{% if post.media_subpath %}
|
||||
{% unless lqip contains 'data:' %}
|
||||
{% assign lqip = post.media_subpath
|
||||
| append: '/'
|
||||
| append: lqip
|
||||
| replace: '///', '/'
|
||||
| replace: '//', '/'
|
||||
%}
|
||||
{% endunless %}
|
||||
{% endif %}
|
||||
|
||||
{% assign lqip_attr = 'lqip="' | append: lqip | append: '"' %}
|
||||
{% endif %}
|
||||
|
||||
{% assign alt = post.image.alt | xml_escape | default: 'Preview Image' %}
|
||||
|
||||
{% assign lqip = null %}
|
||||
|
||||
{% if post.image.lqip %}
|
||||
{% capture lqip_url %}{% include media-url.html src=post.image.lqip subpath=post.media_subpath %}{% endcapture %}
|
||||
{% assign lqip = 'lqip="' | append: lqip_url | append: '"' %}
|
||||
{% endif %}
|
||||
|
||||
<div class="col-md-5">
|
||||
<img src="{{ src }}" alt="{{ alt }}" {{ lqip }}>
|
||||
<img src="{{ src }}" alt="{{ alt }}" {{ lqip_attr }}>
|
||||
</div>
|
||||
|
||||
{% assign card_body_col = '7' %}
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
---
|
||||
layout: default
|
||||
refactor: true
|
||||
panel_includes:
|
||||
- toc
|
||||
tail_includes:
|
||||
|
||||
@@ -1,200 +0,0 @@
|
||||
---
|
||||
title: Text and Typography
|
||||
description: Examples of text, typography, math equations, diagrams, flowcharts, pictures, videos, and more.
|
||||
author: cotes
|
||||
date: 2019-08-08 11:33:00 +0800
|
||||
categories: [Blogging, Demo]
|
||||
tags: [typography]
|
||||
pin: true
|
||||
math: true
|
||||
mermaid: true
|
||||
image:
|
||||
path: /commons/devices-mockup.png
|
||||
lqip: data:image/webp;base64,UklGRpoAAABXRUJQVlA4WAoAAAAQAAAADwAABwAAQUxQSDIAAAARL0AmbZurmr57yyIiqE8oiG0bejIYEQTgqiDA9vqnsUSI6H+oAERp2HZ65qP/VIAWAFZQOCBCAAAA8AEAnQEqEAAIAAVAfCWkAALp8sF8rgRgAP7o9FDvMCkMde9PK7euH5M1m6VWoDXf2FkP3BqV0ZYbO6NA/VFIAAAA
|
||||
alt: Responsive rendering of Chirpy theme on multiple devices.
|
||||
---
|
||||
|
||||
## Headings
|
||||
|
||||
<!-- markdownlint-capture -->
|
||||
<!-- markdownlint-disable -->
|
||||
# H1 — heading
|
||||
{: .mt-4 .mb-0 }
|
||||
|
||||
## H2 — heading
|
||||
{: data-toc-skip='' .mt-4 .mb-0 }
|
||||
|
||||
### H3 — heading
|
||||
{: data-toc-skip='' .mt-4 .mb-0 }
|
||||
|
||||
#### H4 — heading
|
||||
{: data-toc-skip='' .mt-4 }
|
||||
<!-- markdownlint-restore -->
|
||||
|
||||
## Paragraph
|
||||
|
||||
Quisque egestas convallis ipsum, ut sollicitudin risus tincidunt a. Maecenas interdum malesuada egestas. Duis consectetur porta risus, sit amet vulputate urna facilisis ac. Phasellus semper dui non purus ultrices sodales. Aliquam ante lorem, ornare a feugiat ac, finibus nec mauris. Vivamus ut tristique nisi. Sed vel leo vulputate, efficitur risus non, posuere mi. Nullam tincidunt bibendum rutrum. Proin commodo ornare sapien. Vivamus interdum diam sed sapien blandit, sit amet aliquam risus mattis. Nullam arcu turpis, mollis quis laoreet at, placerat id nibh. Suspendisse venenatis eros eros.
|
||||
|
||||
## Lists
|
||||
|
||||
### Ordered list
|
||||
|
||||
1. Firstly
|
||||
2. Secondly
|
||||
3. Thirdly
|
||||
|
||||
### Unordered list
|
||||
|
||||
- Chapter
|
||||
- Section
|
||||
- Paragraph
|
||||
|
||||
### ToDo list
|
||||
|
||||
- [ ] Job
|
||||
- [x] Step 1
|
||||
- [x] Step 2
|
||||
- [ ] Step 3
|
||||
|
||||
### Description list
|
||||
|
||||
Sun
|
||||
: the star around which the earth orbits
|
||||
|
||||
Moon
|
||||
: the natural satellite of the earth, visible by reflected light from the sun
|
||||
|
||||
## Block Quote
|
||||
|
||||
> This line shows the _block quote_.
|
||||
|
||||
## Prompts
|
||||
|
||||
<!-- markdownlint-capture -->
|
||||
<!-- markdownlint-disable -->
|
||||
> An example showing the `tip` type prompt.
|
||||
{: .prompt-tip }
|
||||
|
||||
> An example showing the `info` type prompt.
|
||||
{: .prompt-info }
|
||||
|
||||
> An example showing the `warning` type prompt.
|
||||
{: .prompt-warning }
|
||||
|
||||
> An example showing the `danger` type prompt.
|
||||
{: .prompt-danger }
|
||||
<!-- markdownlint-restore -->
|
||||
|
||||
## Tables
|
||||
|
||||
| Company | Contact | Country |
|
||||
| :--------------------------- | :--------------- | ------: |
|
||||
| Alfreds Futterkiste | Maria Anders | Germany |
|
||||
| Island Trading | Helen Bennett | UK |
|
||||
| Magazzini Alimentari Riuniti | Giovanni Rovelli | Italy |
|
||||
|
||||
## Links
|
||||
|
||||
<http://127.0.0.1:4000>
|
||||
|
||||
## Footnote
|
||||
|
||||
Click the hook will locate the footnote[^footnote], and here is another footnote[^fn-nth-2].
|
||||
|
||||
## Inline code
|
||||
|
||||
This is an example of `Inline Code`.
|
||||
|
||||
## Filepath
|
||||
|
||||
Here is the `/path/to/the/file.extend`{: .filepath}.
|
||||
|
||||
## Code blocks
|
||||
|
||||
### Common
|
||||
|
||||
```text
|
||||
This is a common code snippet, without syntax highlight and line number.
|
||||
```
|
||||
|
||||
### Specific Language
|
||||
|
||||
```bash
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "The command was not successful.";
|
||||
#do the needful / exit
|
||||
fi;
|
||||
```
|
||||
|
||||
### Specific filename
|
||||
|
||||
```sass
|
||||
@import
|
||||
"colors/light-typography",
|
||||
"colors/dark-typography";
|
||||
```
|
||||
{: file='_sass/jekyll-theme-chirpy.scss'}
|
||||
|
||||
## Mathematics
|
||||
|
||||
The mathematics powered by [**MathJax**](https://www.mathjax.org/):
|
||||
|
||||
$$
|
||||
\begin{equation}
|
||||
\sum_{n=1}^\infty 1/n^2 = \frac{\pi^2}{6}
|
||||
\label{eq:series}
|
||||
\end{equation}
|
||||
$$
|
||||
|
||||
We can reference the equation as \eqref{eq:series}.
|
||||
|
||||
When $a \ne 0$, there are two solutions to $ax^2 + bx + c = 0$ and they are
|
||||
|
||||
$$ x = {-b \pm \sqrt{b^2-4ac} \over 2a} $$
|
||||
|
||||
## Mermaid SVG
|
||||
|
||||
```mermaid
|
||||
gantt
|
||||
title Adding GANTT diagram functionality to mermaid
|
||||
apple :a, 2017-07-20, 1w
|
||||
banana :crit, b, 2017-07-23, 1d
|
||||
cherry :active, c, after b a, 1d
|
||||
```
|
||||
|
||||
## Images
|
||||
|
||||
### Default (with caption)
|
||||
|
||||
{: width="972" height="589" }
|
||||
_Full screen width and center alignment_
|
||||
|
||||
### Left aligned
|
||||
|
||||
{: width="972" height="589" .w-75 .normal}
|
||||
|
||||
### Float to left
|
||||
|
||||
{: width="972" height="589" .w-50 .left}
|
||||
Praesent maximus aliquam sapien. Sed vel neque in dolor pulvinar auctor. Maecenas pharetra, sem sit amet interdum posuere, tellus lacus eleifend magna, ac lobortis felis ipsum id sapien. Proin ornare rutrum metus, ac convallis diam volutpat sit amet. Phasellus volutpat, elit sit amet tincidunt mollis, felis mi scelerisque mauris, ut facilisis leo magna accumsan sapien. In rutrum vehicula nisl eget tempor. Nullam maximus ullamcorper libero non maximus. Integer ultricies velit id convallis varius. Praesent eu nisl eu urna finibus ultrices id nec ex. Mauris ac mattis quam. Fusce aliquam est nec sapien bibendum, vitae malesuada ligula condimentum.
|
||||
|
||||
### Float to right
|
||||
|
||||
{: width="972" height="589" .w-50 .right}
|
||||
Praesent maximus aliquam sapien. Sed vel neque in dolor pulvinar auctor. Maecenas pharetra, sem sit amet interdum posuere, tellus lacus eleifend magna, ac lobortis felis ipsum id sapien. Proin ornare rutrum metus, ac convallis diam volutpat sit amet. Phasellus volutpat, elit sit amet tincidunt mollis, felis mi scelerisque mauris, ut facilisis leo magna accumsan sapien. In rutrum vehicula nisl eget tempor. Nullam maximus ullamcorper libero non maximus. Integer ultricies velit id convallis varius. Praesent eu nisl eu urna finibus ultrices id nec ex. Mauris ac mattis quam. Fusce aliquam est nec sapien bibendum, vitae malesuada ligula condimentum.
|
||||
|
||||
### Dark/Light mode & Shadow
|
||||
|
||||
The image below will toggle dark/light mode based on theme preference, notice it has shadows.
|
||||
|
||||
{: .light .w-75 .shadow .rounded-10 w='1212' h='668' }
|
||||
{: .dark .w-75 .shadow .rounded-10 w='1212' h='668' }
|
||||
|
||||
## Video
|
||||
|
||||
{% include embed/youtube.html id='Balreaj8Yqs' %}
|
||||
|
||||
## Reverse Footnote
|
||||
|
||||
[^footnote]: The footnote source
|
||||
[^fn-nth-2]: The 2nd footnote source
|
||||
@@ -1,509 +0,0 @@
|
||||
---
|
||||
title: Writing a New Post
|
||||
author: cotes
|
||||
date: 2019-08-08 14:10:00 +0800
|
||||
categories: [Blogging, Tutorial]
|
||||
tags: [writing]
|
||||
render_with_liquid: false
|
||||
---
|
||||
|
||||
This tutorial will guide you how to write a post in the _Chirpy_ template, and it's worth reading even if you've used Jekyll before, as many features require specific variables to be set.
|
||||
|
||||
## Naming and Path
|
||||
|
||||
Create a new file named `YYYY-MM-DD-TITLE.EXTENSION`{: .filepath} and put it in the `_posts`{: .filepath} of the root directory. Please note that the `EXTENSION`{: .filepath} must be one of `md`{: .filepath} and `markdown`{: .filepath}. If you want to save time of creating files, please consider using the plugin [`Jekyll-Compose`](https://github.com/jekyll/jekyll-compose) to accomplish this.
|
||||
|
||||
## Front Matter
|
||||
|
||||
Basically, you need to fill the [Front Matter](https://jekyllrb.com/docs/front-matter/) as below at the top of the post:
|
||||
|
||||
```yaml
|
||||
---
|
||||
title: TITLE
|
||||
date: YYYY-MM-DD HH:MM:SS +/-TTTT
|
||||
categories: [TOP_CATEGORY, SUB_CATEGORY]
|
||||
tags: [TAG] # TAG names should always be lowercase
|
||||
---
|
||||
```
|
||||
|
||||
> The posts' _layout_ has been set to `post` by default, so there is no need to add the variable _layout_ in the Front Matter block.
|
||||
{: .prompt-tip }
|
||||
|
||||
### Timezone of Date
|
||||
|
||||
To accurately record the release date of a post, you should not only set up the `timezone` of `_config.yml`{: .filepath} but also provide the post's timezone in variable `date` of its Front Matter block. Format: `+/-TTTT`, e.g. `+0800`.
|
||||
|
||||
### Categories and Tags
|
||||
|
||||
The `categories` of each post are designed to contain up to two elements, and the number of elements in `tags` can be zero to infinity. For instance:
|
||||
|
||||
```yaml
|
||||
---
|
||||
categories: [Animal, Insect]
|
||||
tags: [bee]
|
||||
---
|
||||
```
|
||||
|
||||
### Author Information
|
||||
|
||||
The author information of the post usually does not need to be filled in the _Front Matter_ , they will be obtained from variables `social.name` and the first entry of `social.links` of the configuration file by default. But you can also override it as follows:
|
||||
|
||||
Adding author information in `_data/authors.yml` (If your website doesn't have this file, don't hesitate to create one).
|
||||
|
||||
```yaml
|
||||
<author_id>:
|
||||
name: <full name>
|
||||
twitter: <twitter_of_author>
|
||||
url: <homepage_of_author>
|
||||
```
|
||||
{: file="_data/authors.yml" }
|
||||
|
||||
And then use `author` to specify a single entry or `authors` to specify multiple entries:
|
||||
|
||||
```yaml
|
||||
---
|
||||
author: <author_id> # for single entry
|
||||
# or
|
||||
authors: [<author1_id>, <author2_id>] # for multiple entries
|
||||
---
|
||||
```
|
||||
|
||||
Having said that, the key `author` can also identify multiple entries.
|
||||
|
||||
> The benefit of reading the author information from the file `_data/authors.yml`{: .filepath } is that the page will have the meta tag `twitter:creator`, which enriches the [Twitter Cards](https://developer.twitter.com/en/docs/twitter-for-websites/cards/guides/getting-started#card-and-content-attribution) and is good for SEO.
|
||||
{: .prompt-info }
|
||||
|
||||
### Post Description
|
||||
|
||||
By default, the first words of the post are used to display on the home page for a list of posts, in the _Further Reading_ section, and in the XML of the RSS feed. If you don't want to display the auto-generated description for the post, you can customize it using the `description` field in the _Front Matter_ as follows:
|
||||
|
||||
```yaml
|
||||
---
|
||||
description: Short summary of the post.
|
||||
---
|
||||
```
|
||||
|
||||
Additionally, the `description` text will also be displayed under the post title on the post's page.
|
||||
|
||||
## Table of Contents
|
||||
|
||||
By default, the **T**able **o**f **C**ontents (TOC) is displayed on the right panel of the post. If you want to turn it off globally, go to `_config.yml`{: .filepath} and set the value of variable `toc` to `false`. If you want to turn off TOC for a specific post, add the following to the post's [Front Matter](https://jekyllrb.com/docs/front-matter/):
|
||||
|
||||
```yaml
|
||||
---
|
||||
toc: false
|
||||
---
|
||||
```
|
||||
|
||||
## Comments
|
||||
|
||||
The global setting for comments is defined by the `comments.provider` option in the `_config.yml`{: .filepath} file. Once a comment system is selected for this variable, comments will be enabled for all posts.
|
||||
|
||||
If you want to close the comment for a specific post, add the following to the **Front Matter** of the post:
|
||||
|
||||
```yaml
|
||||
---
|
||||
comments: false
|
||||
---
|
||||
```
|
||||
|
||||
## Media
|
||||
|
||||
We refer to images, audio and video as media resources in _Chirpy_.
|
||||
|
||||
### URL Prefix
|
||||
|
||||
From time to time we have to define duplicate URL prefixes for multiple resources in a post, which is a boring task that you can avoid by setting two parameters.
|
||||
|
||||
- If you are using a CDN to host media files, you can specify the `cdn` in `_config.yml`{: .filepath }. The URLs of media resources for site avatar and posts are then prefixed with the CDN domain name.
|
||||
|
||||
```yaml
|
||||
cdn: https://cdn.com
|
||||
```
|
||||
{: file='_config.yml' .nolineno }
|
||||
|
||||
- To specify the resource path prefix for the current post/page range, set `media_subpath` in the _front matter_ of the post:
|
||||
|
||||
```yaml
|
||||
---
|
||||
media_subpath: /path/to/media/
|
||||
---
|
||||
```
|
||||
{: .nolineno }
|
||||
|
||||
The option `site.cdn` and `page.media_subpath` can be used individually or in combination to flexibly compose the final resource URL: `[site.cdn/][page.media_subpath/]file.ext`
|
||||
|
||||
### Images
|
||||
|
||||
#### Caption
|
||||
|
||||
Add italics to the next line of an image, then it will become the caption and appear at the bottom of the image:
|
||||
|
||||
```markdown
|
||||

|
||||
_Image Caption_
|
||||
```
|
||||
{: .nolineno}
|
||||
|
||||
#### Size
|
||||
|
||||
To prevent the page content layout from shifting when the image is loaded, we should set the width and height for each image.
|
||||
|
||||
```markdown
|
||||
{: width="700" height="400" }
|
||||
```
|
||||
{: .nolineno}
|
||||
|
||||
> For an SVG, you have to at least specify its _width_, otherwise it won't be rendered.
|
||||
{: .prompt-info }
|
||||
|
||||
Starting from _Chirpy v5.0.0_, `height` and `width` support abbreviations (`height` → `h`, `width` → `w`). The following example has the same effect as the above:
|
||||
|
||||
```markdown
|
||||
{: w="700" h="400" }
|
||||
```
|
||||
{: .nolineno}
|
||||
|
||||
#### Position
|
||||
|
||||
By default, the image is centered, but you can specify the position by using one of the classes `normal`, `left`, and `right`.
|
||||
|
||||
> Once the position is specified, the image caption should not be added.
|
||||
{: .prompt-warning }
|
||||
|
||||
- **Normal position**
|
||||
|
||||
Image will be left aligned in below sample:
|
||||
|
||||
```markdown
|
||||
{: .normal }
|
||||
```
|
||||
{: .nolineno}
|
||||
|
||||
- **Float to the left**
|
||||
|
||||
```markdown
|
||||
{: .left }
|
||||
```
|
||||
{: .nolineno}
|
||||
|
||||
- **Float to the right**
|
||||
|
||||
```markdown
|
||||
{: .right }
|
||||
```
|
||||
{: .nolineno}
|
||||
|
||||
#### Dark/Light mode
|
||||
|
||||
You can make images follow theme preferences in dark/light mode. This requires you to prepare two images, one for dark mode and one for light mode, and then assign them a specific class (`dark` or `light`):
|
||||
|
||||
```markdown
|
||||
{: .light }
|
||||
{: .dark }
|
||||
```
|
||||
|
||||
#### Shadow
|
||||
|
||||
The screenshots of the program window can be considered to show the shadow effect:
|
||||
|
||||
```markdown
|
||||
{: .shadow }
|
||||
```
|
||||
{: .nolineno}
|
||||
|
||||
#### Preview Image
|
||||
|
||||
If you want to add an image at the top of the post, please provide an image with a resolution of `1200 x 630`. Please note that if the image aspect ratio does not meet `1.91 : 1`, the image will be scaled and cropped.
|
||||
|
||||
Knowing these prerequisites, you can start setting the image's attribute:
|
||||
|
||||
```yaml
|
||||
---
|
||||
image:
|
||||
path: /path/to/image
|
||||
alt: image alternative text
|
||||
---
|
||||
```
|
||||
|
||||
Note that the [`media_subpath`](#url-prefix) can also be passed to the preview image, that is, when it has been set, the attribute `path` only needs the image file name.
|
||||
|
||||
For simple use, you can also just use `image` to define the path.
|
||||
|
||||
```yml
|
||||
---
|
||||
image: /path/to/image
|
||||
---
|
||||
```
|
||||
|
||||
#### LQIP
|
||||
|
||||
For preview images:
|
||||
|
||||
```yaml
|
||||
---
|
||||
image:
|
||||
lqip: /path/to/lqip-file # or base64 URI
|
||||
---
|
||||
```
|
||||
|
||||
> You can observe LQIP in the preview image of post \"[Text and Typography](../text-and-typography/)\".
|
||||
|
||||
For normal images:
|
||||
|
||||
```markdown
|
||||
{: lqip="/path/to/lqip-file" }
|
||||
```
|
||||
{: .nolineno }
|
||||
|
||||
### Social Media Platforms
|
||||
|
||||
You can embed video/audio from social media platforms with the following syntax:
|
||||
|
||||
```liquid
|
||||
{% include embed/{Platform}.html id='{ID}' %}
|
||||
```
|
||||
|
||||
Where `Platform` is the lowercase of the platform name, and `ID` is the video ID.
|
||||
|
||||
The following table shows how to get the two parameters we need in a given video/audio URL, and you can also know the currently supported video platforms.
|
||||
|
||||
| Video URL | Platform | ID |
|
||||
| -------------------------------------------------------------------------------------------------------------------------- | ---------- | :----------------------- |
|
||||
| [https://www.**youtube**.com/watch?v=**H-B46URT4mg**](https://www.youtube.com/watch?v=H-B46URT4mg) | `youtube` | `H-B46URT4mg` |
|
||||
| [https://www.**twitch**.tv/videos/**1634779211**](https://www.twitch.tv/videos/1634779211) | `twitch` | `1634779211` |
|
||||
| [https://www.**bilibili**.com/video/**BV1Q44y1B7Wf**](https://www.bilibili.com/video/BV1Q44y1B7Wf) | `bilibili` | `BV1Q44y1B7Wf` |
|
||||
| [https://www.open.**spotify**.com/track/**3OuMIIFP5TxM8tLXMWYPGV**](https://open.spotify.com/track/3OuMIIFP5TxM8tLXMWYPGV) | `spotify` | `3OuMIIFP5TxM8tLXMWYPGV` |
|
||||
|
||||
Spotify supports some additional parameters:
|
||||
|
||||
- `compact` - to display compact player instead (ex. `{% include embed/spotify.html id='3OuMIIFP5TxM8tLXMWYPGV' compact=1 %}`);
|
||||
- `dark` - to force dark theme (ex. `{% include embed/spotify.html id='3OuMIIFP5TxM8tLXMWYPGV' dark=1 %}`).
|
||||
|
||||
### Video Files
|
||||
|
||||
If you want to embed a video file directly, use the following syntax:
|
||||
|
||||
```liquid
|
||||
{% include embed/video.html src='{URL}' %}
|
||||
```
|
||||
|
||||
Where `URL` is a URL to a video file e.g. `/path/to/sample/video.mp4`.
|
||||
|
||||
You can also specify additional attributes for the embedded video file. Here is a full list of attributes allowed.
|
||||
|
||||
- `poster='/path/to/poster.png'` — poster image for a video that is shown while video is downloading
|
||||
- `title='Text'` — title for a video that appears below the video and looks same as for images
|
||||
- `autoplay=true` — video automatically begins to play back as soon as it can
|
||||
- `loop=true` — automatically seek back to the start upon reaching the end of the video
|
||||
- `muted=true` — audio will be initially silenced
|
||||
- `types` — specify the extensions of additional video formats separated by `|`. Ensure these files exist in the same directory as your primary video file.
|
||||
|
||||
Consider an example using all of the above:
|
||||
|
||||
```liquid
|
||||
{%
|
||||
include embed/video.html
|
||||
src='/path/to/video.mp4'
|
||||
types='ogg|mov'
|
||||
poster='poster.png'
|
||||
title='Demo video'
|
||||
autoplay=true
|
||||
loop=true
|
||||
muted=true
|
||||
%}
|
||||
```
|
||||
|
||||
### Audio Files
|
||||
|
||||
If you want to embed an audio file directly, use the following syntax:
|
||||
|
||||
```liquid
|
||||
{% include embed/audio.html src='{URL}' %}
|
||||
```
|
||||
|
||||
Where `URL` is a URL to an audio file e.g. `/path/to/audio.mp3`.
|
||||
|
||||
You can also specify additional attributes for the embedded audio file. Here is a full list of attributes allowed.
|
||||
|
||||
- `title='Text'` — title for an audio that appears below the audio and looks same as for images
|
||||
- `types` — specify the extensions of additional audio formats separated by `|`. Ensure these files exist in the same directory as your primary audio file.
|
||||
|
||||
Consider an example using all of the above:
|
||||
|
||||
```liquid
|
||||
{%
|
||||
include embed/audio.html
|
||||
src='/path/to/audio.mp3'
|
||||
types='ogg|wav|aac'
|
||||
title='Demo audio'
|
||||
%}
|
||||
```
|
||||
|
||||
## Pinned Posts
|
||||
|
||||
You can pin one or more posts to the top of the home page, and the fixed posts are sorted in reverse order according to their release date. Enable by:
|
||||
|
||||
```yaml
|
||||
---
|
||||
pin: true
|
||||
---
|
||||
```
|
||||
|
||||
## Prompts
|
||||
|
||||
There are several types of prompts: `tip`, `info`, `warning`, and `danger`. They can be generated by adding the class `prompt-{type}` to the blockquote. For example, define a prompt of type `info` as follows:
|
||||
|
||||
```md
|
||||
> Example line for prompt.
|
||||
{: .prompt-info }
|
||||
```
|
||||
{: .nolineno }
|
||||
|
||||
## Syntax
|
||||
|
||||
### Inline Code
|
||||
|
||||
```md
|
||||
`inline code part`
|
||||
```
|
||||
{: .nolineno }
|
||||
|
||||
### Filepath Highlight
|
||||
|
||||
```md
|
||||
`/path/to/a/file.extend`{: .filepath}
|
||||
```
|
||||
{: .nolineno }
|
||||
|
||||
### Code Block
|
||||
|
||||
Markdown symbols ```` ``` ```` can easily create a code block as follows:
|
||||
|
||||
````md
|
||||
```
|
||||
This is a plaintext code snippet.
|
||||
```
|
||||
````
|
||||
|
||||
#### Specifying Language
|
||||
|
||||
Using ```` ```{language} ```` you will get a code block with syntax highlight:
|
||||
|
||||
````markdown
|
||||
```yaml
|
||||
key: value
|
||||
```
|
||||
````
|
||||
|
||||
> The Jekyll tag `{% highlight %}` is not compatible with this theme.
|
||||
{: .prompt-danger }
|
||||
|
||||
#### Line Number
|
||||
|
||||
By default, all languages except `plaintext`, `console`, and `terminal` will display line numbers. When you want to hide the line number of a code block, add the class `nolineno` to it:
|
||||
|
||||
````markdown
|
||||
```shell
|
||||
echo 'No more line numbers!'
|
||||
```
|
||||
{: .nolineno }
|
||||
````
|
||||
|
||||
#### Specifying the Filename
|
||||
|
||||
You may have noticed that the code language will be displayed at the top of the code block. If you want to replace it with the file name, you can add the attribute `file` to achieve this:
|
||||
|
||||
````markdown
|
||||
```shell
|
||||
# content
|
||||
```
|
||||
{: file="path/to/file" }
|
||||
````
|
||||
|
||||
#### Liquid Codes
|
||||
|
||||
If you want to display the **Liquid** snippet, surround the liquid code with `{% raw %}` and `{% endraw %}`:
|
||||
|
||||
````markdown
|
||||
{% raw %}
|
||||
```liquid
|
||||
{% if product.title contains 'Pack' %}
|
||||
This product's title contains the word Pack.
|
||||
{% endif %}
|
||||
```
|
||||
{% endraw %}
|
||||
````
|
||||
|
||||
Or adding `render_with_liquid: false` (Requires Jekyll 4.0 or higher) to the post's YAML block.
|
||||
|
||||
## Mathematics
|
||||
|
||||
We use [**MathJax**][mathjax] to generate mathematics. For website performance reasons, the mathematical feature won't be loaded by default. But it can be enabled by:
|
||||
|
||||
[mathjax]: https://www.mathjax.org/
|
||||
|
||||
```yaml
|
||||
---
|
||||
math: true
|
||||
---
|
||||
```
|
||||
|
||||
After enabling the mathematical feature, you can add math equations with the following syntax:
|
||||
|
||||
- **Block math** should be added with `$$ math $$` with **mandatory** blank lines before and after `$$`
|
||||
- **Inserting equation numbering** should be added with `$$\begin{equation} math \end{equation}$$`
|
||||
- **Referencing equation numbering** should be done with `\label{eq:label_name}` in the equation block and `\eqref{eq:label_name}` inline with text (see example below)
|
||||
- **Inline math** (in lines) should be added with `$$ math $$` without any blank line before or after `$$`
|
||||
- **Inline math** (in lists) should be added with `\$$ math $$`
|
||||
|
||||
```markdown
|
||||
<!-- Block math, keep all blank lines -->
|
||||
|
||||
$$
|
||||
LaTeX_math_expression
|
||||
$$
|
||||
|
||||
<!-- Equation numbering, keep all blank lines -->
|
||||
|
||||
$$
|
||||
\begin{equation}
|
||||
LaTeX_math_expression
|
||||
\label{eq:label_name}
|
||||
\end{equation}
|
||||
$$
|
||||
|
||||
Can be referenced as \eqref{eq:label_name}.
|
||||
|
||||
<!-- Inline math in lines, NO blank lines -->
|
||||
|
||||
"Lorem ipsum dolor sit amet, $$ LaTeX_math_expression $$ consectetur adipiscing elit."
|
||||
|
||||
<!-- Inline math in lists, escape the first `$` -->
|
||||
|
||||
1. \$$ LaTeX_math_expression $$
|
||||
2. \$$ LaTeX_math_expression $$
|
||||
3. \$$ LaTeX_math_expression $$
|
||||
```
|
||||
|
||||
> Starting with `v7.0.0`, configuration options for **MathJax** have been moved to file `assets/js/data/mathjax.js`{: .filepath }, and you can change the options as needed, such as adding [extensions][mathjax-exts].
|
||||
> If you are building the site via `chirpy-starter`, copy that file from the gem installation directory (check with command `bundle info --path jekyll-theme-chirpy`) to the same directory in your repository.
|
||||
{: .prompt-tip }
|
||||
|
||||
[mathjax-exts]: https://docs.mathjax.org/en/latest/input/tex/extensions/index.html
|
||||
|
||||
## Mermaid
|
||||
|
||||
[**Mermaid**](https://github.com/mermaid-js/mermaid) is a great diagram generation tool. To enable it on your post, add the following to the YAML block:
|
||||
|
||||
```yaml
|
||||
---
|
||||
mermaid: true
|
||||
---
|
||||
```
|
||||
|
||||
Then you can use it like other markdown languages: surround the graph code with ```` ```mermaid ```` and ```` ``` ````.
|
||||
|
||||
## Learn More
|
||||
|
||||
For more knowledge about Jekyll posts, visit the [Jekyll Docs: Posts](https://jekyllrb.com/docs/posts/).
|
||||
@@ -1,149 +0,0 @@
|
||||
---
|
||||
title: Getting Started
|
||||
description: >-
|
||||
Get started with Chirpy basics in this comprehensive overview.
|
||||
You will learn how to install, configure, and use your first Chirpy-based website, as well as deploy it to a web server.
|
||||
author: cotes
|
||||
date: 2019-08-09 20:55:00 +0800
|
||||
categories: [Blogging, Tutorial]
|
||||
tags: [getting started]
|
||||
pin: true
|
||||
media_subpath: '/posts/20180809'
|
||||
---
|
||||
|
||||
## Creating a Site Repository
|
||||
|
||||
When creating your site repository, you have two options depending on your needs:
|
||||
|
||||
### Option 1. Using the Starter (Recommended)
|
||||
|
||||
This approach simplifies upgrades, isolates unnecessary files, and is perfect for users who want to focus on writing with minimal configuration.
|
||||
|
||||
1. Sign in to GitHub and navigate to the [**starter**][starter].
|
||||
2. Click the <kbd>Use this template</kbd> button and then select <kbd>Create a new repository</kbd>.
|
||||
3. Name the new repository `<username>.github.io`, replacing `username` with your lowercase GitHub username.
|
||||
|
||||
### Option 2. Forking the Theme
|
||||
|
||||
This approach is convenient for modifying features or UI design, but presents challenges during upgrades. So don't try this unless you are familiar with Jekyll and plan to heavily modify this theme.
|
||||
|
||||
1. Sign in to GitHub.
|
||||
2. [Fork the theme repository](https://github.com/cotes2020/jekyll-theme-chirpy/fork).
|
||||
3. Name the new repository `<username>.github.io`, replacing `username` with your lowercase GitHub username.
|
||||
|
||||
## Setting up the Environment
|
||||
|
||||
Once your repository is created, it's time to set up your development environment. There are two primary methods:
|
||||
|
||||
### Using Dev Containers (Recommended for Windows)
|
||||
|
||||
Dev Containers offer an isolated environment using Docker, which prevents conflicts with your system and ensures all dependencies are managed within the container.
|
||||
|
||||
**Steps**:
|
||||
|
||||
1. Install Docker:
|
||||
- On Windows/macOS, install [Docker Desktop][docker-desktop].
|
||||
- On Linux, install [Docker Engine][docker-engine].
|
||||
2. Install [VS Code][vscode] and the [Dev Containers extension][dev-containers].
|
||||
3. Clone your repository:
|
||||
- For Docker Desktop: Start VS Code and [clone your repo in a container volume][dc-clone-in-vol].
|
||||
- For Docker Engine: Clone your repo locally, then [open it in a container][dc-open-in-container] via VS Code.
|
||||
4. Wait for the Dev Containers setup to complete.
|
||||
|
||||
### Setting up Natively (Recommended for Unix-like OS)
|
||||
|
||||
For Unix-like systems, you can set up the environment natively for optimal performance, though you can also use Dev Containers as an alternative.
|
||||
|
||||
**Steps**:
|
||||
|
||||
1. Follow the [Jekyll installation guide](https://jekyllrb.com/docs/installation/) to install Jekyll and ensure [Git](https://git-scm.com/) is installed.
|
||||
2. Clone your repository to your local machine.
|
||||
3. If you forked the theme, install [Node.js][nodejs] and run `bash tools/init.sh` in the root directory to initialize the repository.
|
||||
4. Run command `bundle` in the root of your repository to install the dependencies.
|
||||
|
||||
## Usage
|
||||
|
||||
### Start the Jekyll Server
|
||||
|
||||
To run the site locally, use the following command:
|
||||
|
||||
```terminal
|
||||
$ bundle exec jekyll serve
|
||||
```
|
||||
|
||||
> If you are using Dev Containers, you must run that command in the **VS Code** Terminal.
|
||||
{: .prompt-info }
|
||||
|
||||
After a few seconds, the local server will be available at <http://127.0.0.1:4000>.
|
||||
|
||||
### Configuration
|
||||
|
||||
Update the variables in `_config.yml`{: .filepath} as needed. Some typical options include:
|
||||
|
||||
- `url`
|
||||
- `avatar`
|
||||
- `timezone`
|
||||
- `lang`
|
||||
|
||||
### Social Contact Options
|
||||
|
||||
Social contact options are displayed at the bottom of the sidebar. You can enable or disable specific contacts in the `_data/contact.yml`{: .filepath} file.
|
||||
|
||||
### Customizing the Stylesheet
|
||||
|
||||
To customize the stylesheet, copy the theme's `assets/css/jekyll-theme-chirpy.scss`{: .filepath} file to the same path in your Jekyll site, and add your custom styles at the end of the file.
|
||||
|
||||
### Customizing Static Assets
|
||||
|
||||
Static assets configuration was introduced in version `5.1.0`. The CDN of the static assets is defined in `_data/origin/cors.yml`{: .filepath }. You can replace some of them based on the network conditions in the region where your website is published.
|
||||
|
||||
If you prefer to self-host the static assets, refer to the [_chirpy-static-assets_](https://github.com/cotes2020/chirpy-static-assets#readme) repository.
|
||||
|
||||
## Deployment
|
||||
|
||||
Before deploying, check the `_config.yml`{: .filepath} file and ensure the `url` is configured correctly. If you prefer a [**project site**](https://help.github.com/en/github/working-with-github-pages/about-github-pages#types-of-github-pages-sites) and don't use a custom domain, or if you want to visit your website with a base URL on a web server other than **GitHub Pages**, remember to set the `baseurl` to your project name, starting with a slash, e.g., `/project-name`.
|
||||
|
||||
Now you can choose _ONE_ of the following methods to deploy your Jekyll site.
|
||||
|
||||
### Deploy Using Github Actions
|
||||
|
||||
Prepare the following:
|
||||
|
||||
- If you're on the GitHub Free plan, keep your site repository public.
|
||||
- If you have committed `Gemfile.lock`{: .filepath} to the repository, and your local machine is not running Linux, update the platform list of the lock file:
|
||||
|
||||
```console
|
||||
$ bundle lock --add-platform x86_64-linux
|
||||
```
|
||||
|
||||
Next, configure the _Pages_ service:
|
||||
|
||||
1. Go to your repository on GitHub. Select the _Settings_ tab, then click _Pages_ in the left navigation bar. In the **Source** section (under _Build and deployment_), select [**GitHub Actions**][pages-workflow-src] from the dropdown menu.
|
||||
{: .light .border .normal w='375' h='140' }
|
||||
{: .dark .normal w='375' h='140' }
|
||||
|
||||
2. Push any commits to GitHub to trigger the _Actions_ workflow. In the _Actions_ tab of your repository, you should see the workflow _Build and Deploy_ running. Once the build is complete and successful, the site will be deployed automatically.
|
||||
|
||||
You can now visit the URL provided by GitHub to access your site.
|
||||
|
||||
### Manual Build and Deployment
|
||||
|
||||
For self-hosted servers, you will need to build the site on your local machine and then upload the site files to the server.
|
||||
|
||||
Navigate to the root of the source project, and build your site with the following command:
|
||||
|
||||
```console
|
||||
$ JEKYLL_ENV=production bundle exec jekyll b
|
||||
```
|
||||
|
||||
Unless you specified the output path, the generated site files will be placed in the `_site`{: .filepath} folder of the project's root directory. Upload these files to your target server.
|
||||
|
||||
[nodejs]: https://nodejs.org/
|
||||
[starter]: https://github.com/cotes2020/chirpy-starter
|
||||
[pages-workflow-src]: https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site#publishing-with-a-custom-github-actions-workflow
|
||||
[docker-desktop]: https://www.docker.com/products/docker-desktop/
|
||||
[docker-engine]: https://docs.docker.com/engine/install/
|
||||
[vscode]: https://code.visualstudio.com/
|
||||
[dev-containers]: https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers
|
||||
[dc-clone-in-vol]: https://code.visualstudio.com/docs/devcontainers/containers#_quick-start-open-a-git-repository-or-github-pr-in-an-isolated-container-volume
|
||||
[dc-open-in-container]: https://code.visualstudio.com/docs/devcontainers/containers#_quick-start-open-an-existing-folder-in-a-container
|
||||
@@ -1,38 +0,0 @@
|
||||
---
|
||||
title: Customize the Favicon
|
||||
author: cotes
|
||||
date: 2019-08-11 00:34:00 +0800
|
||||
categories: [Blogging, Tutorial]
|
||||
tags: [favicon]
|
||||
---
|
||||
|
||||
The [favicons](https://www.favicon-generator.org/about/) of [**Chirpy**](https://github.com/cotes2020/jekyll-theme-chirpy/) are placed in the directory `assets/img/favicons/`{: .filepath}. You may want to replace them with your own. The following sections will guide you to create and replace the default favicons.
|
||||
|
||||
## Generate the favicon
|
||||
|
||||
Prepare a square image (PNG, JPG, or SVG) with a size of 512x512 or more, and then go to the online tool [**Real Favicon Generator**](https://realfavicongenerator.net/) and click the button <kbd>Pick your favicon image</kbd> to upload your image file.
|
||||
|
||||
In the next step, the webpage will show all usage scenarios. You can keep the default options, scroll to the bottom of the page, and click the button <kbd>Next →</kbd> to generate the favicon.
|
||||
|
||||
## Download & Replace
|
||||
|
||||
Download the generated package, unzip and delete the following file(s) from the extracted files:
|
||||
|
||||
- `site.webmanifest`{: .filepath}
|
||||
|
||||
And then copy the remaining image files (`.PNG`{: .filepath}, `.ICO`{: .filepath} and `.SVG`{: .filepath}) to cover the original files in the directory `assets/img/favicons/`{: .filepath} of your Jekyll site. If your Jekyll site doesn't have this directory yet, just create one.
|
||||
|
||||
The following table will help you understand the changes to the favicon files:
|
||||
|
||||
| File(s) | From Online Tool | From Chirpy |
|
||||
| ------- | :--------------: | :---------: |
|
||||
| `*.PNG` | ✓ | ✗ |
|
||||
| `*.ICO` | ✓ | ✗ |
|
||||
| `*.SVG` | ✓ | ✗ |
|
||||
|
||||
|
||||
<!-- markdownlint-disable-next-line -->
|
||||
> ✓ means keep, ✗ means delete.
|
||||
{: .prompt-info }
|
||||
|
||||
The next time you build the site, the favicon will be replaced with a customized edition.
|
||||
11
_posts/2026-01-23-MacaroniPMCoseptLogos.md
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
title: MacaroniPM Logo Consepts
|
||||
date: 2026-01-23 11:43
|
||||
categories: [Projects]
|
||||
tags: [macaronipm] # TAG names should always be lowercase
|
||||
---
|
||||
|
||||
Whenever I make a projectm I like making it a logo, so thats why I made mutible consepts of logos.
|
||||
|
||||
So here is a page I made showing the ones I made!
|
||||

|
||||
8
_posts/2026-01-23-test.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Test Post
|
||||
date: 2026-01-23 11:40
|
||||
categories: [Test]
|
||||
tags: [bleb] # TAG names should always be lowercase
|
||||
---
|
||||
|
||||
Hello! This is a test post
|
||||
8
_posts/2026-01-24-hellotomac.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: Test Post
|
||||
date: 2026-01-23 11:40
|
||||
categories: [Test]
|
||||
tags: [bleb] # TAG names should always be lowercase
|
||||
---
|
||||
|
||||
Hello! This is a test post
|
||||
10
_posts/2026-01-24-hellotomac.md.save
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
title: Say hello to MacaroniPM!
|
||||
date: 2026-01-24 12:36
|
||||
categories: [Project, MacaroniPM]
|
||||
tags: [MacaroniPM] # TAG names should always be lowercase
|
||||
---
|
||||
|
||||
## What in the world is MacaroniPM????
|
||||
MacaroniPM is a PenguinMod API wrapper
|
||||
|
||||
140
_posts/2026-01-25-MPM-2.0.md
Normal file
@@ -0,0 +1,140 @@
|
||||
---
|
||||
title: MacaroniPM v2.0.1 | Beautiful Boccoli
|
||||
date: 2026-01-26 6:40pm
|
||||
categories: [Projects]
|
||||
tags: [macaronipm]
|
||||
---
|
||||
|
||||
Hello people! This update is quite big as it changes alot of stuff so instead of explaining what I changed, heres a *new* list of functions that you can call.
|
||||
|
||||
## Special Thanks
|
||||
I would Like to say thanks to ianyourgod on discord for showing me the [ApiModual](https://github.com/PenguinMod/PenguinMod-ApiModule) for JS! It really helped me make Macaroni better! I also would like to say thanks to [scratchattach](https://github.com/TimMcCool/scratchattach) for the idea to even make this.
|
||||
|
||||
> MacaroniPM 1.x.xcode will mostly no longer work.
|
||||
{: .prompt-warning }
|
||||
|
||||
> Using MacaroniPM for spam in PenguinMod **will** get your ip blocked
|
||||
{: .prompt-warning }
|
||||
|
||||
> Do **NOT** share your token with anyone!
|
||||
{: .prompt-danger }
|
||||
|
||||
> It is recomended to set both PID (if doing something with projects) and Token.
|
||||
{: .prompt-tips }
|
||||
|
||||
## `macaronipm.SetToken()` and `macaronipm.TOKEN`
|
||||
Sets your token into the `macaronipm.TOKEN` variable.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
macaronipm.SetToken("ABCDEFG1234567")
|
||||
print(macaronipm.TOKEN)
|
||||
```
|
||||
|
||||
## `macaronipm.SetProject()` and `macaronipm.PID`
|
||||
Sets your project id into the `macaronipm.PID` variable.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
macaronipm.SetProject("ABCD1234")
|
||||
print(macaronipm.PID)
|
||||
```
|
||||
|
||||
## The Misc Catagory
|
||||
### `macaronipm.misc()['LoveToggle']()`
|
||||
Toggles the Love button that you see in projects.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
macaronipm.misc.LoveToggle("false")
|
||||
```
|
||||
|
||||
> The text "true" must be in quotes.
|
||||
{: .prompt-warning }
|
||||
|
||||
### `macaronipm.misc()['VoteToggle']()`
|
||||
Toggles the Check button that you see in projects.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
macaronipm.misc.VoteToggle("true")
|
||||
```
|
||||
|
||||
### `macaronipm.misc()['follow']()`
|
||||
Follows the set target.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
macaronipm.misc()['follow']("koffeejava")
|
||||
```
|
||||
|
||||
### `macaronipm.misc()['GetFeatured']`
|
||||
Grabs featured projects.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
print(macaronipm.misc()['GetFeatured'][3])
|
||||
```
|
||||
> This function returns in arrays, so you can do `macaronipm.misc()['GetProject']()[0])`
|
||||
{: .prompt-tips }
|
||||
|
||||
> This function is WIP! It is not recomended to use
|
||||
{: .prompt-warning }
|
||||
|
||||
## Project Catagory
|
||||
Call stuff about projects.
|
||||
|
||||
### `macaronipm.project()['GetThumbnail']()`
|
||||
Calling this gives you the thumbnail of the project you set.
|
||||
|
||||
> Calling this will return a dataURI.
|
||||
{: .prompt-info }
|
||||
|
||||
### `macaronipm.project()['GetMeta']()`
|
||||
Calling this gives you metadata about the selected project.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
print(macaronipm.project()['GetMeta']()['author']['username'])
|
||||
```
|
||||
|
||||
> `macaronipm.project()['GetMeta']()` outputs in json so you could do `macaronipm.project()['GetMeta']()['author']['username']`
|
||||
{: .prompt-tips }
|
||||
|
||||
## User catagory
|
||||
|
||||
### `macaronipm.user()['GetMeta']()`
|
||||
Calling this returns meta data about target user.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
print(macaronipm.user()['GetMeta']("koffeejava"))
|
||||
```
|
||||
|
||||
> `macaronipm.user()['GetMeta']` outputs in json so you could do `macaronipm.user()['GetMeta']['koffeejava']`
|
||||
{: .prompt-tips }
|
||||
|
||||
### `macaronipm.user()['IsBlocking']()`
|
||||
Calling this returns meta data about target user.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
if macaronipm.user()['IsBlocking']("koffeejava") == "true"
|
||||
print("Why did you block me :(")
|
||||
elif:
|
||||
print("Thats good!")
|
||||
```
|
||||
|
||||
> `macaronipm.user()['GetMeta']` outputs in json so you could do `macaronipm.user()['GetMeta']['koffeejava']`
|
||||
{: .prompt-tips }
|
||||
|
||||
### `macaronipm.user()['GetPfp']()`
|
||||
Calling this gives you the pfp of the target you set.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
pfp = macaronipm.user()['GetPfp']("koffeejava")
|
||||
```
|
||||
|
||||
> Calling this will return a dataURI.
|
||||
{: .prompt-info }
|
||||
6
_posts/test.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Test post!
|
||||
date: 2026-01-21
|
||||
tags: [test] # TAG names should always be lowercase
|
||||
---
|
||||
This is a test!
|
||||
@@ -3,6 +3,15 @@
|
||||
icon: fas fa-info-circle
|
||||
order: 4
|
||||
---
|
||||
Hello! I'm Koffeejava and I love making projects! They are what keep me from being bored when I have nothing to do.
|
||||
|
||||
Things that I make is,
|
||||
- Python Projects
|
||||
- Extensions for TurboWarp/PenguinMod
|
||||
- 3D rendering
|
||||
- and a lot more stuff!
|
||||
You can see me on [Tiktok](https://tiktok.com/@koffeejava
|
||||
), [GitHub](https://github.com/KoffeeJava), and at my discord server!
|
||||
|
||||
[](https://discord.gg/JpEQJkyRgX)
|
||||
|
||||
> Add Markdown syntax content to file `_tabs/about.md`{: .filepath } and it will show up on this page.
|
||||
{: .prompt-tip }
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
layout: archives
|
||||
icon: fas fa-archive
|
||||
order: 3
|
||||
---
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
layout: categories
|
||||
icon: fas fa-stream
|
||||
order: 1
|
||||
---
|
||||
12
_tabs/posts.md
Normal file
@@ -0,0 +1,12 @@
|
||||
---
|
||||
# the default layout is 'page'
|
||||
icon: fas fa-blog
|
||||
order: 4
|
||||
---
|
||||
<ul>
|
||||
{% for post in site.posts %}
|
||||
<li>
|
||||
<a href="{{ post.url }}">{{ post.title }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
16
_tabs/projects.md
Normal file
@@ -0,0 +1,16 @@
|
||||
---
|
||||
# the default layout is 'page'
|
||||
icon: fas fa-solid fa-code
|
||||
order: 4
|
||||
---
|
||||
## [Tuxtility](https://github.com/KoffeeJava/Tuxtility)
|
||||
Tuxtility is an extension for TurboWarp/TurboWarp based scratch mods that add a new dimension of web utilities.
|
||||
|
||||
## [Wfetch](/wfetch)
|
||||
An weather utility for your terminal!
|
||||
|
||||
## [KPAW (Deprecated)](https://github.com/KoffeeJava/Koffees-PenguinMod-API-Wrapper)
|
||||
Simple API wrapper for penguin mod. Use Macaroni since this is deprecated.
|
||||
|
||||
## [Macaroni](/macaroni)
|
||||
An python API wrapper for PenguinMod!
|
||||
30
_tabs/random.md
Normal file
@@ -0,0 +1,30 @@
|
||||
---
|
||||
# the default layout is 'page'
|
||||
icon: fas fa-solid fa-globe
|
||||
order: 4
|
||||
---
|
||||
This is where I put random stuff I find on the internet!
|
||||
Hopefully you may find some of these cool!
|
||||
|
||||
## [Limes.pink](https://limes.pink)
|
||||
a cool website with a lot fun stuff!
|
||||
|
||||
## [How Linux Works](https://ia904605.us.archive.org/10/items/LinuxLibgen/203.How%20Linux%20Works%3A%20What%20Every%20Superuser%20Should%20Know.pdf)
|
||||
A useful book about Linux.
|
||||
|
||||
## [Z Library](https://1lib.sk/)
|
||||
A cool book library
|
||||
|
||||
## [FreeDNS](https://freedns.afraid.org/)
|
||||
A place with subdomains with a **LOT** of domains to choose from!
|
||||
|
||||
## [MIT OCW](https://ocw.mit.edu/)
|
||||
Free courses from MIT! Video lectures is at their [yt](https://www.youtube.com/@mitocw)!
|
||||
|
||||
## [The Gallery of Babel](https://www.galleryofbabel.com/)
|
||||
A gallery of every image in existance!
|
||||
|
||||
## [Convert](https://convert.to.it)
|
||||
Convert anything!* Yes. **ANYTHING**
|
||||
|
||||
*Almost anything.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
layout: tags
|
||||
icon: fas fa-tags
|
||||
order: 2
|
||||
---
|
||||
@@ -3,7 +3,4 @@ layout: page
|
||||
title: "404: Page not found"
|
||||
permalink: /404.html
|
||||
---
|
||||
|
||||
{% include lang.html %}
|
||||
|
||||
<p class="lead">{{ site.data.locales[lang].not_found.statement }}</p>
|
||||
<img src="/assets/images/error.png" alt="Oh No! A 404 Error!">
|
||||
|
||||
701
assets/img/con.svg
Normal file
@@ -0,0 +1,701 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="210mm"
|
||||
height="297mm"
|
||||
viewBox="0 0 210 297"
|
||||
version="1.1"
|
||||
id="svg1"
|
||||
inkscape:version="1.4.3 (0d15f75042, 2025-12-25)"
|
||||
sodipodi:docname="Macaroni-Consept.svg"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview1"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:showpageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#505050"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:zoom="0.98"
|
||||
inkscape:cx="387.2449"
|
||||
inkscape:cy="885.20408"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1012"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<defs
|
||||
id="defs1">
|
||||
<rect
|
||||
x="20.408163"
|
||||
y="6.122449"
|
||||
width="781.63266"
|
||||
height="71.428572"
|
||||
id="rect14" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect9"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,4.9946854,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,3.3747874,0,1 @ F,0,0,1,0,7.8565061,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect3"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,13.500784,0,1 @ F,0,0,1,0,13.500784,0,1 @ F,0,0,1,0,13.500784,0,1 @ F,0,0,1,0,13.500784,0,1 @ F,0,0,1,0,13.500784,0,1 @ F,0,0,1,0,13.500784,0,1"
|
||||
radius="36"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect3-7"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,12.7,0,1 @ F,0,0,1,0,12.7,0,1 @ F,0,0,1,0,12.7,0,1 @ F,0,0,1,0,12.7,0,1 @ F,0,0,1,0,12.7,0,1 @ F,0,0,1,0,12.7,0,1"
|
||||
radius="48"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-9"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-3"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-3-1"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-2"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-9-3"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-3-9"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-3-1-7"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-3-9-1"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-3-1-7-9"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-36"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-9-1"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-36-5"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-36-6"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-36-5-9"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-9-1-3"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-36-6-4"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-36-5-9-3"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-9-1-3-0"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-9-1-3-0-4"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-3-1-7-9-9"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-3-9-1-2"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-3-9-1-2-8"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
<inkscape:path-effect
|
||||
effect="fillet_chamfer"
|
||||
id="path-effect4-3-1-7-9-9-7"
|
||||
is_visible="true"
|
||||
lpeversion="1"
|
||||
nodesatellites_param="F,0,0,1,0,16.229396,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,15.469293,0,1 @ F,0,0,1,0,13.879346,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,12.407886,0,1"
|
||||
radius="0"
|
||||
unit="px"
|
||||
method="auto"
|
||||
mode="F"
|
||||
chamfer_steps="1"
|
||||
flexible="false"
|
||||
use_knot_distance="true"
|
||||
apply_no_radius="true"
|
||||
apply_with_radius="true"
|
||||
only_selected="false"
|
||||
hide_knots="false" />
|
||||
</defs>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1">
|
||||
<g
|
||||
id="g6"
|
||||
inkscape:label="Yellow-M"
|
||||
transform="translate(-4.3197278,25.648385)">
|
||||
<path
|
||||
id="path1-6"
|
||||
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#fdff6f;fill-opacity:1;stroke:none;stroke-width:0.999996;stroke-opacity:1;enable-background:accumulate;stop-color:#000000"
|
||||
d="M 161.44417,131.80435 C 151.3947,85.790202 110.04868,50.881538 61.211583,50.881538 c -49.099693,0 -90.626349,35.28507 -100.390496,81.666012 -1.758282,8.35206 4.907603,15.32187 13.451058,15.32187 h 37.328971 c 7.665351,0 14.577759,-6.44867 18.427349,-13.02275 6.209425,-10.60404 17.692842,-17.53973 31.183118,-17.53973 14.027852,0 25.886458,7.49948 31.901338,18.82471 3.198579,6.0225 9.386559,11.73777 16.239249,11.73777 h 38.04028 c 8.96325,0 15.96216,-7.31762 14.05172,-16.06507 z"
|
||||
transform="matrix(0.23846251,0,0,0.23846251,99.292967,-6.4906948)"
|
||||
inkscape:path-effect="#path-effect4-3"
|
||||
inkscape:original-d="M 163.62185,147.86942 C 160.68535,94.165708 115.59266,50.881538 61.211583,50.881538 c -54.3810806,0 -99.472321,43.28417 -102.408731,96.987882 h 66.67761 c 2.58389,-17.58858 17.28049,-30.56248 35.731121,-30.56248 18.45062,0 33.1485,12.9739 35.7327,30.56248 z" />
|
||||
<path
|
||||
id="path1-6-9"
|
||||
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#fdff6f;fill-opacity:1;stroke:none;stroke-width:0.999996;stroke-opacity:1;enable-background:accumulate;stop-color:#000000"
|
||||
d="M 161.44417,131.80435 C 151.3947,85.790202 110.04868,50.881538 61.211583,50.881538 c -49.099693,0 -90.626349,35.28507 -100.390496,81.666012 -1.758282,8.35206 4.907603,15.32187 13.451058,15.32187 h 37.328971 c 7.665351,0 14.577759,-6.44867 18.427349,-13.02275 6.209425,-10.60404 17.692842,-17.53973 31.183118,-17.53973 14.027852,0 25.886458,7.49948 31.901338,18.82471 3.198579,6.0225 9.386559,11.73777 16.239249,11.73777 h 38.04028 c 8.96325,0 15.96216,-7.31762 14.05172,-16.06507 z"
|
||||
transform="matrix(0.23846251,0,0,0.23846251,133.08404,-6.5068934)"
|
||||
inkscape:path-effect="#path-effect4-3-1"
|
||||
inkscape:original-d="M 163.62185,147.86942 C 160.68535,94.165708 115.59266,50.881538 61.211583,50.881538 c -54.3810806,0 -99.472321,43.28417 -102.408731,96.987882 h 66.67761 c 2.58389,-17.58858 17.28049,-30.56248 35.731121,-30.56248 18.45062,0 33.1485,12.9739 35.7327,30.56248 z" />
|
||||
</g>
|
||||
<g
|
||||
id="g7"
|
||||
inkscape:label="python-M-yob"
|
||||
transform="translate(-3.239796,18.89881)">
|
||||
<path
|
||||
id="path1-6-1"
|
||||
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#6f74ff;fill-opacity:1;stroke:none;stroke-width:0.999996;stroke-opacity:1;enable-background:accumulate;stop-color:#000000"
|
||||
d="M 161.44417,131.80435 C 151.3947,85.790202 110.04868,50.881538 61.211583,50.881538 c -49.099693,0 -90.626349,35.28507 -100.390496,81.666012 -1.758282,8.35206 4.907603,15.32187 13.451058,15.32187 h 37.328971 c 7.665351,0 14.577759,-6.44867 18.427349,-13.02275 6.209425,-10.60404 17.692842,-17.53973 31.183118,-17.53973 14.027852,0 25.886458,7.49948 31.901338,18.82471 3.198579,6.0225 9.386559,11.73777 16.239249,11.73777 h 38.04028 c 8.96325,0 15.96216,-7.31762 14.05172,-16.06507 z"
|
||||
transform="matrix(0.23846251,0,0,0.23846251,101.37723,54.660453)"
|
||||
inkscape:path-effect="#path-effect4-3-9"
|
||||
inkscape:original-d="M 163.62185,147.86942 C 160.68535,94.165708 115.59266,50.881538 61.211583,50.881538 c -54.3810806,0 -99.472321,43.28417 -102.408731,96.987882 h 66.67761 c 2.58389,-17.58858 17.28049,-30.56248 35.731121,-30.56248 18.45062,0 33.1485,12.9739 35.7327,30.56248 z" />
|
||||
<path
|
||||
id="path1-6-9-2"
|
||||
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#fdff6f;fill-opacity:1;stroke:none;stroke-width:0.999996;stroke-opacity:1;enable-background:accumulate;stop-color:#000000"
|
||||
d="M 161.44417,131.80435 C 151.3947,85.790202 110.04868,50.881538 61.211583,50.881538 c -49.099693,0 -90.626349,35.28507 -100.390496,81.666012 -1.758282,8.35206 4.907603,15.32187 13.451058,15.32187 h 37.328971 c 7.665351,0 14.577759,-6.44867 18.427349,-13.02275 6.209425,-10.60404 17.692842,-17.53973 31.183118,-17.53973 14.027852,0 25.886458,7.49948 31.901338,18.82471 3.198579,6.0225 9.386559,11.73777 16.239249,11.73777 h 38.04028 c 8.96325,0 15.96216,-7.31762 14.05172,-16.06507 z"
|
||||
transform="matrix(0.23846251,0,0,0.23846251,135.1683,54.644254)"
|
||||
inkscape:path-effect="#path-effect4-3-1-7"
|
||||
inkscape:original-d="M 163.62185,147.86942 C 160.68535,94.165708 115.59266,50.881538 61.211583,50.881538 c -54.3810806,0 -99.472321,43.28417 -102.408731,96.987882 h 66.67761 c 2.58389,-17.58858 17.28049,-30.56248 35.731121,-30.56248 18.45062,0 33.1485,12.9739 35.7327,30.56248 z" />
|
||||
</g>
|
||||
<g
|
||||
id="g8"
|
||||
inkscape:label="python-M-boy"
|
||||
transform="translate(-1.8898809,16.468963)">
|
||||
<path
|
||||
id="path1-6-9-2-4"
|
||||
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#fdff6f;fill-opacity:1;stroke:none;stroke-width:0.999996;stroke-opacity:1;enable-background:accumulate;stop-color:#000000"
|
||||
d="M 161.44417,131.80435 C 151.3947,85.790202 110.04868,50.881538 61.211583,50.881538 c -49.099693,0 -90.626349,35.28507 -100.390496,81.666012 -1.758282,8.35206 4.907603,15.32187 13.451058,15.32187 h 37.328971 c 7.665351,0 14.577759,-6.44867 18.427349,-13.02275 6.209425,-10.60404 17.692842,-17.53973 31.183118,-17.53973 14.027852,0 25.886458,7.49948 31.901338,18.82471 3.198579,6.0225 9.386559,11.73777 16.239249,11.73777 h 38.04028 c 8.96325,0 15.96216,-7.31762 14.05172,-16.06507 z"
|
||||
transform="matrix(0.23846251,0,0,0.23846251,133.33242,112.72299)"
|
||||
inkscape:path-effect="#path-effect4-3-1-7-9"
|
||||
inkscape:original-d="M 163.62185,147.86942 C 160.68535,94.165708 115.59266,50.881538 61.211583,50.881538 c -54.3810806,0 -99.472321,43.28417 -102.408731,96.987882 h 66.67761 c 2.58389,-17.58858 17.28049,-30.56248 35.731121,-30.56248 18.45062,0 33.1485,12.9739 35.7327,30.56248 z" />
|
||||
<path
|
||||
id="path1-6-1-8"
|
||||
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#6f74ff;fill-opacity:1;stroke:none;stroke-width:0.999996;stroke-opacity:1;enable-background:accumulate;stop-color:#000000"
|
||||
d="M 161.44417,131.80435 C 151.3947,85.790202 110.04868,50.881538 61.211583,50.881538 c -49.099693,0 -90.626349,35.28507 -100.390496,81.666012 -1.758282,8.35206 4.907603,15.32187 13.451058,15.32187 h 37.328971 c 7.665351,0 14.577759,-6.44867 18.427349,-13.02275 6.209425,-10.60404 17.692842,-17.53973 31.183118,-17.53973 14.027852,0 25.886458,7.49948 31.901338,18.82471 3.198579,6.0225 9.386559,11.73777 16.239249,11.73777 h 38.04028 c 8.96325,0 15.96216,-7.31762 14.05172,-16.06507 z"
|
||||
transform="matrix(0.23846251,0,0,0.23846251,99.541349,112.73919)"
|
||||
inkscape:path-effect="#path-effect4-3-9-1"
|
||||
inkscape:original-d="M 163.62185,147.86942 C 160.68535,94.165708 115.59266,50.881538 61.211583,50.881538 c -54.3810806,0 -99.472321,43.28417 -102.408731,96.987882 h 66.67761 c 2.58389,-17.58858 17.28049,-30.56248 35.731121,-30.56248 18.45062,0 33.1485,12.9739 35.7327,30.56248 z" />
|
||||
</g>
|
||||
<g
|
||||
id="g4"
|
||||
inkscape:label="Yellow-UD"
|
||||
transform="translate(-0.64795883,13.488351)">
|
||||
<path
|
||||
id="path1"
|
||||
style="baseline-shift:baseline;display:inline;overflow:visible;opacity:1;vector-effect:none;fill:#fdff6f;fill-opacity:1;stroke:none;stroke-width:0.999996;stroke-opacity:1;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
||||
d="M 161.44417,131.80435 C 151.3947,85.790202 110.04868,50.881538 61.211583,50.881538 c -49.099693,0 -90.626349,35.28507 -100.390496,81.666012 -1.758282,8.35206 4.907603,15.32187 13.451058,15.32187 h 37.328971 c 7.665351,0 14.577759,-6.44867 18.427349,-13.02275 6.209425,-10.60404 17.692842,-17.53973 31.183118,-17.53973 14.027852,0 25.886458,7.49948 31.901338,18.82471 3.198579,6.0225 9.386559,11.73777 16.239249,11.73777 h 38.04028 c 8.96325,0 15.96216,-7.31762 14.05172,-16.06507 z"
|
||||
transform="matrix(0.23846251,0,0,0.23846251,17.685004,-3.9753321)"
|
||||
inkscape:path-effect="#path-effect4"
|
||||
inkscape:original-d="M 163.62185,147.86942 C 160.68535,94.165708 115.59266,50.881538 61.211583,50.881538 c -54.3810806,0 -99.472321,43.28417 -102.408731,96.987882 h 66.67761 c 2.58389,-17.58858 17.28049,-30.56248 35.731121,-30.56248 18.45062,0 33.1485,12.9739 35.7327,30.56248 z" />
|
||||
<path
|
||||
id="path1-7"
|
||||
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#fdff6f;fill-opacity:1;stroke:none;stroke-width:0.999996;stroke-opacity:1;enable-background:accumulate;stop-color:#000000"
|
||||
d="M 161.44417,131.80435 C 151.3947,85.790202 110.04868,50.881538 61.211583,50.881538 c -49.099693,0 -90.626349,35.28507 -100.390496,81.666012 -1.758282,8.35206 4.907603,15.32187 13.451058,15.32187 h 37.328971 c 7.665351,0 14.577759,-6.44867 18.427349,-13.02275 6.209425,-10.60404 17.692842,-17.53973 31.183118,-17.53973 14.027852,0 25.886458,7.49948 31.901338,18.82471 3.198579,6.0225 9.386559,11.73777 16.239249,11.73777 h 38.04028 c 8.96325,0 15.96216,-7.31762 14.05172,-16.06507 z"
|
||||
transform="matrix(-0.23846251,0,0,-0.23846251,63.306281,66.331597)"
|
||||
inkscape:path-effect="#path-effect4-9"
|
||||
inkscape:original-d="M 163.62185,147.86942 C 160.68535,94.165708 115.59266,50.881538 61.211583,50.881538 c -54.3810806,0 -99.472321,43.28417 -102.408731,96.987882 h 66.67761 c 2.58389,-17.58858 17.28049,-30.56248 35.731121,-30.56248 18.45062,0 33.1485,12.9739 35.7327,30.56248 z" />
|
||||
</g>
|
||||
<g
|
||||
id="g4-3"
|
||||
inkscape:label="Yellow-Smile"
|
||||
transform="matrix(0.70296534,0,0,0.70296534,8.3400723,133.25065)">
|
||||
<path
|
||||
id="path1-2"
|
||||
style="baseline-shift:baseline;display:inline;overflow:visible;opacity:1;vector-effect:none;fill:#fdff6f;fill-opacity:1;stroke:none;stroke-width:0.999996;stroke-opacity:1;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
||||
d="M 161.44417,131.80435 C 151.3947,85.790202 110.04868,50.881538 61.211583,50.881538 c -49.099693,0 -90.626349,35.28507 -100.390496,81.666012 -1.758282,8.35206 4.907603,15.32187 13.451058,15.32187 h 37.328971 c 7.665351,0 14.577759,-6.44867 18.427349,-13.02275 6.209425,-10.60404 17.692842,-17.53973 31.183118,-17.53973 14.027852,0 25.886458,7.49948 31.901338,18.82471 3.198579,6.0225 9.386559,11.73777 16.239249,11.73777 h 38.04028 c 8.96325,0 15.96216,-7.31762 14.05172,-16.06507 z"
|
||||
transform="matrix(0.23846251,0,0,0.23846251,9.3155312,-8.8350261)"
|
||||
inkscape:path-effect="#path-effect4-36"
|
||||
inkscape:original-d="M 163.62185,147.86942 C 160.68535,94.165708 115.59266,50.881538 61.211583,50.881538 c -54.3810806,0 -99.472321,43.28417 -102.408731,96.987882 h 66.67761 c 2.58389,-17.58858 17.28049,-30.56248 35.731121,-30.56248 18.45062,0 33.1485,12.9739 35.7327,30.56248 z" />
|
||||
<path
|
||||
id="path1-2-7"
|
||||
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#fdff6f;fill-opacity:1;stroke:none;stroke-width:0.999996;stroke-opacity:1;enable-background:accumulate;stop-color:#000000"
|
||||
d="M 161.44417,131.80435 C 151.3947,85.790202 110.04868,50.881538 61.211583,50.881538 c -49.099693,0 -90.626349,35.28507 -100.390496,81.666012 -1.758282,8.35206 4.907603,15.32187 13.451058,15.32187 h 37.328971 c 7.665351,0 14.577759,-6.44867 18.427349,-13.02275 6.209425,-10.60404 17.692842,-17.53973 31.183118,-17.53973 14.027852,0 25.886458,7.49948 31.901338,18.82471 3.198579,6.0225 9.386559,11.73777 16.239249,11.73777 h 38.04028 c 8.96325,0 15.96216,-7.31762 14.05172,-16.06507 z"
|
||||
transform="matrix(0.23846251,0,0,0.23846251,58.609015,-8.727025)"
|
||||
inkscape:path-effect="#path-effect4-36-5"
|
||||
inkscape:original-d="M 163.62185,147.86942 C 160.68535,94.165708 115.59266,50.881538 61.211583,50.881538 c -54.3810806,0 -99.472321,43.28417 -102.408731,96.987882 h 66.67761 c 2.58389,-17.58858 17.28049,-30.56248 35.731121,-30.56248 18.45062,0 33.1485,12.9739 35.7327,30.56248 z" />
|
||||
<path
|
||||
id="path1-7-0"
|
||||
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#fdff6f;fill-opacity:1;stroke:none;stroke-width:0.999996;stroke-opacity:1;enable-background:accumulate;stop-color:#000000"
|
||||
d="M 161.44417,131.80435 C 151.3947,85.790202 110.04868,50.881538 61.211583,50.881538 c -49.099693,0 -90.626349,35.28507 -100.390496,81.666012 -1.758282,8.35206 4.907603,15.32187 13.451058,15.32187 h 37.328971 c 7.665351,0 14.577759,-6.44867 18.427349,-13.02275 6.209425,-10.60404 17.692842,-17.53973 31.183118,-17.53973 14.027852,0 25.886458,7.49948 31.901338,18.82471 3.198579,6.0225 9.386559,11.73777 16.239249,11.73777 h 38.04028 c 8.96325,0 15.96216,-7.31762 14.05172,-16.06507 z"
|
||||
transform="matrix(-0.23846251,0,0,-0.23846251,63.306281,66.331597)"
|
||||
inkscape:path-effect="#path-effect4-9-1"
|
||||
inkscape:original-d="M 163.62185,147.86942 C 160.68535,94.165708 115.59266,50.881538 61.211583,50.881538 c -54.3810806,0 -99.472321,43.28417 -102.408731,96.987882 h 66.67761 c 2.58389,-17.58858 17.28049,-30.56248 35.731121,-30.56248 18.45062,0 33.1485,12.9739 35.7327,30.56248 z" />
|
||||
</g>
|
||||
<g
|
||||
id="g4-3-5"
|
||||
inkscape:label="Yellow-Smile-Python-byb"
|
||||
transform="matrix(0.70296534,0,0,0.70296534,7.7826827,179.49334)">
|
||||
<path
|
||||
id="path1-2-2"
|
||||
style="baseline-shift:baseline;display:inline;overflow:visible;opacity:1;vector-effect:none;fill:#6f74ff;fill-opacity:1;stroke:none;stroke-width:0.999996;stroke-opacity:1;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
||||
d="M 161.44417,131.80435 C 151.3947,85.790202 110.04868,50.881538 61.211583,50.881538 c -49.099693,0 -90.626349,35.28507 -100.390496,81.666012 -1.758282,8.35206 4.907603,15.32187 13.451058,15.32187 h 37.328971 c 7.665351,0 14.577759,-6.44867 18.427349,-13.02275 6.209425,-10.60404 17.692842,-17.53973 31.183118,-17.53973 14.027852,0 25.886458,7.49948 31.901338,18.82471 3.198579,6.0225 9.386559,11.73777 16.239249,11.73777 h 38.04028 c 8.96325,0 15.96216,-7.31762 14.05172,-16.06507 z"
|
||||
transform="matrix(0.23846251,0,0,0.23846251,9.3155312,-8.8350261)"
|
||||
inkscape:path-effect="#path-effect4-36-6"
|
||||
inkscape:original-d="M 163.62185,147.86942 C 160.68535,94.165708 115.59266,50.881538 61.211583,50.881538 c -54.3810806,0 -99.472321,43.28417 -102.408731,96.987882 h 66.67761 c 2.58389,-17.58858 17.28049,-30.56248 35.731121,-30.56248 18.45062,0 33.1485,12.9739 35.7327,30.56248 z" />
|
||||
<path
|
||||
id="path1-2-7-5"
|
||||
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#6f74ff;fill-opacity:1;stroke:none;stroke-width:0.999996;stroke-opacity:1;enable-background:accumulate;stop-color:#000000"
|
||||
d="M 161.44417,131.80435 C 151.3947,85.790202 110.04868,50.881538 61.211583,50.881538 c -49.099693,0 -90.626349,35.28507 -100.390496,81.666012 -1.758282,8.35206 4.907603,15.32187 13.451058,15.32187 h 37.328971 c 7.665351,0 14.577759,-6.44867 18.427349,-13.02275 6.209425,-10.60404 17.692842,-17.53973 31.183118,-17.53973 14.027852,0 25.886458,7.49948 31.901338,18.82471 3.198579,6.0225 9.386559,11.73777 16.239249,11.73777 h 38.04028 c 8.96325,0 15.96216,-7.31762 14.05172,-16.06507 z"
|
||||
transform="matrix(0.23846251,0,0,0.23846251,58.609015,-8.727025)"
|
||||
inkscape:path-effect="#path-effect4-36-5-9"
|
||||
inkscape:original-d="M 163.62185,147.86942 C 160.68535,94.165708 115.59266,50.881538 61.211583,50.881538 c -54.3810806,0 -99.472321,43.28417 -102.408731,96.987882 h 66.67761 c 2.58389,-17.58858 17.28049,-30.56248 35.731121,-30.56248 18.45062,0 33.1485,12.9739 35.7327,30.56248 z" />
|
||||
<path
|
||||
id="path1-7-0-4"
|
||||
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#fdff6f;fill-opacity:1;stroke:none;stroke-width:0.999996;stroke-opacity:1;enable-background:accumulate;stop-color:#000000"
|
||||
d="M 161.44417,131.80435 C 151.3947,85.790202 110.04868,50.881538 61.211583,50.881538 c -49.099693,0 -90.626349,35.28507 -100.390496,81.666012 -1.758282,8.35206 4.907603,15.32187 13.451058,15.32187 h 37.328971 c 7.665351,0 14.577759,-6.44867 18.427349,-13.02275 6.209425,-10.60404 17.692842,-17.53973 31.183118,-17.53973 14.027852,0 25.886458,7.49948 31.901338,18.82471 3.198579,6.0225 9.386559,11.73777 16.239249,11.73777 h 38.04028 c 8.96325,0 15.96216,-7.31762 14.05172,-16.06507 z"
|
||||
transform="matrix(-0.23846251,0,0,-0.23846251,63.306281,66.331597)"
|
||||
inkscape:path-effect="#path-effect4-9-1-3"
|
||||
inkscape:original-d="M 163.62185,147.86942 C 160.68535,94.165708 115.59266,50.881538 61.211583,50.881538 c -54.3810806,0 -99.472321,43.28417 -102.408731,96.987882 h 66.67761 c 2.58389,-17.58858 17.28049,-30.56248 35.731121,-30.56248 18.45062,0 33.1485,12.9739 35.7327,30.56248 z" />
|
||||
</g>
|
||||
<g
|
||||
id="g4-3-5-6"
|
||||
inkscape:label="Yellow-Smile-Python-yby"
|
||||
transform="matrix(0.70296534,0,0,0.70296534,7.0699278,221.74029)">
|
||||
<path
|
||||
id="path1-2-2-8"
|
||||
style="baseline-shift:baseline;display:inline;overflow:visible;opacity:1;vector-effect:none;fill:#fdff6f;fill-opacity:1;stroke:none;stroke-width:0.999996;stroke-opacity:1;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
||||
d="M 161.44417,131.80435 C 151.3947,85.790202 110.04868,50.881538 61.211583,50.881538 c -49.099693,0 -90.626349,35.28507 -100.390496,81.666012 -1.758282,8.35206 4.907603,15.32187 13.451058,15.32187 h 37.328971 c 7.665351,0 14.577759,-6.44867 18.427349,-13.02275 6.209425,-10.60404 17.692842,-17.53973 31.183118,-17.53973 14.027852,0 25.886458,7.49948 31.901338,18.82471 3.198579,6.0225 9.386559,11.73777 16.239249,11.73777 h 38.04028 c 8.96325,0 15.96216,-7.31762 14.05172,-16.06507 z"
|
||||
transform="matrix(0.23846251,0,0,0.23846251,9.3155312,-8.8350261)"
|
||||
inkscape:path-effect="#path-effect4-36-6-4"
|
||||
inkscape:original-d="M 163.62185,147.86942 C 160.68535,94.165708 115.59266,50.881538 61.211583,50.881538 c -54.3810806,0 -99.472321,43.28417 -102.408731,96.987882 h 66.67761 c 2.58389,-17.58858 17.28049,-30.56248 35.731121,-30.56248 18.45062,0 33.1485,12.9739 35.7327,30.56248 z" />
|
||||
<path
|
||||
id="path1-2-7-5-8"
|
||||
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#fdff6f;fill-opacity:1;stroke:none;stroke-width:0.999996;stroke-opacity:1;enable-background:accumulate;stop-color:#000000"
|
||||
d="M 161.44417,131.80435 C 151.3947,85.790202 110.04868,50.881538 61.211583,50.881538 c -49.099693,0 -90.626349,35.28507 -100.390496,81.666012 -1.758282,8.35206 4.907603,15.32187 13.451058,15.32187 h 37.328971 c 7.665351,0 14.577759,-6.44867 18.427349,-13.02275 6.209425,-10.60404 17.692842,-17.53973 31.183118,-17.53973 14.027852,0 25.886458,7.49948 31.901338,18.82471 3.198579,6.0225 9.386559,11.73777 16.239249,11.73777 h 38.04028 c 8.96325,0 15.96216,-7.31762 14.05172,-16.06507 z"
|
||||
transform="matrix(0.23846251,0,0,0.23846251,58.609015,-8.727025)"
|
||||
inkscape:path-effect="#path-effect4-36-5-9-3"
|
||||
inkscape:original-d="M 163.62185,147.86942 C 160.68535,94.165708 115.59266,50.881538 61.211583,50.881538 c -54.3810806,0 -99.472321,43.28417 -102.408731,96.987882 h 66.67761 c 2.58389,-17.58858 17.28049,-30.56248 35.731121,-30.56248 18.45062,0 33.1485,12.9739 35.7327,30.56248 z" />
|
||||
<path
|
||||
id="path1-7-0-4-4"
|
||||
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#6f74ff;fill-opacity:1;stroke:none;stroke-width:0.999996;stroke-opacity:1;enable-background:accumulate;stop-color:#000000"
|
||||
d="M 161.44417,131.80435 C 151.3947,85.790202 110.04868,50.881538 61.211583,50.881538 c -49.099693,0 -90.626349,35.28507 -100.390496,81.666012 -1.758282,8.35206 4.907603,15.32187 13.451058,15.32187 h 37.328971 c 7.665351,0 14.577759,-6.44867 18.427349,-13.02275 6.209425,-10.60404 17.692842,-17.53973 31.183118,-17.53973 14.027852,0 25.886458,7.49948 31.901338,18.82471 3.198579,6.0225 9.386559,11.73777 16.239249,11.73777 h 38.04028 c 8.96325,0 15.96216,-7.31762 14.05172,-16.06507 z"
|
||||
transform="matrix(-0.23846251,0,0,-0.23846251,63.306281,66.331597)"
|
||||
inkscape:path-effect="#path-effect4-9-1-3-0"
|
||||
inkscape:original-d="M 163.62185,147.86942 C 160.68535,94.165708 115.59266,50.881538 61.211583,50.881538 c -54.3810806,0 -99.472321,43.28417 -102.408731,96.987882 h 66.67761 c 2.58389,-17.58858 17.28049,-30.56248 35.731121,-30.56248 18.45062,0 33.1485,12.9739 35.7327,30.56248 z" />
|
||||
</g>
|
||||
<g
|
||||
id="g5"
|
||||
inkscape:label="python-UD"
|
||||
transform="translate(-0.64795883,13.488351)">
|
||||
<path
|
||||
id="path1-9"
|
||||
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#6f74ff;fill-opacity:1;stroke:none;stroke-width:0.999996;stroke-opacity:1;enable-background:accumulate;stop-color:#000000"
|
||||
d="M 161.44417,131.80435 C 151.3947,85.790202 110.04868,50.881538 61.211583,50.881538 c -49.099693,0 -90.626349,35.28507 -100.390496,81.666012 -1.758282,8.35206 4.907603,15.32187 13.451058,15.32187 h 37.328971 c 7.665351,0 14.577759,-6.44867 18.427349,-13.02275 6.209425,-10.60404 17.692842,-17.53973 31.183118,-17.53973 14.027852,0 25.886458,7.49948 31.901338,18.82471 3.198579,6.0225 9.386559,11.73777 16.239249,11.73777 h 38.04028 c 8.96325,0 15.96216,-7.31762 14.05172,-16.06507 z"
|
||||
transform="matrix(0.23846251,0,0,0.23846251,17.704106,51.021082)"
|
||||
inkscape:path-effect="#path-effect4-2"
|
||||
inkscape:original-d="M 163.62185,147.86942 C 160.68535,94.165708 115.59266,50.881538 61.211583,50.881538 c -54.3810806,0 -99.472321,43.28417 -102.408731,96.987882 h 66.67761 c 2.58389,-17.58858 17.28049,-30.56248 35.731121,-30.56248 18.45062,0 33.1485,12.9739 35.7327,30.56248 z" />
|
||||
<path
|
||||
id="path1-7-2"
|
||||
style="baseline-shift:baseline;display:inline;overflow:visible;vector-effect:none;fill:#fdff6f;fill-opacity:1;stroke:none;stroke-width:0.999996;stroke-opacity:1;enable-background:accumulate;stop-color:#000000"
|
||||
d="M 161.44417,131.80435 C 151.3947,85.790202 110.04868,50.881538 61.211583,50.881538 c -49.099693,0 -90.626349,35.28507 -100.390496,81.666012 -1.758282,8.35206 4.907603,15.32187 13.451058,15.32187 h 37.328971 c 7.665351,0 14.577759,-6.44867 18.427349,-13.02275 6.209425,-10.60404 17.692842,-17.53973 31.183118,-17.53973 14.027852,0 25.886458,7.49948 31.901338,18.82471 3.198579,6.0225 9.386559,11.73777 16.239249,11.73777 h 38.04028 c 8.96325,0 15.96216,-7.31762 14.05172,-16.06507 z"
|
||||
transform="matrix(-0.23846251,0,0,-0.23846251,63.325381,121.32801)"
|
||||
inkscape:path-effect="#path-effect4-9-3"
|
||||
inkscape:original-d="M 163.62185,147.86942 C 160.68535,94.165708 115.59266,50.881538 61.211583,50.881538 c -54.3810806,0 -99.472321,43.28417 -102.408731,96.987882 h 66.67761 c 2.58389,-17.58858 17.28049,-30.56248 35.731121,-30.56248 18.45062,0 33.1485,12.9739 35.7327,30.56248 z" />
|
||||
</g>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-size:12.7px;writing-mode:lr-tb;direction:ltr;white-space:pre;inline-size:97.7436;fill:#000000;fill-opacity:1;stroke:none;stroke-width:66.4255;stroke-dasharray:none;stroke-opacity:1"
|
||||
x="113.66283"
|
||||
y="285.37201"
|
||||
id="text13"
|
||||
transform="translate(17.818878,8.9094388)"><tspan
|
||||
x="113.66283"
|
||||
y="285.37201"
|
||||
id="tspan5"><tspan
|
||||
style="font-family:Hack;-inkscape-font-specification:Hack"
|
||||
id="tspan4">KoffeeJava</tspan></tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
transform="scale(0.26458333)"
|
||||
id="text14"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:48px;font-family:Hack;-inkscape-font-specification:Hack;writing-mode:lr-tb;direction:ltr;white-space:pre;shape-inside:url(#rect14);fill:#000000;fill-opacity:1;stroke:none;stroke-width:251.057;stroke-dasharray:none;stroke-opacity:1"><tspan
|
||||
x="20.408203"
|
||||
y="48.591797"
|
||||
id="tspan6">MacaroniPM Consept Logo</tspan></text>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 40 KiB |
BIN
assets/img/favicons/apple-touch-icon.png
Executable file → Normal file
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 4.8 KiB |
BIN
assets/img/favicons/favicon-96x96.png
Executable file → Normal file
|
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 3.4 KiB |
BIN
assets/img/favicons/favicon.ico
Executable file → Normal file
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
16
assets/img/favicons/favicon.svg
Executable file → Normal file
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 2.8 KiB |
25
assets/img/favicons/site.webmanifest
Executable file → Normal file
@@ -1,28 +1,21 @@
|
||||
---
|
||||
layout: compress
|
||||
---
|
||||
|
||||
{% assign favicon_path = "/assets/img/favicons" | relative_url %}
|
||||
|
||||
{
|
||||
"name": "{{ site.title }}",
|
||||
"short_name": "{{ site.title }}",
|
||||
"description": "{{ site.description }}",
|
||||
"name": "Koffee's Corner",
|
||||
"short_name": "KC",
|
||||
"icons": [
|
||||
{
|
||||
"src": "{{ favicon_path }}/web-app-manifest-192x192.png",
|
||||
"src": "/assets/images/web-app-manifest-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
},
|
||||
{
|
||||
"src": "{{ favicon_path }}/web-app-manifest-512x512.png",
|
||||
"src": "/assets/images/web-app-manifest-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
}
|
||||
],
|
||||
"start_url": "{{ '/index.html' | relative_url }}",
|
||||
"theme_color": "#2a1e6b",
|
||||
"background_color": "#ffffff",
|
||||
"display": "fullscreen"
|
||||
"theme_color": "#5d0000",
|
||||
"background_color": "#620000",
|
||||
"display": "standalone"
|
||||
}
|
||||
BIN
assets/img/favicons/web-app-manifest-192x192.png
Executable file → Normal file
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 6.9 KiB |
BIN
assets/img/favicons/web-app-manifest-512x512.png
Executable file → Normal file
|
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 24 KiB |
BIN
assets/img/kj.jpg
Normal file
|
After Width: | Height: | Size: 205 KiB |
BIN
assets/img/kj.png
Normal file
|
After Width: | Height: | Size: 654 KiB |
BIN
assets/img/mac.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
assets/img/token/c1.png
Normal file
|
After Width: | Height: | Size: 464 KiB |
BIN
assets/img/token/c2.png
Normal file
|
After Width: | Height: | Size: 332 KiB |
BIN
assets/img/token/c3.png
Normal file
|
After Width: | Height: | Size: 346 KiB |
BIN
assets/img/token/f1.png
Normal file
|
After Width: | Height: | Size: 472 KiB |
BIN
assets/img/token/f2.png
Normal file
|
After Width: | Height: | Size: 389 KiB |
BIN
assets/img/token/f3.png
Normal file
|
After Width: | Height: | Size: 389 KiB |
@@ -1,5 +1,11 @@
|
||||
# Changelog
|
||||
|
||||
## [7.4.1](https://github.com/cotes2020/jekyll-theme-chirpy/compare/v7.4.0...v7.4.1) (2025-10-26)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* avoid duplicate base URL for homepage preview images ([#2568](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2568)) ([66bf232](https://github.com/cotes2020/jekyll-theme-chirpy/commit/66bf232951fbe752821b623dc1e7e4e2824c15bf))
|
||||
|
||||
## [7.4.0](https://github.com/cotes2020/jekyll-theme-chirpy/compare/v7.3.1...v7.4.0) (2025-10-19)
|
||||
|
||||
### Features
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
---
|
||||
layout: home
|
||||
# Index page
|
||||
---
|
||||
8
index.md
Normal file
@@ -0,0 +1,8 @@
|
||||
---
|
||||
layout: page
|
||||
title: NeoKoffee
|
||||
---
|
||||
Hello random people of the internet! This is my website where I put my projects and stuff I make!
|
||||
|
||||
## Suggestions
|
||||
Do you have a suggestion? Just email me via the email button *or* by your own ways with my email being `koffee@koffeejava.us` or `koffeejava@tuta.io`
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
Gem::Specification.new do |spec|
|
||||
spec.name = "jekyll-theme-chirpy"
|
||||
spec.version = "7.4.0"
|
||||
spec.version = "7.4.1"
|
||||
spec.authors = ["Cotes Chung"]
|
||||
spec.email = ["cotes.chung@gmail.com"]
|
||||
|
||||
|
||||
17
macaroni-token.md
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
layout: page
|
||||
title: MacaroniPM - How to get your PM token
|
||||
permalink: /macaroni/how-to-get-token/
|
||||
---
|
||||
> DO NOT SHARE YOUR TOKEN! PEOPLE CAN DO VERY BAD STUFF WITH IT AND CAN GET YOU BANNED!
|
||||
{: .prompt-danger }
|
||||
|
||||
## Firefox
|
||||

|
||||

|
||||

|
||||
|
||||
## Chrome/Chromium
|
||||

|
||||

|
||||

|
||||
138
macaroni.md
Normal file
@@ -0,0 +1,138 @@
|
||||
---
|
||||
layout: page
|
||||
title: MacaroniPM - A PenguinMod API Wrapper for Python.
|
||||
permalink: /macaroni/
|
||||
---
|
||||
<img src="/assets/img/mac.png" alt="Macaroni logo" style="width:200px;"/>{: .left }
|
||||
## Special Thanks
|
||||
I would Like to say thanks to ianyourgod on discord for showing me the [ApiModual](https://github.com/PenguinMod/PenguinMod-ApiModule) for JS! It really helped me make Macaroni better! I also would like to say thanks to [scratchattach](https://github.com/TimMcCool/scratchattach) for the idea to even make this.
|
||||
|
||||
|
||||
> MacaroniPM 1.x.xcode will mostly no longer work.
|
||||
{: .prompt-warning }
|
||||
|
||||
> Using MacaroniPM for spam in PenguinMod **will** get your ip blocked
|
||||
{: .prompt-warning }
|
||||
|
||||
> Do **NOT** share your token with anyone!
|
||||
{: .prompt-danger }
|
||||
|
||||
> It is recomended to set both PID (if doing something with projects) and Token.
|
||||
{: .prompt-tips }
|
||||
|
||||
## `macaronipm.SetToken()` and `macaronipm.TOKEN`
|
||||
Sets your token into the `macaronipm.TOKEN` variable.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
macaronipm.SetToken("ABCDEFG1234567")
|
||||
print(macaronipm.TOKEN)
|
||||
```
|
||||
|
||||
## `macaronipm.SetProject()` and `macaronipm.PID`
|
||||
Sets your project id into the `macaronipm.PID` variable.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
macaronipm.SetProject("ABCD1234")
|
||||
print(macaronipm.PID)
|
||||
```
|
||||
|
||||
## The Misc Catagory
|
||||
### `macaronipm.misc()['LoveToggle']()`
|
||||
Toggles the Love button that you see in projects.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
macaronipm.misc.LoveToggle("false")
|
||||
```
|
||||
|
||||
> The text "true" must be in quotes.
|
||||
{: .prompt-warning }
|
||||
|
||||
### `macaronipm.misc()['VoteToggle']()`
|
||||
Toggles the Check button that you see in projects.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
macaronipm.misc.VoteToggle("true")
|
||||
```
|
||||
|
||||
### `macaronipm.misc()['follow']()`
|
||||
Follows the set target.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
macaronipm.misc()['follow']("koffeejava")
|
||||
```
|
||||
|
||||
### `macaronipm.misc()['GetFeatured']`
|
||||
Grabs featured projects.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
print(macaronipm.misc()['GetFeatured'][3])
|
||||
```
|
||||
> This function returns in arrays, so you can do `macaronipm.misc()['GetProject']()[0])`
|
||||
{: .prompt-tips }
|
||||
|
||||
> This function is WIP! It is not recomended to use
|
||||
{: .prompt-warning }
|
||||
|
||||
## Project Catagory
|
||||
Call stuff about projects.
|
||||
|
||||
### `macaronipm.project()['GetThumbnail']()`
|
||||
Calling this gives you the thumbnail of the project you set.
|
||||
|
||||
> Calling this will return a dataURI.
|
||||
{: .prompt-info }
|
||||
|
||||
### `macaronipm.project()['GetMeta']()`
|
||||
Calling this gives you metadata about the selected project.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
print(macaronipm.project()['GetMeta']()['author']['username'])
|
||||
```
|
||||
|
||||
> `macaronipm.project()['GetMeta']()` outputs in json so you could do `macaronipm.project()['GetMeta']()['author']['username']`
|
||||
{: .prompt-tips }
|
||||
|
||||
## User catagory
|
||||
|
||||
### `macaronipm.user()['GetMeta']()`
|
||||
Calling this returns meta data about target user.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
print(macaronipm.user()['GetMeta']("koffeejava"))
|
||||
```
|
||||
|
||||
> `macaronipm.user()['GetMeta']` outputs in json so you could do `macaronipm.user()['GetMeta']['koffeejava']`
|
||||
{: .prompt-tips }
|
||||
|
||||
### `macaronipm.user()['IsBlocking']()`
|
||||
Calling this returns meta data about target user.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
if macaronipm.user()['IsBlocking']("koffeejava") == "true"
|
||||
print("Why did you block me :(")
|
||||
elif:
|
||||
print("Thats good!")
|
||||
```
|
||||
|
||||
> `macaronipm.user()['GetMeta']` outputs in json so you could do `macaronipm.user()['GetMeta']['koffeejava']`
|
||||
{: .prompt-tips }
|
||||
|
||||
### `macaronipm.user()['GetPfp']()`
|
||||
Calling this gives you the pfp of the target you set.
|
||||
|
||||
Example:
|
||||
``` python
|
||||
pfp = macaronipm.user()['GetPfp']("koffeejava")
|
||||
```
|
||||
|
||||
> Calling this will return a dataURI.
|
||||
{: .prompt-info }
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "jekyll-theme-chirpy",
|
||||
"version": "7.4.0",
|
||||
"version": "7.4.1",
|
||||
"description": "A minimal, responsive, and feature-rich Jekyll theme for technical writing.",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
||||