Removing uv as package manager. Isues with using it on network volume.
16
.cspell.json
Executable file
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
"ignorePaths": [
|
||||||
|
"**/node_modules/**",
|
||||||
|
"**/vscode-extension/**",
|
||||||
|
"**/.git/**",
|
||||||
|
"**/.pnpm-lock.json",
|
||||||
|
".vscode",
|
||||||
|
"megalinter",
|
||||||
|
"package-lock.json",
|
||||||
|
"report"
|
||||||
|
],
|
||||||
|
"language": "en",
|
||||||
|
"noConfigSearch": true,
|
||||||
|
"words": ["megalinter", "oxsecurity"],
|
||||||
|
"version": "0.2"
|
||||||
|
}
|
||||||
18
.envrc
Normal file → Executable file
|
|
@ -7,7 +7,7 @@ if [[ -d ".venv" ]]; then
|
||||||
export PATH="$VIRTUAL_ENV/bin:$PATH"
|
export PATH="$VIRTUAL_ENV/bin:$PATH"
|
||||||
|
|
||||||
# Verify we're using the right Python
|
# Verify we're using the right Python
|
||||||
if [[ -x "$VIRTUAL_ENV/bin/python" ]]; then
|
if [[ -x "$VIRTUAL_ENV/bin/python3.14" ]]; then
|
||||||
export PYTHONPATH="$PWD/src:$PYTHONPATH"
|
export PYTHONPATH="$PWD/src:$PYTHONPATH"
|
||||||
echo "Activated virtual environment: $VIRTUAL_ENV"
|
echo "Activated virtual environment: $VIRTUAL_ENV"
|
||||||
else
|
else
|
||||||
|
|
@ -18,13 +18,19 @@ else
|
||||||
echo "Warning: No .venv directory found"
|
echo "Warning: No .venv directory found"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Run uv sync to update packages
|
# Run pip to update packages inside the venv
|
||||||
if command -v uv &> /dev/null; then
|
echo "Running pip update..."
|
||||||
echo "Running uv sync..."
|
"$VIRTUAL_ENV/bin/python3.14" -m pip install --upgrade pip
|
||||||
uv sync
|
"$VIRTUAL_ENV/bin/python3.14" -m pip install --no-cache-dir -r requirements.txt
|
||||||
|
"$VIRTUAL_ENV/bin/python3.14" -m pip freeze > requirements.txt
|
||||||
|
sed -E -i '' 's/==/>=/1' requirements.txt
|
||||||
|
|
||||||
|
# Update requirements.txt with pinned versions only if installs succeeded
|
||||||
|
if [[ $? -eq 0 ]]; then
|
||||||
|
"$VIRTUAL_ENV/bin/python3.14" -m pip freeze > requirements.txt
|
||||||
echo "Packages updated successfully"
|
echo "Packages updated successfully"
|
||||||
else
|
else
|
||||||
echo "Warning: uv not found"
|
echo "pip install failed; requirements.txt not updated"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Environment configured with direnv"
|
echo "Environment configured with direnv"
|
||||||
|
|
|
||||||
0
.github/workflows/ci.yml
vendored
Normal file → Executable file
0
.github/workflows/lint.yml
vendored
Normal file → Executable file
206
.github/workflows/mega-linter.yml
vendored
Executable file
|
|
@ -0,0 +1,206 @@
|
||||||
|
# MegaLinter GitHub Action configuration file
|
||||||
|
# More info at https://megalinter.io
|
||||||
|
---
|
||||||
|
name: MegaLinter
|
||||||
|
|
||||||
|
# Trigger mega-linter at every push. Action will also be visible from
|
||||||
|
# Pull Requests to main
|
||||||
|
on:
|
||||||
|
# Comment this line to trigger action only on pull-requests
|
||||||
|
# (not recommended if you don't pay for GH Actions)
|
||||||
|
push:
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- master
|
||||||
|
|
||||||
|
# Comment env block if you do not want to apply fixes
|
||||||
|
env:
|
||||||
|
# Apply linter fixes configuration
|
||||||
|
#
|
||||||
|
# When active, APPLY_FIXES must also be defined as environment variable
|
||||||
|
# (in github/workflows/mega-linter.yml or other CI tool)
|
||||||
|
APPLY_FIXES: none
|
||||||
|
|
||||||
|
# Decide which event triggers application of fixes in a commit or a PR
|
||||||
|
# (pull_request, push, all)
|
||||||
|
APPLY_FIXES_EVENT: pull_request
|
||||||
|
|
||||||
|
# If APPLY_FIXES is used, defines if the fixes are directly committed (commit)
|
||||||
|
# or posted in a PR (pull_request)
|
||||||
|
APPLY_FIXES_MODE: commit
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.ref }}-${{ github.workflow }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
megalinter:
|
||||||
|
name: MegaLinter
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
# Give the default GITHUB_TOKEN write permission to commit and push, comment
|
||||||
|
# issues, and post new Pull Requests; remove the ones you do not need
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
issues: write
|
||||||
|
pull-requests: write
|
||||||
|
|
||||||
|
steps:
|
||||||
|
# Git Checkout
|
||||||
|
- name: Checkout Code
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
# If you use VALIDATE_ALL_CODEBASE = true, you can remove this line to
|
||||||
|
# improve performance
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
# MegaLinter
|
||||||
|
- name: MegaLinter
|
||||||
|
|
||||||
|
# You can override MegaLinter flavor used to have faster performances
|
||||||
|
# More info at https://megalinter.io/latest/flavors/
|
||||||
|
uses: oxsecurity/megalinter/flavors/documentation@v9
|
||||||
|
|
||||||
|
id: ml
|
||||||
|
|
||||||
|
# All available variables are described in documentation
|
||||||
|
# https://megalinter.io/latest/config-file/
|
||||||
|
env:
|
||||||
|
# Validates all source when push on main, else just the git diff with
|
||||||
|
# main. Override with true if you always want to lint all sources
|
||||||
|
#
|
||||||
|
# To validate the entire codebase, set to:
|
||||||
|
# VALIDATE_ALL_CODEBASE: true
|
||||||
|
#
|
||||||
|
# To validate only diff with main, set to:
|
||||||
|
# VALIDATE_ALL_CODEBASE: >-
|
||||||
|
# ${{
|
||||||
|
# github.event_name == 'push' &&
|
||||||
|
# github.ref == 'refs/heads/main'
|
||||||
|
# }}
|
||||||
|
VALIDATE_ALL_CODEBASE: true
|
||||||
|
|
||||||
|
# Disable LLM Advisor for bot PRs (dependabot, renovate, etc.)
|
||||||
|
LLM_ADVISOR_ENABLED: >-
|
||||||
|
${{
|
||||||
|
github.event_name != 'pull_request' ||
|
||||||
|
(github.event.pull_request.user.login != 'dependabot[bot]' &&
|
||||||
|
github.event.pull_request.user.login != 'renovate[bot]' &&
|
||||||
|
github.event.pull_request.user.login != 'github-actions[bot]' &&
|
||||||
|
!startsWith(github.event.pull_request.user.login, 'dependabot') &&
|
||||||
|
!startsWith(github.event.pull_request.user.login, 'renovate'))
|
||||||
|
}}
|
||||||
|
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
# Uncomment to use ApiReporter (Grafana)
|
||||||
|
# API_REPORTER: true
|
||||||
|
# API_REPORTER_URL: ${{ secrets.API_REPORTER_URL }}
|
||||||
|
# API_REPORTER_BASIC_AUTH_USERNAME: ${{ secrets.API_REPORTER_BASIC_AUTH_USERNAME }}
|
||||||
|
# API_REPORTER_BASIC_AUTH_PASSWORD: ${{ secrets.API_REPORTER_BASIC_AUTH_PASSWORD }}
|
||||||
|
# API_REPORTER_METRICS_URL: ${{ secrets.API_REPORTER_METRICS_URL }}
|
||||||
|
# API_REPORTER_METRICS_BASIC_AUTH_USERNAME: ${{ secrets.API_REPORTER_METRICS_BASIC_AUTH_USERNAME }}
|
||||||
|
# API_REPORTER_METRICS_BASIC_AUTH_PASSWORD: ${{ secrets.API_REPORTER_METRICS_BASIC_AUTH_PASSWORD }}
|
||||||
|
# API_REPORTER_DEBUG: false
|
||||||
|
|
||||||
|
# ADD YOUR CUSTOM ENV VARIABLES HERE TO OVERRIDE VALUES OF
|
||||||
|
# .mega-linter.yml AT THE ROOT OF YOUR REPOSITORY
|
||||||
|
|
||||||
|
# Upload MegaLinter artifacts
|
||||||
|
- name: Archive production artifacts
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
if: success() || failure()
|
||||||
|
with:
|
||||||
|
name: MegaLinter reports
|
||||||
|
include-hidden-files: "true"
|
||||||
|
path: |
|
||||||
|
megalinter-reports
|
||||||
|
mega-linter.log
|
||||||
|
|
||||||
|
# Create pull request if applicable
|
||||||
|
# (for now works only on PR from same repository, not from forks)
|
||||||
|
- name: Create Pull Request with applied fixes
|
||||||
|
uses: peter-evans/create-pull-request@v7
|
||||||
|
id: cpr
|
||||||
|
if: >-
|
||||||
|
steps.ml.outputs.has_updated_sources == 1 &&
|
||||||
|
(
|
||||||
|
env.APPLY_FIXES_EVENT == 'all' ||
|
||||||
|
env.APPLY_FIXES_EVENT == github.event_name
|
||||||
|
) &&
|
||||||
|
env.APPLY_FIXES_MODE == 'pull_request' &&
|
||||||
|
(
|
||||||
|
github.event_name == 'push' ||
|
||||||
|
github.event.pull_request.head.repo.full_name == github.repository
|
||||||
|
) &&
|
||||||
|
!contains(github.event.head_commit.message, 'skip fix')
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
|
||||||
|
commit-message: "[MegaLinter] Apply linters automatic fixes"
|
||||||
|
title: "[MegaLinter] Apply linters automatic fixes"
|
||||||
|
labels: bot
|
||||||
|
|
||||||
|
- name: Create PR output
|
||||||
|
if: >-
|
||||||
|
steps.ml.outputs.has_updated_sources == 1 &&
|
||||||
|
(
|
||||||
|
env.APPLY_FIXES_EVENT == 'all' ||
|
||||||
|
env.APPLY_FIXES_EVENT == github.event_name
|
||||||
|
) &&
|
||||||
|
env.APPLY_FIXES_MODE == 'pull_request' &&
|
||||||
|
(
|
||||||
|
github.event_name == 'push' ||
|
||||||
|
github.event.pull_request.head.repo.full_name == github.repository
|
||||||
|
) &&
|
||||||
|
!contains(github.event.head_commit.message, 'skip fix')
|
||||||
|
run: |
|
||||||
|
echo "PR Number - ${{ steps.cpr.outputs.pull-request-number }}"
|
||||||
|
echo "PR URL - ${{ steps.cpr.outputs.pull-request-url }}"
|
||||||
|
|
||||||
|
# Push new commit if applicable
|
||||||
|
# (for now works only on PR from same repository, not from forks)
|
||||||
|
- name: Prepare commit
|
||||||
|
if: >-
|
||||||
|
steps.ml.outputs.has_updated_sources == 1 &&
|
||||||
|
(
|
||||||
|
env.APPLY_FIXES_EVENT == 'all' ||
|
||||||
|
env.APPLY_FIXES_EVENT == github.event_name
|
||||||
|
) &&
|
||||||
|
env.APPLY_FIXES_MODE == 'commit' &&
|
||||||
|
github.ref != 'refs/heads/main' &&
|
||||||
|
(
|
||||||
|
github.event_name == 'push' ||
|
||||||
|
github.event.pull_request.head.repo.full_name == github.repository
|
||||||
|
) &&
|
||||||
|
!contains(github.event.head_commit.message, 'skip fix')
|
||||||
|
run: sudo chown -Rc $UID .git/
|
||||||
|
|
||||||
|
- name: Commit and push applied linter fixes
|
||||||
|
uses: stefanzweifel/git-auto-commit-action@v7
|
||||||
|
if: >-
|
||||||
|
steps.ml.outputs.has_updated_sources == 1 &&
|
||||||
|
(
|
||||||
|
env.APPLY_FIXES_EVENT == 'all' ||
|
||||||
|
env.APPLY_FIXES_EVENT == github.event_name
|
||||||
|
) &&
|
||||||
|
env.APPLY_FIXES_MODE == 'commit' &&
|
||||||
|
github.ref != 'refs/heads/main' &&
|
||||||
|
(
|
||||||
|
github.event_name == 'push' ||
|
||||||
|
github.event.pull_request.head.repo.full_name == github.repository
|
||||||
|
) &&
|
||||||
|
!contains(github.event.head_commit.message, 'skip fix')
|
||||||
|
with:
|
||||||
|
branch: >-
|
||||||
|
${{
|
||||||
|
github.event.pull_request.head.ref ||
|
||||||
|
github.head_ref ||
|
||||||
|
github.ref
|
||||||
|
}}
|
||||||
|
commit_message: "[MegaLinter] Apply linters fixes"
|
||||||
|
commit_user_name: megalinter-bot
|
||||||
|
commit_user_email: 129584137+megalinter-bot@users.noreply.github.com
|
||||||
1
.gitignore
vendored
Normal file → Executable file
|
|
@ -137,3 +137,4 @@ cython_debug/
|
||||||
uv.lock
|
uv.lock
|
||||||
*.pyc
|
*.pyc
|
||||||
.python-version
|
.python-version
|
||||||
|
megalinter-reports/
|
||||||
|
|
|
||||||
|
|
@ -1,17 +0,0 @@
|
||||||
pages:
|
|
||||||
stage: deploy
|
|
||||||
image: python:latest
|
|
||||||
variables:
|
|
||||||
GIT_LFS_SKIP_SMUDGE: "1"
|
|
||||||
script:
|
|
||||||
- pip install -r requirements.txt
|
|
||||||
- mkdocs build --site-dir public
|
|
||||||
cache:
|
|
||||||
key: ${CI_COMMIT_REF_SLUG}
|
|
||||||
paths:
|
|
||||||
- .cache/
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- public
|
|
||||||
rules:
|
|
||||||
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
|
||||||
15
.jscpd.json
Executable file
|
|
@ -0,0 +1,15 @@
|
||||||
|
{
|
||||||
|
"threshold": 0,
|
||||||
|
"reporters": ["html", "markdown"],
|
||||||
|
"ignore": [
|
||||||
|
"**/node_modules/**",
|
||||||
|
"**/.git/**",
|
||||||
|
"**/.rbenv/**",
|
||||||
|
"**/.venv/**",
|
||||||
|
"**/*cache*/**",
|
||||||
|
"**/.github/**",
|
||||||
|
"**/.idea/**",
|
||||||
|
"**/report/**",
|
||||||
|
"**/*.svg"
|
||||||
|
]
|
||||||
|
}
|
||||||
24
.mega-linter.yml
Executable file
|
|
@ -0,0 +1,24 @@
|
||||||
|
# Configuration file for MegaLinter
|
||||||
|
#
|
||||||
|
# See all available variables at https://megalinter.io/latest/config-file/ and in
|
||||||
|
# linters documentation
|
||||||
|
|
||||||
|
# all, none, or list of linter keys
|
||||||
|
APPLY_FIXES: none
|
||||||
|
|
||||||
|
# If you use ENABLE variable, all other languages/formats/tooling-formats will
|
||||||
|
# be disabled by default
|
||||||
|
# ENABLE:
|
||||||
|
|
||||||
|
# If you use ENABLE_LINTERS variable, all other linters will be disabled by
|
||||||
|
# default
|
||||||
|
# ENABLE_LINTERS:
|
||||||
|
|
||||||
|
# DISABLE:
|
||||||
|
# - COPYPASTE # Uncomment to disable checks of excessive copy-pastes
|
||||||
|
# - SPELL # Uncomment to disable checks of spelling mistakes
|
||||||
|
|
||||||
|
SHOW_ELAPSED_TIME: true
|
||||||
|
|
||||||
|
# Uncomment if you want MegaLinter to detect errors but not block CI to pass
|
||||||
|
# DISABLE_ERRORS: true
|
||||||
0
.vale.ini
Normal file → Executable file
0
Dockerfile
Normal file → Executable file
0
docs/src/stylesheets/_colours.css → content/assets/css/_colours.css
Normal file → Executable file
0
docs/src/stylesheets/_faces.css → content/assets/css/_faces.css
Normal file → Executable file
0
docs/src/stylesheets/_fonts.css → content/assets/css/_fonts.css
Normal file → Executable file
0
docs/src/stylesheets/_hero-text.css → content/assets/css/_hero-text.css
Normal file → Executable file
0
docs/src/stylesheets/_index.css → content/assets/css/_index.css
Normal file → Executable file
0
docs/src/stylesheets/_loader.css → content/assets/css/_loader.css
Normal file → Executable file
0
docs/src/stylesheets/_media-player.css → content/assets/css/_media-player.css
Normal file → Executable file
0
docs/src/stylesheets/_page-resume.css → content/assets/css/_page-resume.css
Normal file → Executable file
0
docs/src/stylesheets/_size.css → content/assets/css/_size.css
Normal file → Executable file
0
docs/src/stylesheets/g.css → content/assets/css/g.css
Normal file → Executable file
0
docs/src/stylesheets/index.css → content/assets/css/index.css
Normal file → Executable file
0
docs/src/fonts/dm-mono/DMMono-Italic.woff2 → content/assets/fonts/dm-mono/DMMono-Italic.woff2
Normal file → Executable file
0
docs/src/fonts/dm-mono/DMMono-Light.woff2 → content/assets/fonts/dm-mono/DMMono-Light.woff2
Normal file → Executable file
0
docs/src/fonts/dm-mono/DMMono-LightItalic.woff2 → content/assets/fonts/dm-mono/DMMono-LightItalic.woff2
Normal file → Executable file
0
docs/src/fonts/dm-mono/DMMono-Medium.woff2 → content/assets/fonts/dm-mono/DMMono-Medium.woff2
Normal file → Executable file
0
docs/src/fonts/dm-mono/DMMono-MediumItalic.woff2 → content/assets/fonts/dm-mono/DMMono-MediumItalic.woff2
Normal file → Executable file
0
docs/src/fonts/dm-mono/DMMono-Regular.woff2 → content/assets/fonts/dm-mono/DMMono-Regular.woff2
Normal file → Executable file
BIN
content/assets/fonts/fira-code/FiraCode-VariableFont_wght.ttf
Executable file
93
content/assets/fonts/fira-code/OFL.txt
Executable file
|
|
@ -0,0 +1,93 @@
|
||||||
|
Copyright 2014-2020 The Fira Code Project Authors (https://github.com/tonsky/FiraCode)
|
||||||
|
|
||||||
|
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||||
|
This license is copied below, and is also available with a FAQ at:
|
||||||
|
https://openfontlicense.org
|
||||||
|
|
||||||
|
|
||||||
|
-----------------------------------------------------------
|
||||||
|
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||||
|
-----------------------------------------------------------
|
||||||
|
|
||||||
|
PREAMBLE
|
||||||
|
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||||
|
development of collaborative font projects, to support the font creation
|
||||||
|
efforts of academic and linguistic communities, and to provide a free and
|
||||||
|
open framework in which fonts may be shared and improved in partnership
|
||||||
|
with others.
|
||||||
|
|
||||||
|
The OFL allows the licensed fonts to be used, studied, modified and
|
||||||
|
redistributed freely as long as they are not sold by themselves. The
|
||||||
|
fonts, including any derivative works, can be bundled, embedded,
|
||||||
|
redistributed and/or sold with any software provided that any reserved
|
||||||
|
names are not used by derivative works. The fonts and derivatives,
|
||||||
|
however, cannot be released under any other type of license. The
|
||||||
|
requirement for fonts to remain under this license does not apply
|
||||||
|
to any document created using the fonts or their derivatives.
|
||||||
|
|
||||||
|
DEFINITIONS
|
||||||
|
"Font Software" refers to the set of files released by the Copyright
|
||||||
|
Holder(s) under this license and clearly marked as such. This may
|
||||||
|
include source files, build scripts and documentation.
|
||||||
|
|
||||||
|
"Reserved Font Name" refers to any names specified as such after the
|
||||||
|
copyright statement(s).
|
||||||
|
|
||||||
|
"Original Version" refers to the collection of Font Software components as
|
||||||
|
distributed by the Copyright Holder(s).
|
||||||
|
|
||||||
|
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||||
|
or substituting -- in part or in whole -- any of the components of the
|
||||||
|
Original Version, by changing formats or by porting the Font Software to a
|
||||||
|
new environment.
|
||||||
|
|
||||||
|
"Author" refers to any designer, engineer, programmer, technical
|
||||||
|
writer or other person who contributed to the Font Software.
|
||||||
|
|
||||||
|
PERMISSION & CONDITIONS
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||||
|
redistribute, and sell modified and unmodified copies of the Font
|
||||||
|
Software, subject to the following conditions:
|
||||||
|
|
||||||
|
1) Neither the Font Software nor any of its individual components,
|
||||||
|
in Original or Modified Versions, may be sold by itself.
|
||||||
|
|
||||||
|
2) Original or Modified Versions of the Font Software may be bundled,
|
||||||
|
redistributed and/or sold with any software, provided that each copy
|
||||||
|
contains the above copyright notice and this license. These can be
|
||||||
|
included either as stand-alone text files, human-readable headers or
|
||||||
|
in the appropriate machine-readable metadata fields within text or
|
||||||
|
binary files as long as those fields can be easily viewed by the user.
|
||||||
|
|
||||||
|
3) No Modified Version of the Font Software may use the Reserved Font
|
||||||
|
Name(s) unless explicit written permission is granted by the corresponding
|
||||||
|
Copyright Holder. This restriction only applies to the primary font name as
|
||||||
|
presented to the users.
|
||||||
|
|
||||||
|
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||||
|
Software shall not be used to promote, endorse or advertise any
|
||||||
|
Modified Version, except to acknowledge the contribution(s) of the
|
||||||
|
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||||
|
permission.
|
||||||
|
|
||||||
|
5) The Font Software, modified or unmodified, in part or in whole,
|
||||||
|
must be distributed entirely under this license, and must not be
|
||||||
|
distributed under any other license. The requirement for fonts to
|
||||||
|
remain under this license does not apply to any document created
|
||||||
|
using the Font Software.
|
||||||
|
|
||||||
|
TERMINATION
|
||||||
|
This license becomes null and void if any of the above conditions are
|
||||||
|
not met.
|
||||||
|
|
||||||
|
DISCLAIMER
|
||||||
|
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||||
|
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||||
|
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||||
|
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||||
|
OTHER DEALINGS IN THE FONT SOFTWARE.
|
||||||
67
content/assets/fonts/fira-code/README.txt
Executable file
|
|
@ -0,0 +1,67 @@
|
||||||
|
Fira Code Variable Font
|
||||||
|
=======================
|
||||||
|
|
||||||
|
This download contains Fira Code as both a variable font and static fonts.
|
||||||
|
|
||||||
|
Fira Code is a variable font with this axis:
|
||||||
|
wght
|
||||||
|
|
||||||
|
This means all the styles are contained in a single file:
|
||||||
|
Fira_Code/FiraCode-VariableFont_wght.ttf
|
||||||
|
|
||||||
|
If your app fully supports variable fonts, you can now pick intermediate styles
|
||||||
|
that aren’t available as static fonts. Not all apps support variable fonts, and
|
||||||
|
in those cases you can use the static font files for Fira Code:
|
||||||
|
Fira_Code/static/FiraCode-Light.ttf
|
||||||
|
Fira_Code/static/FiraCode-Regular.ttf
|
||||||
|
Fira_Code/static/FiraCode-Medium.ttf
|
||||||
|
Fira_Code/static/FiraCode-SemiBold.ttf
|
||||||
|
Fira_Code/static/FiraCode-Bold.ttf
|
||||||
|
|
||||||
|
Get started
|
||||||
|
-----------
|
||||||
|
|
||||||
|
1. Install the font files you want to use
|
||||||
|
|
||||||
|
2. Use your app's font picker to view the font family and all the
|
||||||
|
available styles
|
||||||
|
|
||||||
|
Learn more about variable fonts
|
||||||
|
-------------------------------
|
||||||
|
|
||||||
|
https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts
|
||||||
|
https://variablefonts.typenetwork.com
|
||||||
|
https://medium.com/variable-fonts
|
||||||
|
|
||||||
|
In desktop apps
|
||||||
|
|
||||||
|
https://theblog.adobe.com/can-variable-fonts-illustrator-cc
|
||||||
|
https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts
|
||||||
|
|
||||||
|
Online
|
||||||
|
|
||||||
|
https://developers.google.com/fonts/docs/getting_started
|
||||||
|
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide
|
||||||
|
https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts
|
||||||
|
|
||||||
|
Installing fonts
|
||||||
|
|
||||||
|
MacOS: https://support.apple.com/en-us/HT201749
|
||||||
|
Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux
|
||||||
|
Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows
|
||||||
|
|
||||||
|
Android Apps
|
||||||
|
|
||||||
|
https://developers.google.com/fonts/docs/android
|
||||||
|
https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts
|
||||||
|
|
||||||
|
License
|
||||||
|
-------
|
||||||
|
Please read the full license text (OFL.txt) to understand the permissions,
|
||||||
|
restrictions and requirements for usage, redistribution, and modification.
|
||||||
|
|
||||||
|
You can use them in your products & projects – print or digital,
|
||||||
|
commercial or otherwise.
|
||||||
|
|
||||||
|
This isn't legal advice, please consider consulting a lawyer and see the full
|
||||||
|
license for all details.
|
||||||
BIN
content/assets/fonts/fira-code/static/FiraCode-Bold.ttf
Executable file
BIN
content/assets/fonts/fira-code/static/FiraCode-Light.ttf
Executable file
BIN
content/assets/fonts/fira-code/static/FiraCode-Medium.ttf
Executable file
BIN
content/assets/fonts/fira-code/static/FiraCode-Regular.ttf
Executable file
BIN
content/assets/fonts/fira-code/static/FiraCode-SemiBold.ttf
Executable file
BIN
content/assets/fonts/fira-sans/FiraSans-Black.ttf
Executable file
BIN
content/assets/fonts/fira-sans/FiraSans-BlackItalic.ttf
Executable file
BIN
content/assets/fonts/fira-sans/FiraSans-Bold.ttf
Executable file
BIN
content/assets/fonts/fira-sans/FiraSans-BoldItalic.ttf
Executable file
BIN
content/assets/fonts/fira-sans/FiraSans-ExtraBold.ttf
Executable file
BIN
content/assets/fonts/fira-sans/FiraSans-ExtraBoldItalic.ttf
Executable file
BIN
content/assets/fonts/fira-sans/FiraSans-ExtraLight.ttf
Executable file
BIN
content/assets/fonts/fira-sans/FiraSans-ExtraLightItalic.ttf
Executable file
BIN
content/assets/fonts/fira-sans/FiraSans-Italic.ttf
Executable file
BIN
content/assets/fonts/fira-sans/FiraSans-Light.ttf
Executable file
BIN
content/assets/fonts/fira-sans/FiraSans-LightItalic.ttf
Executable file
BIN
content/assets/fonts/fira-sans/FiraSans-Medium.ttf
Executable file
BIN
content/assets/fonts/fira-sans/FiraSans-MediumItalic.ttf
Executable file
BIN
content/assets/fonts/fira-sans/FiraSans-Regular.ttf
Executable file
BIN
content/assets/fonts/fira-sans/FiraSans-SemiBold.ttf
Executable file
BIN
content/assets/fonts/fira-sans/FiraSans-SemiBoldItalic.ttf
Executable file
BIN
content/assets/fonts/fira-sans/FiraSans-Thin.ttf
Executable file
BIN
content/assets/fonts/fira-sans/FiraSans-ThinItalic.ttf
Executable file
93
content/assets/fonts/fira-sans/OFL.txt
Executable file
|
|
@ -0,0 +1,93 @@
|
||||||
|
Copyright (c) 2012-2015, The Mozilla Foundation and Telefonica S.A.
|
||||||
|
|
||||||
|
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||||
|
This license is copied below, and is also available with a FAQ at:
|
||||||
|
https://openfontlicense.org
|
||||||
|
|
||||||
|
|
||||||
|
-----------------------------------------------------------
|
||||||
|
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||||
|
-----------------------------------------------------------
|
||||||
|
|
||||||
|
PREAMBLE
|
||||||
|
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||||
|
development of collaborative font projects, to support the font creation
|
||||||
|
efforts of academic and linguistic communities, and to provide a free and
|
||||||
|
open framework in which fonts may be shared and improved in partnership
|
||||||
|
with others.
|
||||||
|
|
||||||
|
The OFL allows the licensed fonts to be used, studied, modified and
|
||||||
|
redistributed freely as long as they are not sold by themselves. The
|
||||||
|
fonts, including any derivative works, can be bundled, embedded,
|
||||||
|
redistributed and/or sold with any software provided that any reserved
|
||||||
|
names are not used by derivative works. The fonts and derivatives,
|
||||||
|
however, cannot be released under any other type of license. The
|
||||||
|
requirement for fonts to remain under this license does not apply
|
||||||
|
to any document created using the fonts or their derivatives.
|
||||||
|
|
||||||
|
DEFINITIONS
|
||||||
|
"Font Software" refers to the set of files released by the Copyright
|
||||||
|
Holder(s) under this license and clearly marked as such. This may
|
||||||
|
include source files, build scripts and documentation.
|
||||||
|
|
||||||
|
"Reserved Font Name" refers to any names specified as such after the
|
||||||
|
copyright statement(s).
|
||||||
|
|
||||||
|
"Original Version" refers to the collection of Font Software components as
|
||||||
|
distributed by the Copyright Holder(s).
|
||||||
|
|
||||||
|
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||||
|
or substituting -- in part or in whole -- any of the components of the
|
||||||
|
Original Version, by changing formats or by porting the Font Software to a
|
||||||
|
new environment.
|
||||||
|
|
||||||
|
"Author" refers to any designer, engineer, programmer, technical
|
||||||
|
writer or other person who contributed to the Font Software.
|
||||||
|
|
||||||
|
PERMISSION & CONDITIONS
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||||
|
redistribute, and sell modified and unmodified copies of the Font
|
||||||
|
Software, subject to the following conditions:
|
||||||
|
|
||||||
|
1) Neither the Font Software nor any of its individual components,
|
||||||
|
in Original or Modified Versions, may be sold by itself.
|
||||||
|
|
||||||
|
2) Original or Modified Versions of the Font Software may be bundled,
|
||||||
|
redistributed and/or sold with any software, provided that each copy
|
||||||
|
contains the above copyright notice and this license. These can be
|
||||||
|
included either as stand-alone text files, human-readable headers or
|
||||||
|
in the appropriate machine-readable metadata fields within text or
|
||||||
|
binary files as long as those fields can be easily viewed by the user.
|
||||||
|
|
||||||
|
3) No Modified Version of the Font Software may use the Reserved Font
|
||||||
|
Name(s) unless explicit written permission is granted by the corresponding
|
||||||
|
Copyright Holder. This restriction only applies to the primary font name as
|
||||||
|
presented to the users.
|
||||||
|
|
||||||
|
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||||
|
Software shall not be used to promote, endorse or advertise any
|
||||||
|
Modified Version, except to acknowledge the contribution(s) of the
|
||||||
|
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||||
|
permission.
|
||||||
|
|
||||||
|
5) The Font Software, modified or unmodified, in part or in whole,
|
||||||
|
must be distributed entirely under this license, and must not be
|
||||||
|
distributed under any other license. The requirement for fonts to
|
||||||
|
remain under this license does not apply to any document created
|
||||||
|
using the Font Software.
|
||||||
|
|
||||||
|
TERMINATION
|
||||||
|
This license becomes null and void if any of the above conditions are
|
||||||
|
not met.
|
||||||
|
|
||||||
|
DISCLAIMER
|
||||||
|
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||||
|
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||||
|
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||||
|
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||||
|
OTHER DEALINGS IN THE FONT SOFTWARE.
|
||||||
0
docs/src/fonts/lato/Lato-Black.ttf → content/assets/fonts/lato/Lato-Black.ttf
Normal file → Executable file
0
docs/src/fonts/lato/Lato-BlackItalic.ttf → content/assets/fonts/lato/Lato-BlackItalic.ttf
Normal file → Executable file
0
docs/src/fonts/lato/Lato-Bold.woff2 → content/assets/fonts/lato/Lato-Bold.woff2
Normal file → Executable file
0
docs/src/fonts/lato/Lato-BoldItalic.woff2 → content/assets/fonts/lato/Lato-BoldItalic.woff2
Normal file → Executable file
0
docs/src/fonts/lato/Lato-Italic.woff2 → content/assets/fonts/lato/Lato-Italic.woff2
Normal file → Executable file
0
docs/src/fonts/lato/Lato-Light.ttf → content/assets/fonts/lato/Lato-Light.ttf
Normal file → Executable file
0
docs/src/fonts/lato/Lato-LightItalic.ttf → content/assets/fonts/lato/Lato-LightItalic.ttf
Normal file → Executable file
0
docs/src/fonts/lato/Lato-Regular.woff2 → content/assets/fonts/lato/Lato-Regular.woff2
Normal file → Executable file
0
docs/src/fonts/lato/Lato-Thin.ttf → content/assets/fonts/lato/Lato-Thin.ttf
Normal file → Executable file
0
docs/src/fonts/lato/Lato-ThinItalic.ttf → content/assets/fonts/lato/Lato-ThinItalic.ttf
Normal file → Executable file
0
docs/src/fonts/libre-baskerville/LibreBaskerville-Bold.woff → content/assets/fonts/libre-baskerville/LibreBaskerville-Bold.woff
Normal file → Executable file
0
docs/src/fonts/libre-baskerville/style.css → content/assets/fonts/libre-baskerville/style.css
Normal file → Executable file
0
docs/src/fonts/open-sans/OpenSans-ExtraBold.woff2 → content/assets/fonts/open-sans/OpenSans-ExtraBold.woff2
Normal file → Executable file
0
docs/src/fonts/open-sans/OpenSans-Medium.woff2 → content/assets/fonts/open-sans/OpenSans-Medium.woff2
Normal file → Executable file
0
docs/src/js/index-text.js → content/assets/js/index-text.js
Normal file → Executable file
0
docs/src/js/index.js → content/assets/js/index.js
Normal file → Executable file
0
docs/src/js/loader.js → content/assets/js/loader.js
Normal file → Executable file
0
docs/src/js/resume.js → content/assets/js/resume.js
Normal file → Executable file
0
docs/src/allan-gray-logo-243x160.png → content/assets/media/allan-gray-logo-243x160.png
Normal file → Executable file
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
0
docs/src/gugulet.hu-combined-face-1276x1276.webp → content/assets/media/gugulet.hu-combined-face-1276x1276.webp
Normal file → Executable file
|
Before Width: | Height: | Size: 142 KiB After Width: | Height: | Size: 142 KiB |
0
docs/src/gugulet.hu-site-logo-350x350.png → content/assets/media/gugulet.hu-site-logo-350x350.png
Normal file → Executable file
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
0
docs/src/gugulet.hu-technical-face-1276x1276.webp → content/assets/media/gugulet.hu-technical-face-1276x1276.webp
Normal file → Executable file
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
0
docs/src/gugulet.hu-unedited-face-1276x1276.webp → content/assets/media/gugulet.hu-unedited-face-1276x1276.webp
Normal file → Executable file
|
Before Width: | Height: | Size: 102 KiB After Width: | Height: | Size: 102 KiB |
0
docs/src/gugulet.hu-visual-face-1276x1276.webp → content/assets/media/gugulet.hu-visual-face-1276x1276.webp
Normal file → Executable file
|
Before Width: | Height: | Size: 141 KiB After Width: | Height: | Size: 141 KiB |
0
docs/src/gugulet.hu-writing-face-1276x1276.webp → content/assets/media/gugulet.hu-writing-face-1276x1276.webp
Normal file → Executable file
|
Before Width: | Height: | Size: 178 KiB After Width: | Height: | Size: 178 KiB |
0
docs/src/mambu-cli-1638x1355.jpg → content/assets/media/mambu-cli-1638x1355.jpg
Normal file → Executable file
|
Before Width: | Height: | Size: 144 KiB After Width: | Height: | Size: 144 KiB |
0
docs/src/mambu-logo-110x112.png → content/assets/media/mambu-logo-110x112.png
Normal file → Executable file
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
0
docs/src/mpo-complex-process-2355x1237.png → content/assets/media/mpo-complex-process-2355x1237.png
Normal file → Executable file
|
Before Width: | Height: | Size: 357 KiB After Width: | Height: | Size: 357 KiB |
0
docs/src/pcvue-documentation-2728x1756.png → content/assets/media/pcvue-documentation-2728x1756.png
Normal file → Executable file
|
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.4 MiB |
0
docs/src/pcvue-print-layout-1573x1433.png → content/assets/media/pcvue-print-layout-1573x1433.png
Normal file → Executable file
|
Before Width: | Height: | Size: 305 KiB After Width: | Height: | Size: 305 KiB |
0
docs/src/spread-ai-logo-125x144.png → content/assets/media/spread-ai-logo-125x144.png
Normal file → Executable file
|
Before Width: | Height: | Size: 7 KiB After Width: | Height: | Size: 7 KiB |
0
docs/src/spread-docs-site-3456x2160.png → content/assets/media/spread-docs-site-3456x2160.png
Normal file → Executable file
|
Before Width: | Height: | Size: 1.6 MiB After Width: | Height: | Size: 1.6 MiB |
0
docs/src/spread-docs-v1-3024x1890.png → content/assets/media/spread-docs-v1-3024x1890.png
Normal file → Executable file
|
Before Width: | Height: | Size: 364 KiB After Width: | Height: | Size: 364 KiB |
0
docs/src/spread-docs-v2-3024x1890.png → content/assets/media/spread-docs-v2-3024x1890.png
Normal file → Executable file
|
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 1.2 MiB |
0
docs/src/spread-docs-v3-3456x2170.png → content/assets/media/spread-docs-v3-3456x2170.png
Normal file → Executable file
|
Before Width: | Height: | Size: 1.7 MiB After Width: | Height: | Size: 1.7 MiB |
0
docs/src/spread-glossary-3456x2168.png → content/assets/media/spread-glossary-3456x2168.png
Normal file → Executable file
|
Before Width: | Height: | Size: 542 KiB After Width: | Height: | Size: 542 KiB |
0
docs/src/spread-print-layout-1596x1872.png → content/assets/media/spread-print-layout-1596x1872.png
Normal file → Executable file
|
Before Width: | Height: | Size: 273 KiB After Width: | Height: | Size: 273 KiB |
0
docs/src/the-jupiter-drawing-room-logo-119x118.png → content/assets/media/the-jupiter-drawing-room-logo-119x118.png
Normal file → Executable file
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
0
docs/src/what-is-hmi.gif → content/assets/media/what-is-hmi.gif
Normal file → Executable file
|
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.4 MiB |
0
docs/src/windhoek-jazz-festival-50s.mp3 → content/assets/media/windhoek-jazz-festival-50s.mp3
Normal file → Executable file
0
docs/src/yoco-logo-206x206.png → content/assets/media/yoco-logo-206x206.png
Normal file → Executable file
|
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
0
docs/code-data.md → content/code-data.md
Normal file → Executable file
2
docs/includes/defintions.md → content/includes/defintions.md
Normal file → Executable file
|
|
@ -1,3 +1,3 @@
|
||||||
<!-- List of deifintions that will appear in toptips -->
|
<!-- List of defiintions that will appear in toptips -->
|
||||||
*[data]: Data defined as raw input, which when processed becomes information. Wisdom and knowledge are higher levels of information alloyed with experience.
|
*[data]: Data defined as raw input, which when processed becomes information. Wisdom and knowledge are higher levels of information alloyed with experience.
|
||||||
*[ADB]: The Android Debug Bridge lets you communicate with your Android or wearOS device via the terminal (or console). You can install apps, push orpull files, and change settings using commands.
|
*[ADB]: The Android Debug Bridge lets you communicate with your Android or wearOS device via the terminal (or console). You can install apps, push orpull files, and change settings using commands.
|
||||||