Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| be837a9cee | |||
| 6284a1e3f0 |
2
.gitignore
vendored
@@ -1,2 +0,0 @@
|
||||
node_modules
|
||||
dist
|
||||
14
.vscode/tasks.json
vendored
@@ -1,14 +0,0 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"type": "npm",
|
||||
"script": "build",
|
||||
"path": "site",
|
||||
"group": "build",
|
||||
"problemMatcher": [],
|
||||
"label": "Build website",
|
||||
"detail": "node build.js"
|
||||
}
|
||||
]
|
||||
}
|
||||
44
404.html
Executable file
@@ -0,0 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>404 - Page not Found - janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<script defer src="/js/jquery.js"></script>
|
||||
<script defer src="/js/basicanimations.js"></script>
|
||||
<link rel="stylesheet" href="/css/mainstyle.css">
|
||||
<style>
|
||||
.errorpage {
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
.box {
|
||||
text-align: center;
|
||||
width: 50%;
|
||||
margin: 25%;
|
||||
margin-top: 10%;
|
||||
margin-bottom: 0%;
|
||||
}
|
||||
|
||||
.Bigtext {
|
||||
font-size: 400%;
|
||||
}
|
||||
|
||||
.smalltext {
|
||||
font-size: 150%;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="ContentToInclude"></div>
|
||||
<div class="errorpage">
|
||||
<div class="mainstyle">
|
||||
<h2 class="Bigtext">The page you are looking for was not found</h2>
|
||||
<p class="smalltext">The page you are looking for does not exist. It may have been moved, or removed altogether. Perhaps you can return back to the site's homepage and see if you can find what you are looking for.</p>
|
||||
<br><br><br>
|
||||
<a href="/" class="linkbutton">Go to homepage</a>
|
||||
</div>
|
||||
</div>
|
||||
<div id="Footer"></div>
|
||||
</body>
|
||||
</html>
|
||||
11
README.md
@@ -1,11 +0,0 @@
|
||||
<div id="title" align="center">
|
||||
<img src="https://static.janishutz.com/logo.jpg" width="300">
|
||||
<h1>janishutz.com</h1>
|
||||
</div>
|
||||
|
||||
This is the source code for my personal website. Check it out [here](https://janishutz.com).
|
||||
|
||||
As any custom website is, this one is also written entirely in HTML, CSS and JavaScript and now doesn't even use any external libraries (apart from my own)
|
||||
|
||||
# Building
|
||||
cd to the site directory and run `node build.js`
|
||||
33
about.html
Executable file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>About - janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="./css/mainstyle.css">
|
||||
<script defer src="./js/jquery.js"></script>
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<script defer src="./js/basicanimations.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="ContentToInclude"></div>
|
||||
<div class="mainstyle">
|
||||
<div class="title-container">
|
||||
<h1 class="title">About me</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>My name is Janis Hutz, I am 19 years old and am learning to code in many different programming languages. By now I am quite fluent in a couple of programming languages, including Swift & SwiftUI (Apple's programming languages); Python (with three different Graphical User Interface Toolkits (Kivy (and KivyMD), PyQT5 and PyGTK)); JavaScript, TypeScript, HTML and CSS. You may find my iOS Apps on the AppStore and most of my other projects as Free & Open Source Software over on GitHub. Usually, when I OpenSource a project, I tend to use the GNU General Public License V3.0 (GPL V3), as this allows you (if you are a FOSS-dev) to do the most with this code whilst not helping out big companies like Google, Micro$oft, etc.</p>
|
||||
<p>I spend most of my freetime coding, as this is what I enjoy the most, other than that I am a passionate Archlinux user, so I spend occasionally some time troubleshooting something. Therefore I am not a big fan of Micro$oft, Google or Meta, but I quite adore the work that Apple does, surprisingly.</p>
|
||||
<p>As I am still in my studies, my time to code is limited to what I can do outside of school, and sadly I cannot yet go to University, as I am too young and I haven't finished secondary school yet.</p>
|
||||
<br><br>
|
||||
</div>
|
||||
<div class="itemsInline">
|
||||
<a class="linkbutton" href="https://github.com/simplePCBuilding">Github</a>
|
||||
<a class="linkbutton" href="https://apps.apple.com/us/developer/janis-hutz/id1636936538">AppStore</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="Footer"></div>
|
||||
</body>
|
||||
</html>
|
||||
30
aboutPage.html
Normal file
@@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>About - janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="./css/mainstyle.css">
|
||||
<script defer src="./js/jquery.js"></script>
|
||||
<script defer src="./js/basicanimations.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="ContentToInclude"></div>
|
||||
<div class="mainstyle">
|
||||
<div class="title-container">
|
||||
<h1 class="title">About janishutz.com</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<hr class="pullquote-lines">
|
||||
<h3 class="content-title-small">Technology is a remarkably interesting topic, that many people take for granted.</h3>
|
||||
<hr class="pullquote-lines">
|
||||
<p style="text-align: center; font-size: 120%;">Get support if you are stuck on a problem, purchase a new, fully customised PC, that is configured according to your needs* and get a webpage created for you.</p>
|
||||
</div>
|
||||
<div class="itemsInline">
|
||||
<a class="linkbutton" href="/about.html">About me</a>
|
||||
<a class="linkbutton" href="/privacypolicy.html">Privacy Policy</a>
|
||||
<a class="linkbutton" href="/services.html">Services</a>
|
||||
</div>
|
||||
</div>
|
||||
<div id="Footer"></div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
assets/Logo.png
Executable file
|
After Width: | Height: | Size: 22 KiB |
BIN
assets/codeSnippet.png
Normal file
|
After Width: | Height: | Size: 80 KiB |
BIN
assets/logo.xcf
Normal file
@@ -1,3 +0,0 @@
|
||||
# Components
|
||||
|
||||
This folder contains all kinds of templates for my websites. These are all (almost) ready to go components I can simply grab, slightly adapt and use directly without having to re-implement everything from scratch. You are allowed to use these components on your own website, but you are not allowed to claim them to be your own work, if you haven't adapted them, but simply added your own images or similar to them.
|
||||
@@ -1,32 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Scroll</title>
|
||||
<link rel="stylesheet" href="/scroll.css">
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
|
||||
<style>
|
||||
body {
|
||||
background-color: black;
|
||||
color: white;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="scroll-indicator"></div>
|
||||
|
||||
<div style="height: 100vh;">
|
||||
<h1>Scroll</h1>
|
||||
</div>
|
||||
<div style="height: 100vh;" class="snap">
|
||||
<h2>Hello World</h2>
|
||||
</div>
|
||||
|
||||
<script src="https://static.janishutz.com/libs/jquery/jquery.min.js"></script>
|
||||
<script src="/scroll.js"></script>
|
||||
<script>
|
||||
scrollHint( 4 );
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,118 +0,0 @@
|
||||
/*
|
||||
* ConductorCalc - scroll.css
|
||||
*
|
||||
* Created by Janis Hutz 01/17/2024, Licensed under a proprietary License
|
||||
* https://janishutz.com, development@janishutz.com
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
#scroll-indicator {
|
||||
position: fixed;
|
||||
right: 5%;
|
||||
z-index: 7;
|
||||
width: 90%;
|
||||
bottom: -200px;
|
||||
}
|
||||
|
||||
#scroll-indicator.show-scroll {
|
||||
animation: pop-in 0.5s;
|
||||
bottom: 5%;
|
||||
}
|
||||
|
||||
#scroll-indicator.hide-scroll {
|
||||
animation: pop-out 0.5s;
|
||||
bottom: -200px;
|
||||
}
|
||||
|
||||
@keyframes pop-in {
|
||||
0% {
|
||||
bottom: -200px;
|
||||
}
|
||||
|
||||
70% {
|
||||
bottom: 6.5%;
|
||||
}
|
||||
|
||||
80% {
|
||||
bottom: 6%;
|
||||
}
|
||||
|
||||
100% {
|
||||
bottom: 5%;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes pop-out {
|
||||
0% {
|
||||
bottom: 5%;
|
||||
}
|
||||
|
||||
25% {
|
||||
bottom: 6.5%
|
||||
}
|
||||
|
||||
35% {
|
||||
bottom: 6%;
|
||||
}
|
||||
|
||||
100% {
|
||||
bottom: -200px;
|
||||
}
|
||||
}
|
||||
|
||||
.content {
|
||||
scroll-snap-type: y mandatory;
|
||||
}
|
||||
|
||||
.snap {
|
||||
scroll-snap-align: top;
|
||||
}
|
||||
|
||||
|
||||
.scroll-wrapper {
|
||||
color: rgb(221, 221, 221);
|
||||
font-size: 80%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.scroll-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
cursor: pointer;
|
||||
padding: 15px;
|
||||
background-color: rgba( 0, 0, 0, 0.2 );
|
||||
border-radius: 30px;
|
||||
}
|
||||
|
||||
.scroll-symbol {
|
||||
font-size: 180%;
|
||||
animation: scroll-animation infinite 4s ease-in-out;
|
||||
}
|
||||
|
||||
@keyframes scroll-animation {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(0);
|
||||
}
|
||||
10% {
|
||||
opacity: 1;
|
||||
}
|
||||
65% {
|
||||
opacity: 0.8;
|
||||
}
|
||||
75% {
|
||||
opacity: 0;
|
||||
transform: translateY(25px);
|
||||
}
|
||||
100% {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@@ -1,97 +0,0 @@
|
||||
window.scrollHint = ( maxScroll ) => {
|
||||
let isShowing = false;
|
||||
const el = document.getElementById( 'scroll-indicator' );
|
||||
if ( !el ) {
|
||||
throw new Error( 'There is no element with ID "scroll-indicator" present on DOM' );
|
||||
}
|
||||
el.innerHTML = `
|
||||
<div class="scroll-wrapper">
|
||||
<div class="scroll-container">
|
||||
Scroll to discover more
|
||||
<span class="material-symbols-outlined scroll-symbol">keyboard_double_arrow_down</span>
|
||||
</div>
|
||||
</div>`;
|
||||
|
||||
el.onclick = () => {
|
||||
if ( window.scrollY === 0 ) {
|
||||
window.scrollTo( { 'top': window.innerHeight, 'behavior': 'smooth' } );
|
||||
} else if ( window.scrollY % window.innerHeight === 0 ) {
|
||||
window.scrollTo( { 'top': ( Math.ceil( window.scrollY / window.innerHeight ) + 1 ) * window.innerHeight, 'behavior': 'smooth' } );
|
||||
} else {
|
||||
window.scrollTo( { 'top': Math.ceil( window.scrollY / window.innerHeight ) * window.innerHeight, 'behavior': 'smooth' } );
|
||||
}
|
||||
el.classList.remove( 'show-scroll' );
|
||||
el.classList.add( 'hide-scroll' );
|
||||
try {
|
||||
clearTimeout( scrollCorrectionTimeout );
|
||||
} catch ( _err ) {};
|
||||
isShowing = false;
|
||||
timeout = setTimeout( () => { showHint() }, 2500 );
|
||||
}
|
||||
|
||||
let lastScrollTimeStamp = new Date().getTime();
|
||||
let scrollInterval = 0;
|
||||
document.onscroll = () => {
|
||||
try {
|
||||
clearTimeout( timeout );
|
||||
} catch ( _e ) {}
|
||||
try {
|
||||
clearTimeout( scrollCorrectionTimeout );
|
||||
} catch ( _err ) {};
|
||||
if ( isShowing ) {
|
||||
isShowing = false;
|
||||
el.classList.remove( 'show-scroll' );
|
||||
el.classList.add( 'hide-scroll' );
|
||||
}
|
||||
|
||||
if ( scrollInterval === 0 ) {
|
||||
scrollInterval = setInterval( () => {
|
||||
if ( lastScrollTimeStamp < new Date().getTime() + 500 ) {
|
||||
scrollCorrectionTimeout = setTimeout( () => {
|
||||
scrollCorrection();
|
||||
}, 1000 );
|
||||
timeout = setTimeout( () => {
|
||||
showHint();
|
||||
}, 2500 );
|
||||
try {
|
||||
clearInterval( scrollInterval );
|
||||
scrollInterval = 0;
|
||||
} catch ( e ) { /* empty */ }
|
||||
}
|
||||
}, 250 );
|
||||
}
|
||||
|
||||
lastScrollTimeStamp = new Date().getTime();
|
||||
};
|
||||
|
||||
window.onresize = () => {
|
||||
scrollCorrection();
|
||||
showHint();
|
||||
}
|
||||
|
||||
let timeout = setTimeout( () => {
|
||||
showHint();
|
||||
}, 2500 );
|
||||
|
||||
let scrollCorrectionTimeout = 0;
|
||||
|
||||
const showHint = () => {
|
||||
if ( Math.round( window.scrollY / window.innerHeight ) < maxScroll && maxScroll > 0 ) {
|
||||
el.classList.remove( 'hide-scroll' );
|
||||
el.classList.add( 'show-scroll' );
|
||||
isShowing = true;
|
||||
} else {
|
||||
el.classList.remove( 'show-scroll' );
|
||||
el.classList.add( 'hide-scroll' );
|
||||
isShowing = false;
|
||||
}
|
||||
}
|
||||
|
||||
const scrollCorrection = () => {
|
||||
if ( Math.round( window.scrollY / window.innerHeight ) <= maxScroll && maxScroll > 0 && Math.floor( window.scrollY / window.innerHeight ) < maxScroll ) {
|
||||
window.scrollTo( { top: Math.round( window.scrollY / window.innerHeight ) * window.innerHeight, behavior: 'smooth' } );
|
||||
}
|
||||
}
|
||||
|
||||
scrollCorrection();
|
||||
}
|
||||
@@ -1,704 +0,0 @@
|
||||
import vue from 'eslint-plugin-vue';
|
||||
import eslint from '@eslint/js';
|
||||
import globals from 'globals';
|
||||
import typescript from '@typescript-eslint/eslint-plugin';
|
||||
import stylistic from '@stylistic/eslint-plugin';
|
||||
import tseslint from 'typescript-eslint';
|
||||
|
||||
const style = {
|
||||
'plugins': {
|
||||
'@stylistic': stylistic,
|
||||
'@stylistic/js': stylistic,
|
||||
'@stylistic/ts': stylistic,
|
||||
},
|
||||
'files': [
|
||||
'**/*.ts',
|
||||
'**/*.js',
|
||||
'**/*.mjs',
|
||||
'**/*.cjs',
|
||||
'**/*.tsx',
|
||||
'**/*.jsx'
|
||||
],
|
||||
'rules': {
|
||||
// Formatting
|
||||
'@stylistic/array-bracket-newline': [
|
||||
'error',
|
||||
{
|
||||
'multiline': true,
|
||||
'minItems': 2
|
||||
}
|
||||
],
|
||||
'@stylistic/array-bracket-spacing': [
|
||||
'error',
|
||||
'always'
|
||||
],
|
||||
'@stylistic/array-element-newline': [
|
||||
'error',
|
||||
{
|
||||
'multiline': true,
|
||||
'minItems': 2
|
||||
}
|
||||
],
|
||||
'@stylistic/arrow-parens': [
|
||||
'error',
|
||||
'as-needed'
|
||||
],
|
||||
'@stylistic/arrow-spacing': [
|
||||
'error',
|
||||
{
|
||||
'before': true,
|
||||
'after': true
|
||||
}
|
||||
],
|
||||
'@stylistic/block-spacing': [
|
||||
'error',
|
||||
'always'
|
||||
],
|
||||
'@stylistic/brace-style': [
|
||||
'error',
|
||||
'1tbs'
|
||||
],
|
||||
'@stylistic/comma-spacing': [
|
||||
'error',
|
||||
{
|
||||
'before': false,
|
||||
'after': true
|
||||
}
|
||||
],
|
||||
'@stylistic/comma-style': [
|
||||
'error',
|
||||
'last'
|
||||
],
|
||||
'@stylistic/dot-location': [
|
||||
'error',
|
||||
'property'
|
||||
],
|
||||
'@stylistic/eol-last': [
|
||||
'error',
|
||||
'always'
|
||||
],
|
||||
'@stylistic/function-call-spacing': [
|
||||
'error',
|
||||
'never'
|
||||
],
|
||||
'@stylistic/function-paren-newline': [
|
||||
'error',
|
||||
{
|
||||
'minItems': 3
|
||||
}
|
||||
],
|
||||
'@stylistic/function-call-argument-newline': [
|
||||
'error',
|
||||
'consistent'
|
||||
],
|
||||
'@stylistic/implicit-arrow-linebreak': [
|
||||
'error',
|
||||
'beside'
|
||||
],
|
||||
'@stylistic/indent': [
|
||||
'error',
|
||||
4
|
||||
],
|
||||
'@stylistic/key-spacing': [
|
||||
'error',
|
||||
{
|
||||
'beforeColon': false,
|
||||
'afterColon': true
|
||||
}
|
||||
],
|
||||
'@stylistic/keyword-spacing': [
|
||||
'error',
|
||||
{
|
||||
'before': true,
|
||||
'after': true
|
||||
}
|
||||
],
|
||||
'@stylistic/lines-between-class-members': [
|
||||
'error',
|
||||
'always'
|
||||
],
|
||||
'@stylistic/max-len': [
|
||||
'warn',
|
||||
{
|
||||
'code': 120,
|
||||
'comments': 140,
|
||||
'ignoreComments': false,
|
||||
'ignoreUrls': true,
|
||||
'ignoreStrings': false
|
||||
}
|
||||
],
|
||||
'@stylistic/new-parens': [
|
||||
'error',
|
||||
'always'
|
||||
],
|
||||
'@stylistic/newline-per-chained-call': [ 'error' ],
|
||||
'@stylistic/no-extra-parens': [
|
||||
'error',
|
||||
'all',
|
||||
{
|
||||
'nestedBinaryExpressions': false,
|
||||
'ternaryOperandBinaryExpressions': false,
|
||||
'ignoreJSX': 'multi-line',
|
||||
'nestedConditionalExpressions': false
|
||||
}
|
||||
],
|
||||
'@stylistic/no-extra-semi': 'error',
|
||||
'@stylistic/no-floating-decimal': 'error',
|
||||
'@stylistic/no-mixed-operators': 'error',
|
||||
'@stylistic/no-mixed-spaces-and-tabs': 'error',
|
||||
'@stylistic/no-multi-spaces': 'error',
|
||||
'@stylistic/no-multiple-empty-lines': [
|
||||
'error',
|
||||
{
|
||||
'max': 3,
|
||||
'maxEOF': 2
|
||||
}
|
||||
],
|
||||
'@stylistic/no-tabs': 'error',
|
||||
'@stylistic/no-trailing-spaces': 'error',
|
||||
'@stylistic/no-whitespace-before-property': 'error',
|
||||
'@stylistic/object-curly-newline': [
|
||||
'error',
|
||||
{
|
||||
'multiline': true,
|
||||
'minProperties': 1
|
||||
}
|
||||
],
|
||||
'@stylistic/object-curly-spacing': [
|
||||
'error',
|
||||
'always'
|
||||
],
|
||||
'@stylistic/object-property-newline': 'error',
|
||||
'@stylistic/operator-linebreak': [
|
||||
'error',
|
||||
'before'
|
||||
],
|
||||
'@stylistic/one-var-declaration-per-line': 'error',
|
||||
'@stylistic/padded-blocks': [
|
||||
'error',
|
||||
{
|
||||
'blocks': 'never',
|
||||
'classes': 'always',
|
||||
'switches': 'never',
|
||||
}
|
||||
],
|
||||
|
||||
// Padding lines. The most in-depth part of this config
|
||||
'@stylistic/padding-line-between-statements': [
|
||||
'error',
|
||||
// Variables, Constants
|
||||
{
|
||||
'blankLine': 'never',
|
||||
'prev': 'var',
|
||||
'next': 'var'
|
||||
},
|
||||
{
|
||||
'blankLine': 'never',
|
||||
'prev': 'let',
|
||||
'next': 'let'
|
||||
},
|
||||
{
|
||||
'blankLine': 'never',
|
||||
'prev': 'const',
|
||||
'next': 'const'
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': 'var',
|
||||
'next': [
|
||||
'block',
|
||||
'block-like',
|
||||
'break',
|
||||
'cjs-export',
|
||||
'cjs-import',
|
||||
'class',
|
||||
'const',
|
||||
'continue',
|
||||
'debugger',
|
||||
'directive',
|
||||
'do',
|
||||
'empty',
|
||||
'export',
|
||||
'expression',
|
||||
'for',
|
||||
'function',
|
||||
'if',
|
||||
'iife',
|
||||
'import',
|
||||
'let',
|
||||
'return',
|
||||
'switch',
|
||||
'throw',
|
||||
'try',
|
||||
'var',
|
||||
'with'
|
||||
]
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': 'let',
|
||||
'next': [
|
||||
'block',
|
||||
'block-like',
|
||||
'break',
|
||||
'cjs-export',
|
||||
'cjs-import',
|
||||
'class',
|
||||
'const',
|
||||
'continue',
|
||||
'debugger',
|
||||
'directive',
|
||||
'do',
|
||||
'empty',
|
||||
'export',
|
||||
'expression',
|
||||
'for',
|
||||
'function',
|
||||
'if',
|
||||
'iife',
|
||||
'import',
|
||||
'return',
|
||||
'switch',
|
||||
'throw',
|
||||
'try',
|
||||
'var',
|
||||
'while',
|
||||
'with'
|
||||
]
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': 'const',
|
||||
'next': [
|
||||
'block',
|
||||
'block-like',
|
||||
'break',
|
||||
'cjs-export',
|
||||
'cjs-import',
|
||||
'class',
|
||||
'continue',
|
||||
'debugger',
|
||||
'directive',
|
||||
'do',
|
||||
'empty',
|
||||
'export',
|
||||
'expression',
|
||||
'for',
|
||||
'function',
|
||||
'if',
|
||||
'iife',
|
||||
'import',
|
||||
'let',
|
||||
'return',
|
||||
'switch',
|
||||
'throw',
|
||||
'try',
|
||||
'var',
|
||||
'while',
|
||||
'with'
|
||||
]
|
||||
},
|
||||
// Import
|
||||
{
|
||||
'blankLine': 'never',
|
||||
'prev': 'import',
|
||||
'next': 'import'
|
||||
},
|
||||
{
|
||||
'blankLine': 'never',
|
||||
'prev': 'cjs-import',
|
||||
'next': 'cjs-import'
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': [
|
||||
'block',
|
||||
'block-like',
|
||||
'break',
|
||||
'cjs-export',
|
||||
'class',
|
||||
'const',
|
||||
'continue',
|
||||
'debugger',
|
||||
'directive',
|
||||
'do',
|
||||
'empty',
|
||||
'export',
|
||||
'expression',
|
||||
'for',
|
||||
'function',
|
||||
'if',
|
||||
'iife',
|
||||
'let',
|
||||
'return',
|
||||
'switch',
|
||||
'throw',
|
||||
'try',
|
||||
'var',
|
||||
'while',
|
||||
'with'
|
||||
],
|
||||
'next': 'cjs-import'
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': 'cjs-import',
|
||||
'next': [
|
||||
'block',
|
||||
'block-like',
|
||||
'break',
|
||||
'cjs-export',
|
||||
'class',
|
||||
'const',
|
||||
'continue',
|
||||
'debugger',
|
||||
'directive',
|
||||
'do',
|
||||
'empty',
|
||||
'export',
|
||||
'expression',
|
||||
'for',
|
||||
'function',
|
||||
'if',
|
||||
'iife',
|
||||
'let',
|
||||
'return',
|
||||
'switch',
|
||||
'throw',
|
||||
'try',
|
||||
'var',
|
||||
'while',
|
||||
'with'
|
||||
]
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': [
|
||||
'block',
|
||||
'block-like',
|
||||
'break',
|
||||
'cjs-export',
|
||||
'class',
|
||||
'const',
|
||||
'continue',
|
||||
'debugger',
|
||||
'directive',
|
||||
'do',
|
||||
'empty',
|
||||
'export',
|
||||
'expression',
|
||||
'for',
|
||||
'function',
|
||||
'if',
|
||||
'iife',
|
||||
'let',
|
||||
'return',
|
||||
'switch',
|
||||
'throw',
|
||||
'try',
|
||||
'var',
|
||||
'while',
|
||||
'with'
|
||||
],
|
||||
'next': 'import'
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': 'import',
|
||||
'next': [
|
||||
'block',
|
||||
'block-like',
|
||||
'break',
|
||||
'cjs-export',
|
||||
'class',
|
||||
'const',
|
||||
'continue',
|
||||
'debugger',
|
||||
'directive',
|
||||
'do',
|
||||
'empty',
|
||||
'export',
|
||||
'expression',
|
||||
'for',
|
||||
'function',
|
||||
'if',
|
||||
'iife',
|
||||
'let',
|
||||
'return',
|
||||
'switch',
|
||||
'throw',
|
||||
'try',
|
||||
'var',
|
||||
'while',
|
||||
'with'
|
||||
]
|
||||
},
|
||||
// If
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': '*',
|
||||
'next': 'if'
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': 'if',
|
||||
'next': '*'
|
||||
},
|
||||
// For
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': '*',
|
||||
'next': 'for'
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': 'for',
|
||||
'next': '*'
|
||||
},
|
||||
// While
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': '*',
|
||||
'next': 'while'
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': 'while',
|
||||
'next': '*'
|
||||
},
|
||||
// Functions
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': '*',
|
||||
'next': 'function'
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': 'function',
|
||||
'next': '*'
|
||||
},
|
||||
// Block Statements
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': '*',
|
||||
'next': 'block-like'
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': 'block-like',
|
||||
'next': '*'
|
||||
},
|
||||
// Switch
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': '*',
|
||||
'next': 'switch'
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': 'switch',
|
||||
'next': '*'
|
||||
},
|
||||
// Try-Catch
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': '*',
|
||||
'next': 'try'
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': 'try',
|
||||
'next': '*'
|
||||
},
|
||||
// Throw
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': '*',
|
||||
'next': 'throw'
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': 'throw',
|
||||
'next': '*'
|
||||
},
|
||||
// Return
|
||||
{
|
||||
'blankLine': 'never',
|
||||
'prev': 'return',
|
||||
'next': '*'
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': '*',
|
||||
'next': 'return'
|
||||
},
|
||||
// Export
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': '*',
|
||||
'next': 'export'
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': 'export',
|
||||
'next': '*'
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': '*',
|
||||
'next': 'cjs-export'
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': 'cjs-export',
|
||||
'next': '*'
|
||||
},
|
||||
// Classes
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': '*',
|
||||
'next': 'class'
|
||||
},
|
||||
{
|
||||
'blankLine': 'always',
|
||||
'prev': 'class',
|
||||
'next': '*'
|
||||
},
|
||||
],
|
||||
'@stylistic/quote-props': [
|
||||
'error',
|
||||
'always'
|
||||
],
|
||||
'@stylistic/quotes': [
|
||||
'error',
|
||||
'single'
|
||||
],
|
||||
'@stylistic/rest-spread-spacing': [
|
||||
'error',
|
||||
'never'
|
||||
],
|
||||
'@stylistic/semi': [
|
||||
'error',
|
||||
'always'
|
||||
],
|
||||
'@stylistic/semi-spacing': [
|
||||
'error',
|
||||
{
|
||||
'before': false,
|
||||
'after': true
|
||||
}
|
||||
],
|
||||
'@stylistic/semi-style': [
|
||||
'error',
|
||||
'last'
|
||||
],
|
||||
'@stylistic/space-before-blocks': [
|
||||
'error',
|
||||
'always'
|
||||
],
|
||||
'@stylistic/space-before-function-paren': [
|
||||
'error',
|
||||
'always'
|
||||
],
|
||||
'@stylistic/space-in-parens': [
|
||||
'error',
|
||||
'always'
|
||||
],
|
||||
'@stylistic/space-infix-ops': [
|
||||
'error',
|
||||
{
|
||||
'int32Hint': false
|
||||
}
|
||||
],
|
||||
'@stylistic/space-unary-ops': 'error',
|
||||
'@stylistic/spaced-comment': [
|
||||
'error',
|
||||
'always'
|
||||
],
|
||||
'@stylistic/template-curly-spacing': [
|
||||
'error',
|
||||
'always'
|
||||
],
|
||||
'@stylistic/switch-colon-spacing': 'error',
|
||||
'@stylistic/wrap-iife': [
|
||||
'error',
|
||||
'inside'
|
||||
],
|
||||
'@stylistic/wrap-regex': 'error',
|
||||
'@stylistic/ts/type-annotation-spacing': 'error',
|
||||
}
|
||||
};
|
||||
|
||||
/** @type {import('eslint').Linter.Config} */
|
||||
export default tseslint.config(
|
||||
// Base JavaScript rules
|
||||
eslint.configs.recommended,
|
||||
tseslint.configs.recommended,
|
||||
style,
|
||||
|
||||
// Vue support (including TS and JSX inside SFCs)
|
||||
{
|
||||
'files': [ '**/*.vue' ],
|
||||
'languageOptions': {
|
||||
'sourceType': 'module',
|
||||
'ecmaVersion': 'latest',
|
||||
'globals': globals.browser,
|
||||
'parserOptions': {
|
||||
'parser': tseslint.parser,
|
||||
},
|
||||
},
|
||||
'plugins': {
|
||||
'vue': vue,
|
||||
'@stylistic': stylistic,
|
||||
'@stylistic/js': stylistic,
|
||||
'@stylistic/ts': stylistic,
|
||||
'@typescript-eslint': typescript,
|
||||
},
|
||||
'extends': [
|
||||
eslint.configs.recommended,
|
||||
...vue.configs['flat/recommended']
|
||||
],
|
||||
'rules': {
|
||||
...typescript.configs.recommended.rules,
|
||||
...style.rules,
|
||||
|
||||
// Vue specific rules
|
||||
'@stylistic/indent': 'off',
|
||||
'vue/html-indent': [
|
||||
'error',
|
||||
4
|
||||
],
|
||||
'vue/html-comment-indent': [
|
||||
'error',
|
||||
4
|
||||
],
|
||||
'vue/script-indent': [
|
||||
'error',
|
||||
4,
|
||||
{
|
||||
'baseIndent': 1,
|
||||
'switchCase': 1
|
||||
}
|
||||
],
|
||||
'vue/html-self-closing': [
|
||||
'error',
|
||||
{
|
||||
'html': {
|
||||
'void': 'never',
|
||||
'normal': 'never',
|
||||
'component': 'always'
|
||||
},
|
||||
'svg': 'always',
|
||||
'math': 'never'
|
||||
}
|
||||
],
|
||||
'vue/max-attributes-per-line': [
|
||||
'error',
|
||||
{
|
||||
'singleline': 3,
|
||||
'multiline': 1,
|
||||
}
|
||||
],
|
||||
},
|
||||
},
|
||||
);
|
||||
@@ -1,34 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Slider</title>
|
||||
<style>
|
||||
body, html {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="/slider.css">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Sliders</h1>
|
||||
<!-- Style the slider class with width, height and borders, don't touch the other classes, except for colours -->
|
||||
<div class="slider" style="width: 100vw; height: 80vh;">
|
||||
<div class="slider-container">
|
||||
<div class="slider-element" style="background-image: url( 'https://store-cdn.janishutz.com/assets/promo-images/math-summaries-desktop.jpg' );"></div>
|
||||
<div class="slider-element" style="background-image: url( 'https://store-cdn.janishutz.com/assets/promo-images/libreevent-desktop.jpg' );"></div>
|
||||
<div class="slider-element" style="background-image: url( 'https://store-cdn.janishutz.com/assets/promo-images/donate-desktop.jpg' );"></div>
|
||||
</div>
|
||||
<div class="slider-controls slider-control-left" onclick="sliderControl( 'previous' )">⮜</div>
|
||||
<div class="slider-controls slider-control-right" onclick="sliderControl( 'next' )">⮞</div>
|
||||
</div>
|
||||
|
||||
<script src="/js/slider.js"></script>
|
||||
<script>activateSlider( 5000 )</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,177 +0,0 @@
|
||||
/* eslint-disable no-var */
|
||||
const fetchedElements = document.getElementsByClassName('slider-element');
|
||||
const sliderElements = [];
|
||||
let okToMove = true;
|
||||
let currentSlideIndex = 0;
|
||||
const sliderContainer = document.getElementsByClassName('slider-container')[0];
|
||||
function sliderGoToIndex(index) {
|
||||
if (okToMove) {
|
||||
if (index < sliderElements.length && index >= 0) {
|
||||
okToMove = false;
|
||||
// Determine next and previous elements
|
||||
let previousElement = 0;
|
||||
let nextElement = 0;
|
||||
let beforePreviousElement = 0;
|
||||
if (index < sliderElements.length - 1) {
|
||||
nextElement = index + 1;
|
||||
}
|
||||
else {
|
||||
nextElement = 0;
|
||||
}
|
||||
if (index === 0) {
|
||||
previousElement = sliderElements.length - 1;
|
||||
}
|
||||
else {
|
||||
previousElement = index - 1;
|
||||
}
|
||||
if (index === 0) {
|
||||
beforePreviousElement = sliderElements.length - 2;
|
||||
}
|
||||
else if (index === 1) {
|
||||
beforePreviousElement = sliderElements.length - 1;
|
||||
}
|
||||
else {
|
||||
beforePreviousElement = index - 2;
|
||||
}
|
||||
// Determine move direction:
|
||||
// true = next, false = previous
|
||||
let moveDirection = true;
|
||||
if ((index < currentSlideIndex || (index === sliderElements.length - 1 && currentSlideIndex === 0))
|
||||
&& !(index === 0 && currentSlideIndex === sliderElements.length - 1)) {
|
||||
moveDirection = false;
|
||||
}
|
||||
/*
|
||||
Add correct classes to all elements
|
||||
*/
|
||||
// New current element
|
||||
sliderElements[index].classList.add('current');
|
||||
sliderElements[index].classList.remove('next');
|
||||
sliderElements[index].classList.remove('last');
|
||||
sliderElements[index].classList.remove('past');
|
||||
// New next element
|
||||
if (moveDirection) {
|
||||
sliderElements[nextElement].classList.add('future');
|
||||
}
|
||||
else {
|
||||
sliderElements[nextElement].classList.add('next');
|
||||
}
|
||||
sliderElements[nextElement].classList.remove('current');
|
||||
sliderElements[nextElement].classList.remove('past');
|
||||
sliderElements[nextElement].classList.remove('last');
|
||||
// new past element
|
||||
sliderElements[previousElement].classList.add('last');
|
||||
sliderElements[previousElement].classList.remove('current');
|
||||
sliderElements[previousElement].classList.remove('past');
|
||||
sliderElements[previousElement].classList.remove('next');
|
||||
sliderElements[beforePreviousElement].classList.add('past');
|
||||
sliderElements[beforePreviousElement].classList.remove('last');
|
||||
sliderElements[beforePreviousElement].classList.remove('next');
|
||||
sliderElements[beforePreviousElement].classList.remove('current');
|
||||
// Glitch fixes
|
||||
setTimeout(() => {
|
||||
if (moveDirection) {
|
||||
sliderElements[nextElement].classList.add('next');
|
||||
sliderElements[nextElement].classList.remove('future');
|
||||
}
|
||||
currentSlideIndex = index;
|
||||
setTimeout(() => {
|
||||
okToMove = true;
|
||||
}, 500);
|
||||
}, 1000);
|
||||
}
|
||||
else if (index < 0) {
|
||||
sliderGoToIndex(sliderElements.length - 1);
|
||||
}
|
||||
else {
|
||||
sliderGoToIndex(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
var sliderControl = (action) => {
|
||||
if (action === 'next') {
|
||||
sliderGoToIndex(currentSlideIndex + 1);
|
||||
}
|
||||
else if (action === 'previous') {
|
||||
sliderGoToIndex(currentSlideIndex - 1);
|
||||
}
|
||||
sliderAutoAdvance();
|
||||
};
|
||||
let sliderAutoAdvanceInterval = 0;
|
||||
let sliderInterval = 0;
|
||||
/**
|
||||
* Set up the slider and give it an interval for auto advancing
|
||||
* @param interval - The interval at which to auto advance
|
||||
* @param name - The name of the platform (like desktop, used to load different images)
|
||||
*/
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
var activateSlider = (interval, name) => {
|
||||
sliderAutoAdvanceInterval = interval;
|
||||
sliderContainer.addEventListener('mouseenter', () => {
|
||||
stopSliderAutoAdvance();
|
||||
});
|
||||
sliderContainer.addEventListener('mouseleave', () => {
|
||||
sliderAutoAdvance();
|
||||
});
|
||||
document.addEventListener('blur', () => {
|
||||
stopSliderAutoAdvance();
|
||||
});
|
||||
window.addEventListener('focus', () => {
|
||||
sliderAutoAdvance();
|
||||
});
|
||||
sliderAutoAdvance();
|
||||
loadImageType(name);
|
||||
};
|
||||
const sliderAutoAdvance = () => {
|
||||
if (sliderAutoAdvanceInterval > 0) {
|
||||
stopSliderAutoAdvance();
|
||||
sliderInterval = setInterval(() => {
|
||||
sliderGoToIndex(currentSlideIndex + 1);
|
||||
}, sliderAutoAdvanceInterval);
|
||||
}
|
||||
};
|
||||
const stopSliderAutoAdvance = () => {
|
||||
try {
|
||||
clearInterval(sliderInterval);
|
||||
}
|
||||
catch (e) {
|
||||
console.debug(e);
|
||||
}
|
||||
};
|
||||
const allowedExtensions = [
|
||||
'webp',
|
||||
'jpg',
|
||||
'jpeg',
|
||||
'svg',
|
||||
'png'
|
||||
];
|
||||
/**
|
||||
* Load type of image, can be used to load images for different platforms (i.e. mobile optimization)
|
||||
* @param postfix - What is appended to each image after a dash. Example: /path/to/image becomes /path/to/image-platform.jpg
|
||||
* for postfix = platform
|
||||
*/
|
||||
var loadImageType = (postfix) => {
|
||||
sliderElements.forEach(el => {
|
||||
const baseURL = el.dataset.imageBaseUrl;
|
||||
const filetype = el.dataset.filetype;
|
||||
if (allowedExtensions.indexOf(filetype) === -1) {
|
||||
console.warn('[ SLIDER ] Invalid filetype ' + filetype + ' for image element with id ' + el.id);
|
||||
return;
|
||||
}
|
||||
if (!baseURL) {
|
||||
console.error('[ SLIDER ] ImageBaseURL undefined for element with id ' + el.id);
|
||||
return;
|
||||
}
|
||||
if (baseURL.lastIndexOf('.') > baseURL.lastIndexOf('/')) {
|
||||
console.warn('[ SLIDER ] ImageBaseURL incorrect for element with id ' + el.id);
|
||||
return;
|
||||
}
|
||||
el.style.backgroundImage = `url( ${baseURL}-${postfix + filetype} )`;
|
||||
});
|
||||
};
|
||||
for (const el in fetchedElements) {
|
||||
if (fetchedElements[el].className) {
|
||||
sliderElements.push(fetchedElements[el]);
|
||||
}
|
||||
}
|
||||
sliderGoToIndex(0);
|
||||
1848
components/slider/package-lock.json
generated
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"dependencies": {
|
||||
"typescript": "^5.5.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^9.36.0",
|
||||
"@stylistic/eslint-plugin": "^5.4.0",
|
||||
"eslint-plugin-vue": "^10.5.0",
|
||||
"typescript-eslint": "^8.44.1"
|
||||
}
|
||||
}
|
||||
@@ -1,77 +0,0 @@
|
||||
.slider {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.slider-container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.slider-controls {
|
||||
position: absolute;
|
||||
font-size: 3rem;
|
||||
top: calc( 50% - 1.5rem );
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
padding: 0.5rem 1rem;
|
||||
background-color: white;
|
||||
text-align: center;
|
||||
text-indent: 0;
|
||||
line-height: 1;
|
||||
transform: scale( 1 );
|
||||
transition: all 0.5s;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.slider-controls:hover {
|
||||
transform: scale( 1.1 );
|
||||
}
|
||||
|
||||
.slider-control-left {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.slider-control-right {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.slider-element {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
transition: left 1s;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.slider-element.past {
|
||||
z-index: 2;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.slider-element.last {
|
||||
z-index: 3;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.slider-element.current {
|
||||
z-index: 4;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.slider-element.future {
|
||||
z-index: -1;
|
||||
left: 110%;
|
||||
}
|
||||
|
||||
.slider-element.next {
|
||||
z-index: 5;
|
||||
left: 150%;
|
||||
}
|
||||
@@ -1,66 +0,0 @@
|
||||
/* eslint-disable no-var */
|
||||
interface SizeConfig {
|
||||
[name: string]: {
|
||||
'min-width': number;
|
||||
'max-width': number;
|
||||
}
|
||||
}
|
||||
let sizeConfig: SizeConfig = {};
|
||||
|
||||
|
||||
var resizeConfigure = ( config: SizeConfig ) => {
|
||||
sizeConfig = config;
|
||||
};
|
||||
|
||||
|
||||
const handleResize = () => {
|
||||
const sizes = Object.keys( sizeConfig );
|
||||
|
||||
for ( let i = 0; i < sizes.length; i++ ) {
|
||||
const size = sizes[i];
|
||||
|
||||
if (
|
||||
window.innerWidth < sizeConfig[ size ][ 'max-width' ]
|
||||
&& window.innerWidth > sizeConfig[ size ][ 'min-width' ] ) {}
|
||||
}
|
||||
};
|
||||
|
||||
const allowedExtensions = [
|
||||
'webp',
|
||||
'jpg',
|
||||
'jpeg',
|
||||
'svg',
|
||||
'png'
|
||||
];
|
||||
|
||||
/**
|
||||
* Load type of image, can be used to load images for different platforms (i.e. mobile optimization)
|
||||
* @param postfix - What is appended to each image after a dash. Example: /path/to/image becomes /path/to/image-platform.jpg
|
||||
* for postfix = platform
|
||||
*/
|
||||
const loadImageType = ( postfix: string ) => {
|
||||
sliderElements.forEach( el => {
|
||||
const baseURL = el.dataset.imageBaseUrl;
|
||||
const filetype = el.dataset.filetype;
|
||||
|
||||
if ( allowedExtensions.indexOf( filetype ) === -1 ) {
|
||||
console.warn( '[ SLIDER ] Invalid filetype ' + filetype + ' for image element with id ' + el.id );
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if ( !baseURL ) {
|
||||
console.error( '[ SLIDER ] ImageBaseURL undefined for element with id ' + el.id );
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if ( baseURL.lastIndexOf( '.' ) > baseURL.lastIndexOf( '/' ) ) {
|
||||
console.warn( '[ SLIDER ] ImageBaseURL incorrect for element with id ' + el.id );
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
el.style.backgroundImage = `url( ${ baseURL }-${ postfix + filetype } )`;
|
||||
} );
|
||||
};
|
||||
@@ -1,172 +0,0 @@
|
||||
/* eslint-disable no-var */
|
||||
const fetchedElements = document.getElementsByClassName( 'slider-element' );
|
||||
const sliderElements: HTMLDivElement[] = [];
|
||||
|
||||
let okToMove = true;
|
||||
let currentSlideIndex = 0;
|
||||
|
||||
const sliderContainer: HTMLDivElement = document.getElementsByClassName( 'slider-container' )[ 0 ] as HTMLDivElement;
|
||||
|
||||
function sliderGoToIndex ( index: number ) {
|
||||
if ( okToMove ) {
|
||||
if ( index < sliderElements.length && index >= 0 ) {
|
||||
okToMove = false;
|
||||
// Determine next and previous elements
|
||||
let previousElement = 0;
|
||||
let nextElement = 0;
|
||||
let beforePreviousElement = 0;
|
||||
|
||||
if ( index < sliderElements.length - 1 ) {
|
||||
nextElement = index + 1;
|
||||
} else {
|
||||
nextElement = 0;
|
||||
}
|
||||
|
||||
if ( index === 0 ) {
|
||||
previousElement = sliderElements.length - 1;
|
||||
} else {
|
||||
previousElement = index - 1;
|
||||
}
|
||||
|
||||
if ( index === 0 ) {
|
||||
beforePreviousElement = sliderElements.length - 2;
|
||||
} else if ( index === 1 ) {
|
||||
beforePreviousElement = sliderElements.length - 1;
|
||||
} else {
|
||||
beforePreviousElement = index - 2;
|
||||
}
|
||||
|
||||
// Determine move direction:
|
||||
// true = next, false = previous
|
||||
let moveDirection = true;
|
||||
|
||||
if (
|
||||
( index < currentSlideIndex || ( index === sliderElements.length - 1 && currentSlideIndex === 0 ) )
|
||||
&& !( index === 0 && currentSlideIndex === sliderElements.length - 1 )
|
||||
) {
|
||||
moveDirection = false;
|
||||
}
|
||||
|
||||
/*
|
||||
Add correct classes to all elements
|
||||
*/
|
||||
|
||||
// New current element
|
||||
sliderElements[ index ].classList.add( 'current' );
|
||||
sliderElements[ index ].classList.remove( 'next' );
|
||||
sliderElements[ index ].classList.remove( 'last' );
|
||||
sliderElements[ index ].classList.remove( 'past' );
|
||||
|
||||
// New next element
|
||||
if ( moveDirection ) {
|
||||
sliderElements[ nextElement ].classList.add( 'future' );
|
||||
} else {
|
||||
sliderElements[ nextElement ].classList.add( 'next' );
|
||||
}
|
||||
|
||||
sliderElements[ nextElement ].classList.remove( 'current' );
|
||||
sliderElements[ nextElement ].classList.remove( 'past' );
|
||||
sliderElements[ nextElement ].classList.remove( 'last' );
|
||||
|
||||
// new past element
|
||||
sliderElements[ previousElement ].classList.add( 'last' );
|
||||
sliderElements[ previousElement ].classList.remove( 'current' );
|
||||
sliderElements[ previousElement ].classList.remove( 'past' );
|
||||
sliderElements[ previousElement ].classList.remove( 'next' );
|
||||
sliderElements[ beforePreviousElement ].classList.add( 'past' );
|
||||
sliderElements[ beforePreviousElement ].classList.remove( 'last' );
|
||||
sliderElements[ beforePreviousElement ].classList.remove( 'next' );
|
||||
sliderElements[ beforePreviousElement ].classList.remove( 'current' );
|
||||
|
||||
// Glitch fixes
|
||||
setTimeout( () => {
|
||||
if ( moveDirection ) {
|
||||
sliderElements[ nextElement ].classList.add( 'next' );
|
||||
sliderElements[ nextElement ].classList.remove( 'future' );
|
||||
}
|
||||
|
||||
currentSlideIndex = index;
|
||||
setTimeout( () => {
|
||||
okToMove = true;
|
||||
}, 500 );
|
||||
}, 1000 );
|
||||
} else if ( index < 0 ) {
|
||||
sliderGoToIndex( sliderElements.length - 1 );
|
||||
} else {
|
||||
sliderGoToIndex( 0 );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
type SliderAction = 'next' | 'previous';
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
var sliderControl = ( action: SliderAction ) => {
|
||||
if ( action === 'next' ) {
|
||||
sliderGoToIndex( currentSlideIndex + 1 );
|
||||
} else if ( action === 'previous' ) {
|
||||
sliderGoToIndex( currentSlideIndex - 1 );
|
||||
}
|
||||
|
||||
sliderAutoAdvance();
|
||||
};
|
||||
|
||||
let sliderAutoAdvanceInterval = 0;
|
||||
let sliderInterval = 0;
|
||||
|
||||
|
||||
/**
|
||||
* Set up the slider and give it an interval for auto advancing
|
||||
* @param interval - The interval at which to auto advance
|
||||
* @param name - The name of the platform (like desktop, used to load different images)
|
||||
*/
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
var activateSlider = ( interval: number, name: string ) => {
|
||||
sliderAutoAdvanceInterval = interval;
|
||||
sliderContainer.addEventListener( 'mouseenter', () => {
|
||||
stopSliderAutoAdvance();
|
||||
} );
|
||||
|
||||
sliderContainer.addEventListener( 'mouseleave', () => {
|
||||
sliderAutoAdvance();
|
||||
} );
|
||||
|
||||
document.addEventListener( 'blur', () => {
|
||||
stopSliderAutoAdvance();
|
||||
} );
|
||||
|
||||
window.addEventListener( 'focus', () => {
|
||||
sliderAutoAdvance();
|
||||
} );
|
||||
|
||||
sliderAutoAdvance();
|
||||
|
||||
loadImageType( name );
|
||||
};
|
||||
|
||||
const sliderAutoAdvance = () => {
|
||||
if ( sliderAutoAdvanceInterval > 0 ) {
|
||||
stopSliderAutoAdvance();
|
||||
sliderInterval = setInterval( () => {
|
||||
sliderGoToIndex( currentSlideIndex + 1 );
|
||||
}, sliderAutoAdvanceInterval );
|
||||
}
|
||||
};
|
||||
|
||||
const stopSliderAutoAdvance = () => {
|
||||
try {
|
||||
clearInterval( sliderInterval );
|
||||
} catch ( e ) {
|
||||
console.debug( e );
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
for ( const el in fetchedElements ) {
|
||||
if ( fetchedElements[ el ].className ) {
|
||||
sliderElements.push( ( fetchedElements[ el ] as HTMLDivElement ) );
|
||||
}
|
||||
}
|
||||
|
||||
sliderGoToIndex( 0 );
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"outDir": "./js",
|
||||
"allowJs": true,
|
||||
"target": "ES6",
|
||||
"skipLibCheck": true,
|
||||
},
|
||||
"include": [ "./ts/**/*" ],
|
||||
}
|
||||
@@ -1,24 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Timeline</title>
|
||||
<link rel="stylesheet" href="/timeline.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="timeline">
|
||||
<div class="timeline-line"></div>
|
||||
<div class="timeline-el" id="timeline-dot-1">
|
||||
<div class="timeline-year">Year</div>
|
||||
<div class="timeline-dot"></div>
|
||||
<div class="timeline-desc">Description</div>
|
||||
</div>
|
||||
<div class="timeline-el" id="timeline-dot-2">
|
||||
<div class="timeline-year">Year 2</div> <!-- TODO: Check date is accurate-->
|
||||
<div class="timeline-dot"></div>
|
||||
<div class="timeline-desc">Description 2</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,49 +0,0 @@
|
||||
.timeline {
|
||||
position: relative;
|
||||
display: block;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.timeline-el {
|
||||
z-index: 3;
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
margin-top: 30px;
|
||||
background: none;
|
||||
}
|
||||
|
||||
.timeline-dot {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background-color: rgb(21, 43, 92);
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
.timeline-year {
|
||||
margin-right: 20px;
|
||||
color: rgb(63, 63, 63);
|
||||
font-style: italic;
|
||||
width: 5rem;
|
||||
}
|
||||
|
||||
.timeline-desc {
|
||||
font-style: italic;
|
||||
font-weight: lighter;
|
||||
margin-left: 20px;
|
||||
max-width: calc( 100% - 5rem - 60px );
|
||||
}
|
||||
|
||||
.timeline-line {
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
height: calc(100% - 10px);
|
||||
top: 5px;
|
||||
width: 4px;
|
||||
background-color: rgb(110, 110, 110);
|
||||
display: flex;
|
||||
left: calc( 5rem + 28px );
|
||||
}
|
||||
@@ -1,25 +0,0 @@
|
||||
.yt-embed {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
background-color: rgb(173, 173, 173);
|
||||
}
|
||||
|
||||
.yt-embed-desc {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.yt-embed-button {
|
||||
padding: 20px;
|
||||
margin: 5px;
|
||||
background-color: red;
|
||||
color: white;
|
||||
border-radius: 10px;
|
||||
border: none;
|
||||
text-decoration: none;
|
||||
font-size: 1rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
@@ -1,22 +0,0 @@
|
||||
let isPrep = false;
|
||||
|
||||
|
||||
function YTEmbed ( elementBindID, videoID ) {
|
||||
if ( !isPrep ) {
|
||||
console.log( '[ YT-Embed ] Preparing...' );
|
||||
isPrep = true;
|
||||
const css = document.createElement( 'link' );
|
||||
css.rel = 'stylesheet';
|
||||
css.href = 'https://static.janishutz.com/css/yt-embed.css';
|
||||
// css.href = 'http://localhost:8081/yt-embed.css';
|
||||
document.head.appendChild( css );
|
||||
}
|
||||
const el = document.getElementById( elementBindID );
|
||||
el.innerHTML = `<div class="yt-embed"><p class="yt-embed-desc">YouTube Video was not loaded automatically to preserve your privacy. If you wish to load it here, click the button below!</p>
|
||||
<div><button class="yt-embed-button" onclick="activateYTEmbed( '${ elementBindID }', '${ videoID }' )">Load video</button><a href="https://youtube.com/watch?v=${ videoID }" class="yt-embed-button" target="_blank">View on YouTube</a></div></div>`;
|
||||
}
|
||||
|
||||
|
||||
function activateYTEmbed ( elementBindID, videoID ) {
|
||||
document.getElementById( elementBindID ).innerHTML = `<iframe width="420" height="315"src="https://www.youtube.com/embed/${ videoID }" class="yt-embed"></iframe>`;
|
||||
}
|
||||
31
css/altstyle.css
Executable file
@@ -0,0 +1,31 @@
|
||||
html, body {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-color: gray;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.logo img {
|
||||
width: 10%
|
||||
}
|
||||
|
||||
div {
|
||||
margin-right: 10%;
|
||||
margin-left: 10%;
|
||||
margin-top: 2%;
|
||||
margin-bottom: 2%;
|
||||
padding: 10%;
|
||||
padding-top: 5%;
|
||||
padding-bottom: 5%;
|
||||
border-color: black;
|
||||
border-style: double;
|
||||
border-radius: 3%;
|
||||
background-color:dimgray;
|
||||
}
|
||||
|
||||
|
||||
h1 {
|
||||
font-size: 300%;
|
||||
}
|
||||
24
css/footerstyle.css
Executable file
@@ -0,0 +1,24 @@
|
||||
.Footer-box {
|
||||
background-color: #38444d;
|
||||
width: 100%;
|
||||
margin-bottom: -1%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.footer-content-box {
|
||||
width: 80%;
|
||||
padding: 2%;
|
||||
}
|
||||
|
||||
.footer-center-box {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.footer-logo {
|
||||
width: 10%;
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
vertical-align: middle;
|
||||
}
|
||||
195
css/mainstyle.css
Executable file
@@ -0,0 +1,195 @@
|
||||
/*
|
||||
*
|
||||
* janishutz.com - mainstyle.css
|
||||
*
|
||||
*
|
||||
* Created 2023 by Janis Hutz
|
||||
*/
|
||||
|
||||
/*
|
||||
Set size of html and body to full width
|
||||
*/
|
||||
html, body {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: calc(14pt + 0.395vw);
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: rgba(70, 72, 167, 0.5);
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
/*
|
||||
Style for quotes
|
||||
*/
|
||||
.bigquote {
|
||||
width: 40%;
|
||||
font-size: 300%;
|
||||
}
|
||||
|
||||
.biggerquote {
|
||||
font-size: 150%;
|
||||
}
|
||||
|
||||
/*
|
||||
Styling for the main content element
|
||||
*/
|
||||
.mainstyle {
|
||||
margin-right: 5%;
|
||||
margin-left: 5%;
|
||||
margin-top: 2%;
|
||||
margin-bottom: 2%;
|
||||
padding: 5%;
|
||||
padding-top: 3%;
|
||||
padding-bottom: 3%;
|
||||
border-color: black;
|
||||
border-style: none;
|
||||
border-radius: 50px;
|
||||
background-color: rgba(195, 195, 229, 1);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
Styling for links and buttons
|
||||
*/
|
||||
.textlink {
|
||||
font-size: 100%;
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
transition: 1s;
|
||||
}
|
||||
|
||||
.textlink:hover {
|
||||
color: darkblue;
|
||||
font-size: 115%;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.linkbutton {
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
padding: 20px;
|
||||
color: white;
|
||||
background-color:rgba(0, 40, 131, 1);
|
||||
border-radius: 25px;
|
||||
transition: 1s;
|
||||
}
|
||||
|
||||
.linkbutton:hover {
|
||||
background-color: darkblue;
|
||||
border-radius: 5px;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.references {
|
||||
color: gray;
|
||||
}
|
||||
|
||||
/*
|
||||
This styles the container for the home page
|
||||
*/
|
||||
.title-container {
|
||||
background-image: url('/assets/codeSnippet.png');
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
width: 100%;
|
||||
height: 40vh;
|
||||
border-radius: 20px;
|
||||
color: white;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.title {
|
||||
text-align: center;
|
||||
font-size: 2.3rem;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
text-align: center;
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
|
||||
.content {
|
||||
font-size: 1rem;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-top: 5%;
|
||||
margin-bottom: 10%;
|
||||
}
|
||||
|
||||
.content-title {
|
||||
font-size: 3rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content-title-small {
|
||||
font-size: 2rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.pullquote-lines {
|
||||
border-color: black;
|
||||
margin-bottom: 2%;
|
||||
margin-top: 2%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/*
|
||||
Bottom container styling
|
||||
*/
|
||||
|
||||
.bottom {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.element {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
@media only screen and (min-width: 999px) {
|
||||
/*
|
||||
Align content side by side
|
||||
*/
|
||||
.sidebyside {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-grow: 1;
|
||||
gap: 5%;
|
||||
}
|
||||
|
||||
.element {
|
||||
width: 47%;
|
||||
}
|
||||
|
||||
.itemsInline {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
gap: 5%;
|
||||
margin-top: 3%;
|
||||
margin-bottom: 3%;
|
||||
}
|
||||
|
||||
.mainstyle {
|
||||
margin-right: 10%;
|
||||
margin-left: 10%;
|
||||
padding: 10%;
|
||||
padding-top: 5%;
|
||||
padding-bottom: 5%;
|
||||
}
|
||||
}
|
||||
155
css/menustyle.css
Executable file
@@ -0,0 +1,155 @@
|
||||
/*
|
||||
*
|
||||
* janishutz.com - menustyle.css
|
||||
*
|
||||
*
|
||||
* Created 2023 by Janis Hutz
|
||||
*/
|
||||
|
||||
::selection {
|
||||
background-color: darkblue;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.Menu {
|
||||
font-size: 0.8rem;
|
||||
margin-top: -1%;
|
||||
padding: 2%;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
background-color: rgba(56, 68, 77, 1);
|
||||
}
|
||||
|
||||
.logo {
|
||||
height: 10vh;
|
||||
display: inline-block;
|
||||
margin-left: 2%;
|
||||
position: relative;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.menu-container {
|
||||
display: none;
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.active {
|
||||
color: rgba(184, 214, 240, 1);
|
||||
}
|
||||
|
||||
.listtoggle {
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
font-size: 2.5rem;
|
||||
margin-right: 7%;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.toggle-wrapper {
|
||||
display: inline-flex;
|
||||
height: 100%;
|
||||
width: 70%;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.menu-container, .dropdown-menu {
|
||||
list-style: none;
|
||||
margin: 0 5%;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.menubutton {
|
||||
text-decoration: none;
|
||||
width: 96%;
|
||||
display: block;
|
||||
padding: 2%;
|
||||
color: white;
|
||||
transition: 0.6s;
|
||||
}
|
||||
|
||||
.menubutton:hover {
|
||||
background-color: darkblue;
|
||||
transition: 0.2s;
|
||||
}
|
||||
|
||||
.sub {
|
||||
width: 96%;
|
||||
}
|
||||
|
||||
.dropdown-menu {
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 999px) {
|
||||
.listtoggle, .toggle-wrapper {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.menu-wrapper {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.menu-container {
|
||||
display: inline-flex;
|
||||
list-style-type: none;
|
||||
width: 80%;
|
||||
margin: 0;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.menubutton {
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
padding: 20px;
|
||||
width: inherit;
|
||||
color: white;
|
||||
border-radius: 0%;
|
||||
background-color: rgba(0,0,0,0);
|
||||
transition: 0.6s;
|
||||
}
|
||||
|
||||
.sub {
|
||||
width: 92%;
|
||||
padding: 20px 4%;
|
||||
}
|
||||
|
||||
.menubutton:hover {
|
||||
border-radius: 0%;
|
||||
background-color: darkblue;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.dropdown-menu {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: fit-content;
|
||||
background-color: lightseagreen;
|
||||
display: none;
|
||||
list-style-type: none;
|
||||
position: absolute;
|
||||
min-width: 200px;
|
||||
transform-origin: top center;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
@keyframes growDown {
|
||||
0% {
|
||||
transform: scaleY(0);
|
||||
}
|
||||
100% {
|
||||
transform: scaleY(1);
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown:hover .dropdown-menu {
|
||||
display: flex;
|
||||
animation: growDown 0.3s ease-in-out;
|
||||
}
|
||||
|
||||
.mainitems {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
BIN
favicon.ico
Normal file
|
After Width: | Height: | Size: 174 KiB |
117
footer.html
Executable file
@@ -0,0 +1,117 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="stylesheet" href="/css/footerstyle.css">
|
||||
<title>Footer - janishutz.com</title>
|
||||
<style>
|
||||
#go-to-new-page-popup {
|
||||
position: fixed;
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
left: 0;
|
||||
bottom: -100vh;
|
||||
background-color: rgba( 0, 0, 0, 0.7 );
|
||||
z-index: 100;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
transition: 0.25s;
|
||||
}
|
||||
|
||||
#new-page {
|
||||
min-width: 25vw;
|
||||
max-width: 90vw;
|
||||
max-height: 90vh;
|
||||
min-height: 60vh;
|
||||
background: linear-gradient( 45deg, red, blue );
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border-radius: 20px;
|
||||
flex-direction: column;
|
||||
font-size: 150%;
|
||||
position: relative;
|
||||
color: white;
|
||||
}
|
||||
|
||||
#new-page p {
|
||||
text-align: center;
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.popup-show {
|
||||
bottom: 0 !important;
|
||||
}
|
||||
|
||||
#close-icon {
|
||||
color: white;
|
||||
position: absolute;
|
||||
top: 20px;
|
||||
right: 20px;
|
||||
font-size: 150%;
|
||||
font-weight: lighter;
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.material-symbols-outlined {
|
||||
font-variation-settings:
|
||||
'FILL' 0,
|
||||
'wght' 400,
|
||||
'GRAD' 0,
|
||||
'opsz' 24
|
||||
}
|
||||
|
||||
#new-page-button {
|
||||
text-decoration: none;
|
||||
color: white;
|
||||
background: linear-gradient( 90deg, blue, rgb(225, 0, 255) );
|
||||
padding: 20px;
|
||||
border-radius: 20px;
|
||||
background-size: 150%;
|
||||
transition: all 0.5s;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
#new-page-button:hover {
|
||||
background-position-x: 100%;
|
||||
border-radius: 5px;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="Footer-box">
|
||||
<div class="footer-content-box">
|
||||
<img src="/assets/Logo.png" class="footer-logo">
|
||||
<div class="footer-center-box">
|
||||
<a href="/privacypolicy.html" class="linkbutton" id="ppbtn">Privacy Policy</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="go-to-new-page-popup">
|
||||
<div id="new-page">
|
||||
<span class="material-symbols-outlined" id="close-icon" onclick="closePopup()">close</span>
|
||||
<h2>Still here?</h2>
|
||||
<p>You deserve better! Head to my new website!</p>
|
||||
<a href="https://janishutz.com" id="new-page-button">To new website</a>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Detection to open pop-up to tell users to head to new website after certain amount of interactions -->
|
||||
<script>
|
||||
let pageViewCount = parseInt( localStorage.getItem( 'pageViewCount' ) ?? '0' );
|
||||
pageViewCount += 1;
|
||||
if ( pageViewCount > 2 ) {
|
||||
document.getElementById( 'go-to-new-page-popup' ).classList.add( 'popup-show' );
|
||||
} else {
|
||||
localStorage.setItem( 'pageViewCount', pageViewCount );
|
||||
}
|
||||
|
||||
var closePopup = () => {
|
||||
localStorage.setItem( 'pageViewCount', -4 );
|
||||
document.getElementById( 'go-to-new-page-popup' ).classList.remove( 'popup-show' );
|
||||
}
|
||||
</script>
|
||||
</div>
|
||||
</body>
|
||||
63
index.html
Executable file
@@ -0,0 +1,63 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Home - janishutz.com</title>
|
||||
<meta name="description" content="Discover my Software projects and services, and get support if you encounter problems.">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/css/mainstyle.css">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<script defer src="/js/jquery.js"></script>
|
||||
<script defer src="/js/basicanimations.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="ContentToInclude"></div>
|
||||
<div class="mainstyle">
|
||||
<div class="title-container">
|
||||
<h1 class="title">Welcome to janishutz.com!</h1>
|
||||
<h2 class="subtitle">iOS Apps, PC apps, Websites, PC Building & Support</h2>
|
||||
</div>
|
||||
<div class="content">
|
||||
<h2 class="content-title">My work</h2>
|
||||
<div class="sidebyside">
|
||||
<div class="element">
|
||||
<h3>Custom Websites</h3>
|
||||
<p>Get your new online presence as anything ranging from a simple static website like this one to a highly complex webapp like <a href="https://libreevent.janishutz.com" class="textlink" style="color: darkblue" target="_blank">libreǝvent</a> or the <a href="https://booking.languageschoolhossegor.com" class="textlink" style="color: darkblue" target="_blank">Language School Hossegor Booking system</a></p>
|
||||
<a href="https://development.janishutz.com" class="linkbutton">Learn more</a>
|
||||
</div>
|
||||
<div class="element">
|
||||
<h3>PC Building</h3>
|
||||
<p>Are you looking for a new gaming or work PC that is perfectly fitted for your needs and has an upgrade path in the future and you live in Switzerland? Here you can get your new, fully customised PC!</p>
|
||||
<a href="https://pcbuilding.janishutz.com" class="linkbutton">Learn more</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sidebyside">
|
||||
<div class="element">
|
||||
<h3>iOS Apps</h3>
|
||||
<p>My iOS apps mostly focus on things you use or do day-to-day. You can view and download my apps on the Apple AppStore</p>
|
||||
<a href="https://apps.apple.com/us/developer/janis-hutz/id1636936538" class="linkbutton">AppStore</a>
|
||||
</div>
|
||||
<div class="element">
|
||||
<h3>Open Source Software</h3>
|
||||
<p>As a huge Open Source fan, I also developed some software whose code you can freely use, if your project uses the GPL V3 License. I am also contributing to a JavaScript presentation framework called <a href="https://impress.js.org" class="textlink" style="color: darkblue">impress.js</a></p>
|
||||
<a href="https://github.com/simplePCBuilding" class="linkbutton">GitHub</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sidebyside">
|
||||
<div class="element">
|
||||
<h3>libreǝvent</h3>
|
||||
<p>libreǝvent is THE free and open source event management solution with which you can save lots of time and money when managing your events!</p>
|
||||
<a href="https://libreevent.janishutz.com" class="linkbutton">Learn more</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bottom">
|
||||
<h2 class="content-title">Check out my projects!</h2>
|
||||
<a class="linkbutton" href="/projects.html">Projects</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="Footer"></div>
|
||||
</body>
|
||||
</html>
|
||||
20
js/basicanimations.js
Executable file
@@ -0,0 +1,20 @@
|
||||
$( document ).ready( function() {
|
||||
$( '#ContentToInclude' ).load( '/menu.html' );
|
||||
$( '#Footer' ).load('/footer.html');
|
||||
setTimeout( highlightLocation, 200 );
|
||||
} );
|
||||
|
||||
function highlightLocation () {
|
||||
let pagename = $(location).attr( 'pathname' );
|
||||
if ( pagename.slice(0, 8) == '/project' ) {
|
||||
$( '#projects' ).css( 'background-color', 'darkblue' );
|
||||
} else if ( pagename.slice( 0, 6 ) == '/about' || pagename.slice( 0, 14 ) == '/privacypolicy' ) {
|
||||
$( '#about' ).css( 'background-color', 'darkblue' );
|
||||
} else if ( pagename.slice( 0, 6 ) == '/' || pagename == '/index.html' ) {
|
||||
$( '#home' ).css( 'background-color', 'darkblue' );
|
||||
} else if ( pagename.slice( 0, 8 ) == '/support' ) {
|
||||
$( '#support' ).css( 'background-color', 'darkblue' );
|
||||
} else if ( pagename.slice( 0, 9 ) == '/services' ) {
|
||||
$( '#services' ).css( 'background-color', 'darkblue') ;
|
||||
};
|
||||
}
|
||||
10911
js/jquery.js
vendored
Executable file
0
js/specialanimations.js
Executable file
88
menu.html
Executable file
@@ -0,0 +1,88 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<link rel="stylesheet" href="/css/menustyle.css">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<title>Navmenu - janishutz.com</title>
|
||||
<style>
|
||||
#moved-banner {
|
||||
background: linear-gradient( 22.5deg, red, blue ) !important;
|
||||
height: 15vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#moved-banner p {
|
||||
max-width: 90vw;
|
||||
text-align: center;
|
||||
font-size: 1.5rem;
|
||||
margin: 0;
|
||||
color: white;
|
||||
}
|
||||
|
||||
#moved-banner a {
|
||||
color: white;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="moved-banner">
|
||||
<p>This website is ancient and was moved to <a href="https://janishutz.com">janishutz.com</a></p>
|
||||
</div>
|
||||
<div class="Menu">
|
||||
<a href="/"><img src="/assets/Logo.png" class="logo"></a>
|
||||
<div class="toggle-wrapper">
|
||||
<a class="listtoggle" onclick="togglelist()">☰</a>
|
||||
</div>
|
||||
<ul class="menu-container">
|
||||
<li class="mainitems"><a class="menubutton" id="home" href="/">Home</a></li>
|
||||
<li class="dropdown mainitems">
|
||||
<a class="menubutton" id="projects" href="/projects.html">Projects</a>
|
||||
<ul class="dropdown-menu">
|
||||
<a class="menubutton sub" href="/projects/qrinsight.html">QR & Barcode Insight</a>
|
||||
<a class="menubutton sub" href="/projects/storagemanager.html">StorageManager</a>
|
||||
<a class="menubutton sub" href="/projects/smuL.html">Simple­Media­Upscaler­Lite</a>
|
||||
<a class="menubutton sub" href="/projects/musiplayer.html">MusicPlayer</a>
|
||||
<a class="menubutton sub" href="/projects/bgac.html">BiogasControllerApp</a>
|
||||
<a class="menubutton sub" href="https://libreevent.janishutz.com">libreǝvent</a>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="dropdown mainitems">
|
||||
<a class="menubutton" id="about" href="/aboutPage.html">About</a>
|
||||
<ul class="dropdown-menu">
|
||||
<a class="menubutton sub" href="/privacypolicy.html">Privacy Policy</a>
|
||||
<a class="menubutton sub" href="/about.html">About me</a>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="dropdown mainitems">
|
||||
<a class="menubutton" id="services" href="/services.html">Services</a>
|
||||
<ul class="dropdown-menu">
|
||||
<a class="menubutton sub" href="https://pcbuilding.janishutz.com">PC Building</a>
|
||||
<a class="menubutton sub" href="https://development.janishutz.com">Custom Websites</a>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="mainitems"><a class="menubutton" id="support" href="/support.html">Support</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<script>
|
||||
let previous = 1;
|
||||
function togglelist() {
|
||||
$( '.menu-container' ).slideToggle(300);
|
||||
$( '.listtoggle' ).toggleClass( 'active' );
|
||||
}
|
||||
|
||||
window.addEventListener( 'resize', function( event ) {
|
||||
if ( $(window).width() > 999 ) {
|
||||
$( '.menu-container' ).slideDown();
|
||||
previous = 1;
|
||||
} else if ( $(window).width() < 999 && previous == 1 ) {
|
||||
$( '.menu-container' ).slideUp();
|
||||
$( '.listtoggle' ).removeClass( 'active' );
|
||||
previous = 0;
|
||||
};
|
||||
}, true);
|
||||
</script>
|
||||
</body>
|
||||
26
privacypolicy.html
Executable file
@@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Privacy Policy - janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/css/mainstyle.css">
|
||||
<script defer src="/js/jquery.js"></script>
|
||||
<script defer src="/js/basicanimations.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="ContentToInclude"></div>
|
||||
<div class="mainstyle">
|
||||
<div class="title-container">
|
||||
<h1 class="title">Privacy Policy</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<h2>Privacy in my iOS Apps</h2>
|
||||
<p>All of the apps developed by Janis Hutz follow strict privacy rules. As such, my Apps do not collect any data other than the standard data that is being collected by Apple to give me an idea on how many people use the app. You may opt out of that feature in the system settings. All of the data collected there is anonymised and I therefore cannot see anything other than a higher number on the active user data. Privacy is one of the most important factors in the development of my apps! This may have an impact on the stability of the apps, so please, if you would like, enable "Share with Developers" setting in the Settings app under "Privacy" > "Analytics & Improvements". This allows me to see an anonymised crash report if the app'd crash.
|
||||
I do heavily rely on AppStore Reviews, Ratings and Beta feedback to improve my apps, as this is the least privacy invading option out there. Please also contact me, if you'd like to test this app as a beta!</p>
|
||||
<h2>Privacy on janishutz.com</h2>
|
||||
<p>This website does not collect any data on your interaction with it as it stands today. This may change in the future, but all data collected will not allow me to uniquely identify you as an individual. You may have a look at the source code of the data-collection module, if I end up adding one on this website, if you wish. The rest of the server backend will remain closed-source due to security concerns.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div id="Footer"></div>
|
||||
</body>
|
||||
</html>
|
||||
40
projects.html
Executable file
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Projects - janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<link rel="stylesheet" href="./css/mainstyle.css">
|
||||
<script defer src="./js/jquery.js"></script>
|
||||
<script defer src="./js/basicanimations.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="ContentToInclude"></div>
|
||||
<div class="mainstyle">
|
||||
<div class="title-container">
|
||||
<h1 class="title">My projects</h1>
|
||||
<h2 class="subtitle">Here you can get an overview over all my projects!</h2>
|
||||
</div>
|
||||
<h3>Swift & SwiftUI (iOS Apps)</h3>
|
||||
<ul>
|
||||
<li><a class="textlink" href="/projects/storagemanager.html">StorageManager</a></li>
|
||||
<li><a class="textlink" href="/projects/qrinsight.html">QR & Barcode Insight</a></li>
|
||||
</ul>
|
||||
<h3>Python, Kivy, KivyMD, PyQT5, PyGTK (Desktop apps using different UI toolkits)</h3>
|
||||
<ul>
|
||||
<li><a class="textlink" href="/projects/musiplayer.html">MusicPlayer</a></li>
|
||||
<li><a class="textlink" href="/projects/smuL.html">SimpleMediaUpscalerLite</a></li>
|
||||
<li><a class="textlink" href="/projects/bgac.html">BiogasControllerApp</a></li>
|
||||
</ul>
|
||||
<h3>JavaScript, HTML, CSS (Webapps / Websites)</h3>
|
||||
<ul>
|
||||
<li><a class="textlink" href="/">This website</a></li>
|
||||
<li><a class="textlink" href="https://libreevent.janishutz.com">Libreǝvent - free & open source self-hosted event management solution</a></li>
|
||||
<li><a class="textlink" href="/projects/smuL.html">SimpleMediaUpscalerLite</a></li>
|
||||
<li><a class="textlink" href="https://booking.languageschoolhossegor.com">Booking system for Language School Hossegor</a></li>
|
||||
<li><a class="textlink" href="https://impress-testing.janishutz.com">Impress.js website (Not yet up, in development)</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="Footer"></div>
|
||||
</body>
|
||||
</html>
|
||||
18
projects/bgac.html
Executable file
@@ -0,0 +1,18 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>BiogasControllerApp - janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/css/mainstyle.css">
|
||||
<script defer src="/js/jquery.js"></script>
|
||||
<script defer src="/js/basicanimations.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="ContentToInclude"></div>
|
||||
<div class="mainstyle">
|
||||
<h1>BiogasControllerApp</h1>
|
||||
<p>Still under construction</p>
|
||||
</div>
|
||||
<div id="Footer"></div>
|
||||
</body>
|
||||
</html>
|
||||
20
projects/musiplayer.html
Executable file
@@ -0,0 +1,20 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>MusicPlayer - janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/css/mainstyle.css">
|
||||
<script defer src="/js/jquery.js"></script>
|
||||
<script defer src="/js/basicanimations.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="ContentToInclude"></div>
|
||||
<div class="mainstyle">
|
||||
<h1>MusicPlayer</h1>
|
||||
<p>This project will merge with a new project in the coming months and will be rewritten from scratch and will be packaged as an electron app.</p>
|
||||
<p>Still under construction</p>
|
||||
</div>
|
||||
<div id="Footer"></div>
|
||||
</body>
|
||||
</html>
|
||||
22
projects/qrinsight.html
Executable file
@@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>QR & Barcode Insight - janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/css/mainstyle.css">
|
||||
<script defer src="/js/jquery.js"></script>
|
||||
<script defer src="/js/basicanimations.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="ContentToInclude"></div>
|
||||
<div class="mainstyle">
|
||||
<h1>QR & Barcode Insight</h1>
|
||||
<p>Ever wanted to scan QR-Codes and Barcodes from a screenshot? This app allows you to do exactly that, whilst showing the full scanned link to you so you need to worry a little less about opening a harmful link.</p>
|
||||
<div></div>
|
||||
<br><br><br><br><br>
|
||||
<h5>This app is available to download now from the AppStore!</h5>
|
||||
<a class="linkbutton" href="https://apps.apple.com/us/app/qr-barcode-insight/id6443884642">Download from the Apple AppStore!</a>
|
||||
</div>
|
||||
<div id="Footer"></div>
|
||||
</body>
|
||||
</html>
|
||||
50
projects/smuL.html
Executable file
@@ -0,0 +1,50 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>smuL - janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/css/mainstyle.css">
|
||||
<script defer src="/js/jquery.js"></script>
|
||||
<script defer src="/js/basicanimations.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="ContentToInclude"></div>
|
||||
<div class="mainstyle">
|
||||
<div class="content">
|
||||
<h2 class="content-title">Simple­Media­Upscaler­Lite</h2>
|
||||
<div class="sidebyside">
|
||||
<div class="element">
|
||||
<h3>Upscale with EASE.</h3>
|
||||
<p>Upscale any kind of video or image with ease using the electron GUI.</p>
|
||||
<a href="https://github.com/simplePCBuilding/SimpleMediaUpscalerLite" class="linkbutton">Learn more</a>
|
||||
</div>
|
||||
<div class="element">
|
||||
<h3>Electron Frontend</h3>
|
||||
<p>smuL features a gorgeous electron frontend as these UIs look a lot better usually compared to QT, GTK or any other toolkit.</p>
|
||||
<a href="https://github.com/simplePCBuilding/SimpleMediaUpscalerLite" class="linkbutton">Learn more</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sidebyside">
|
||||
<div class="element">
|
||||
<h3>CLI.</h3>
|
||||
<p>smuL features a CLI to enable you to upscale things in bulk without the downsides that GUIs bring with them</p>
|
||||
<a href="https://github.com/simplePCBuilding/SimpleMediaUpscalerLite" class="linkbutton">Learn more</a>
|
||||
</div>
|
||||
<div class="element">
|
||||
<h3>Plugins.</h3>
|
||||
<p>smuL features plugin support without having to restart the GUI app. You may simply add a new upscaling engine by downloading a plugin.</p>
|
||||
<a href="https://github.com/simplePCBuilding/SimpleMediaUpscalerLite" class="linkbutton">Learn more</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="sidebyside">
|
||||
<div class="element">
|
||||
<h3>FOSS.</h3>
|
||||
<p>smuL is fully open source, you may have a look at its entire source code below and contribute to it if you wish to.</p>
|
||||
<a href="https://github.com/simplePCBuilding/SimpleMediaUpscalerLite" class="linkbutton">Learn more</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="Footer"></div>
|
||||
</body>
|
||||
</html>
|
||||
32
projects/storagemanager.html
Executable file
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>StorageManager - janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/css/mainstyle.css">
|
||||
<script defer src="/js/jquery.js"></script>
|
||||
<script defer src="/js/basicanimations.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="ContentToInclude"></div>
|
||||
<div class="mainstyle">
|
||||
<h1>StorageManager</h1>
|
||||
<h3 class="bigquote"><b class="biggerquote">MANAGE</b> <br> your storage <br> with Ease. </h3>
|
||||
<p>Add items by simply <b class="biggerquote">SCANNING</b> them with your phone and adding important infos to it. The app will remember all the products you have scanned before and auto fills the info to save your time.</p>
|
||||
<p>Get notified when a product is about to expire.</p>
|
||||
<p>Remove products by simply swiping left or by scanning them with your phone</p>
|
||||
<p>Sync the data between all your Apple Devices <sup>1</sup>.</p>
|
||||
<p>Import and export the data<sup>2</sup> so you can share it between multiple AppleIDs and even a PC app<sup>3</sup></p>
|
||||
<p>Sync data between multiple AppleIDs without the need of exporting the data and importing it again on the other device<sup>4</sup></p>
|
||||
<br><br><br>
|
||||
<p>Still under construction</p>
|
||||
<div class="references">
|
||||
<sup>1</sup> iCloud is required in order for this feature to work. You may enable it in the system settings. <br>
|
||||
<sup>2</sup> Part of an In-App-Purchase coming at a later point <br>
|
||||
<sup>3</sup> Part of an In-App-Purchase coming at a later point. <br>
|
||||
<sup>4</sup> Coming in a Software update at a later point and requires a subscription. <br>
|
||||
</div>
|
||||
</div>
|
||||
<div id="Footer"></div>
|
||||
</body>
|
||||
</html>
|
||||
67
search/index.html
Normal file
@@ -0,0 +1,67 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Search (redirects to duckduckgo) :: janishutz.com</title>
|
||||
|
||||
<style>
|
||||
html {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
body {
|
||||
background-image: radial-gradient(
|
||||
rgb(25, 25, 151), lightblue
|
||||
);
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
.search-wrapper {
|
||||
text-align: center;
|
||||
background-color: white;
|
||||
min-height: fit-content;
|
||||
min-width: fit-content;
|
||||
height: 50%;
|
||||
padding: 3% 5%;
|
||||
border-radius: 50px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.search-box {
|
||||
background-color: rgb(191, 196, 255);
|
||||
border-style: solid;
|
||||
padding: 1%;
|
||||
width: 40vw;
|
||||
font-size: 110%;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.submit-button {
|
||||
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="search-wrapper">
|
||||
<h1 style="font-size: 400%;">Search</h1>
|
||||
<form action="https://duckduckgo.com/?q=" method="get">
|
||||
<input type="text" placeholder="Search..." class="search-box">
|
||||
<input type="submit" value="Search" class="submit-button">
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
30
services.html
Normal file
@@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Services - janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/css/mainstyle.css">
|
||||
<script defer src="/js/jquery.js"></script>
|
||||
<script defer src="/js/basicanimations.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="ContentToInclude"></div>
|
||||
<div class="mainstyle">
|
||||
<div class="title-container">
|
||||
<h1 class="title">Services</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<hr class="pullquote-lines">
|
||||
<h3 class="content-title-small">Technology is a remarkably interesting topic, that many people take for granted.</h3>
|
||||
<hr class="pullquote-lines">
|
||||
<p style="text-align: center; font-size: 120%;">To make technology more accessible, I thrive to offer services that help people not that well versed in technology start to enjoy it. A first step for many people to discover their interest in technology is to have a decent PC, where they can play games and / or create videos and livestream. If you have a problem, you can also get PC support! For people trying to get an online presence, I offer creating static websites and websites featuring some more complex features.</p>
|
||||
</div>
|
||||
<div class="itemsInline">
|
||||
<a class="linkbutton" href="https://pcbuilding.janishutz.com">PC Build service</a>
|
||||
<a class="linkbutton" href="https://pcbuilding.janishutz.com/support">PC Support</a>
|
||||
<a class="linkbutton" href="https://development.janishutz.com">Website</a>
|
||||
</div>
|
||||
</div>
|
||||
<div id="Footer"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
Before Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 100 KiB |
|
Before Width: | Height: | Size: 159 KiB |
|
Before Width: | Height: | Size: 98 KiB |
|
Before Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 84 KiB |
|
Before Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 92 KiB |
@@ -1,79 +0,0 @@
|
||||
const fs = require( 'fs' );
|
||||
const navMenu = '' + fs.readFileSync( './src/nav.html' );
|
||||
const footer = '' + fs.readFileSync( './src/footer.html' );
|
||||
|
||||
/**
|
||||
* Recursively find all HTML files in a directory
|
||||
* @param {string} dir The directory to search. Either absolute or relative path
|
||||
* @param {string} extension The file extension to look for
|
||||
* @returns {string[]} returns a list of html files with their full path
|
||||
*/
|
||||
const treeWalker = ( dir, extension ) => {
|
||||
const ls = fs.readdirSync( dir );
|
||||
const fileList = [];
|
||||
for ( let file in ls ) {
|
||||
if ( !ls[ file ].includes( '.' ) ) {
|
||||
const newFiles = treeWalker( dir + '/' + ls[ file ], extension );
|
||||
for ( let file in newFiles ) {
|
||||
fileList.push( newFiles[ file ] );
|
||||
}
|
||||
} else if ( ls[ file ].includes( extension ) ) {
|
||||
fileList.push( dir + '/' + ls[ file ] );
|
||||
}
|
||||
}
|
||||
|
||||
return fileList;
|
||||
}
|
||||
|
||||
|
||||
const addNavAndFooterToFile = ( file ) => {
|
||||
const f = '' + fs.readFileSync( file );
|
||||
const navIndex = f.indexOf( '<nav>' ) + 5;
|
||||
const footerIndex = f.indexOf( '<footer>' ) + 8;
|
||||
return f.slice( 0, navIndex ) + navMenu + f.slice( navIndex, footerIndex ) + footer + f.substring( footerIndex );
|
||||
}
|
||||
|
||||
/**
|
||||
* Save a file to a path. All occurrences of "src" will be replaced by "dist"
|
||||
* @param {string} filePath
|
||||
* @param {string} data
|
||||
* @returns {void}
|
||||
*/
|
||||
const saveFile = ( filePath, data ) => {
|
||||
const nPath = filePath.replace( 'src', 'dist' );
|
||||
const dirSplit = nPath.split( '/' );
|
||||
let currDir = nPath.slice( 0, nPath.indexOf( '/' ) + 1 );
|
||||
for ( let dir in dirSplit ) {
|
||||
if ( dirSplit[ dir ] !== '.' && !dirSplit[ dir ].includes( '.' ) ) {
|
||||
currDir += dirSplit[ dir ] + '/';
|
||||
try {
|
||||
fs.readdirSync( currDir );
|
||||
} catch ( e ) {
|
||||
fs.mkdirSync( currDir );
|
||||
}
|
||||
}
|
||||
}
|
||||
fs.writeFileSync( nPath, data );
|
||||
}
|
||||
|
||||
const copyFiles = ( dir, extension ) => {
|
||||
const files = treeWalker( dir, extension );
|
||||
|
||||
for ( let file in files ) {
|
||||
saveFile( files[ file ], '' + fs.readFileSync( files[ file ] ) );
|
||||
}
|
||||
}
|
||||
|
||||
const filesToParse = treeWalker( './src', '.html' );
|
||||
|
||||
for ( let file in filesToParse ) {
|
||||
if ( !filesToParse[ file ].includes( 'footer.html' ) && !filesToParse[ file ].includes( 'nav.html' ) ) {
|
||||
saveFile( filesToParse[ file ], addNavAndFooterToFile( filesToParse[ file ] ) );
|
||||
}
|
||||
}
|
||||
|
||||
// Copy all JS, CSS and jpg files
|
||||
copyFiles( './src', '.js' );
|
||||
copyFiles( './src', '.css' );
|
||||
|
||||
console.log( '\n==> DONE\n\n' );
|
||||
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"name": "janishutz.com",
|
||||
"version": "1.0.0",
|
||||
"main": "build.js",
|
||||
"scripts": {
|
||||
"build": "node build.js"
|
||||
},
|
||||
"author": "Janis Hutz",
|
||||
"license": "ISC",
|
||||
"description": ""
|
||||
}
|
||||
@@ -1,27 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>404 - Page not found | janishutz.com</title>
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<style>
|
||||
.content h1 {
|
||||
font-size: 8rem;
|
||||
margin: 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav></nav>
|
||||
|
||||
<div class="content">
|
||||
<h1>404</h1>
|
||||
<p>The page you are looking for was not found!</p>
|
||||
<a href="/" class="button">Home</a>
|
||||
</div>
|
||||
|
||||
|
||||
<footer></footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,98 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/timeline.css">
|
||||
<link rel="stylesheet" href="/css/wrapfig.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>About me | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="aboutme, about, janis hutz" />
|
||||
<meta name="description" content="Learn more about the creator of janishutz.com, his projects and goals" />
|
||||
<meta name="og:image" content="https://static.janishutz.com/logo.jpg" />
|
||||
<meta name="og:type" content="website" />
|
||||
<meta name="og:url" content="https://janishutz.com/about/aboutme" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta property="twitter:card" content="summary_large_image">
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav></nav>
|
||||
<div class="content">
|
||||
<h1 class="title">About Janis Hutz</h1>
|
||||
|
||||
<div class="wrapfig-wrapper">
|
||||
<img src="https://static.janishutz.com/logo.jpg" alt="Janis Hutz" class="wrapfig left circle">
|
||||
<div class="wrapfig-text right">
|
||||
<p class="no-margin bigger">Hello! I'm Janis Hutz, and I develop software</p>
|
||||
<p class="no-margin">Having been working on developing software and learning to do so properly since the
|
||||
beginning of 2021, I have accumulated a lot of work hours in this subject. In September 2024, I have
|
||||
started my studies in Software Engineering at ETH Zurich, a renowned university in Switzerland, where I am currently working towards my Bachelor of Science degree.</p>
|
||||
<p class="no-margin">My projects are becoming increasingly more complex, useful and feature-rich. Now
|
||||
finally, with proper education, I will be taking my software to the next level.</p>
|
||||
<p class="no-margin">Most of the software provided on this website is done so for free. Any <a
|
||||
href="https://store.janishutz.com/donate" target="_blank">financial support</a> would be greatly
|
||||
appreciated.</p>
|
||||
<p class="no-margin">I am a hard-core Linux user, which means I am always tweaking my user interface and
|
||||
OS when I am not coding. You can read up on my Linux journey <a
|
||||
href="https://blog.janishutz.com/series/my-linux-journey/" target="_blank">here</a>. While I do
|
||||
occasionally like to play games on my own, I primarily do so with friends, as I prefer not to waste
|
||||
my time playing games, if there is nobody available to play them with.</p>
|
||||
<p class="no-margin">Other than that, I am also very interested in PC hardware, and I am always
|
||||
up-to-date with the latest hardware, ranging from CPUs and GPUs to power supplies, cases and
|
||||
coolers. I also enjoy composing music, but mostly keep that to myself, as with playing piano, which
|
||||
I enjoy doing occasionally.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2>Timeline</h2>
|
||||
<p>The timeline of my projects and my evolution in software development</p>
|
||||
<div class="timeline">
|
||||
<div class="timeline-line"></div>
|
||||
<div class="timeline-el" id="timeline-dot-1">
|
||||
<div class="timeline-year">2015</div> <!-- TODO: Check date is accurate-->
|
||||
<div class="timeline-dot"></div>
|
||||
<div class="timeline-desc">First coding experience using LEGO Mindstorms & LabView</div>
|
||||
</div>
|
||||
<div class="timeline-el" id="timeline-dot-2">
|
||||
<div class="timeline-year">2021</div> <!-- TODO: Check date is accurate-->
|
||||
<div class="timeline-dot"></div>
|
||||
<div class="timeline-desc">BiogasControllerApp, Small projects</div>
|
||||
</div>
|
||||
<div class="timeline-el" id="timeline-dot-3">
|
||||
<div class="timeline-year">2022</div>
|
||||
<div class="timeline-dot"></div>
|
||||
<div class="timeline-desc">StorageManager, QR & Barcode Insight, smuL</div>
|
||||
</div>
|
||||
<div class="timeline-el" id="timeline-dot-4">
|
||||
<div class="timeline-year">2023</div>
|
||||
<div class="timeline-dot"></div>
|
||||
<div class="timeline-desc">libreevent, smuL, StorageManager</div>
|
||||
</div>
|
||||
<div class="timeline-el" id="timeline-dot-5">
|
||||
<div class="timeline-year">2024</div>
|
||||
<div class="timeline-dot"></div>
|
||||
<div class="timeline-desc">Language School Hossegor - Booking, store.janishutz.com, id.janishutz.com
|
||||
</div>
|
||||
</div>
|
||||
<div class="timeline-el" id="timeline-dot-7">
|
||||
<div class="timeline-year">2025</div>
|
||||
<div class="timeline-dot"></div>
|
||||
<div class="timeline-desc">ETH Zurich, ConductorCalc, StorageManager, Website, Dotfiles, new Account System</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p style="margin-top: 50px;">Learn more here</p>
|
||||
<a href="/links" class="button">Linktree</a>
|
||||
</div>
|
||||
<footer></footer>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,90 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/timeline.css">
|
||||
<link rel="stylesheet" href="/css/wrapfig.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>About | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="about, janishutz" />
|
||||
<meta name="description" content="Learn more about the history of janishutz.com and discover the projects" />
|
||||
<meta name="og:image" content="https://static.janishutz.com/logo.jpg" />
|
||||
<meta name="og:type" content="website" />
|
||||
<meta name="og:url" content="https://janishutz.com/about" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta property="twitter:card" content="summary_large_image">
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav></nav>
|
||||
<div class="content">
|
||||
<h1 class="title">About</h1>
|
||||
|
||||
<div class="wrapfig-wrapper">
|
||||
<img src="https://static.janishutz.com/logo.jpg" alt="janishutz.com logo"
|
||||
class="wrapfig left rounded-corners">
|
||||
<div class="wrapfig-text right">
|
||||
<p class="no-margin">Since its launch in January 2023, janishutz.com has seen a lot of changes. Not only
|
||||
has the main website seen three major revisions, but the offering has expanded massively, with a
|
||||
Software Store, Custom Website development, Account services and more becoming part of the Software
|
||||
ecosystem.</p>
|
||||
<p class="no-margin">Most of the software provided on this website is done so for free. Any <a
|
||||
href="https://store.janishutz.com/donate" target="_blank">financial support</a> would be greatly
|
||||
appreciated.</p>
|
||||
<p>The goal of this website is and has always been to show off software projects and the current design
|
||||
gives you a much neater introduction with much more information. The website has always been written
|
||||
from scratch and loading times have been reduced as much as possible, giving you a snappy experience
|
||||
like barely anywhere else on the internet</p>
|
||||
|
||||
<h2>Timeline</h2>
|
||||
<p>The timeline of evolution of this website</p>
|
||||
<div class="timeline">
|
||||
<div class="timeline-line"></div>
|
||||
<div class="timeline-el" id="timeline-dot-1">
|
||||
<div class="timeline-year">2022</div>
|
||||
<div class="timeline-dot"></div>
|
||||
<div class="timeline-desc">Launch of the first version, can be found <a
|
||||
href="https://janishutz.github.io" target="_blank">here</a></div>
|
||||
</div>
|
||||
<div class="timeline-el" id="timeline-dot-2">
|
||||
<div class="timeline-year">2023</div>
|
||||
<div class="timeline-dot"></div>
|
||||
<div class="timeline-desc">
|
||||
Two updated versions, found <a href="https://v1.janishutz.com" target="_blank">here</a>
|
||||
and <a href="https://v2.janishutz.com" target="_blank">here</a> slightly updating and then
|
||||
completely reworking the design of the website
|
||||
</div>
|
||||
</div>
|
||||
<div class="timeline-el" id="timeline-dot-3">
|
||||
<div class="timeline-year">2024</div>
|
||||
<div class="timeline-dot"></div>
|
||||
<div class="timeline-desc">Add more services (Accounts, Store)</div>
|
||||
</div>
|
||||
<div class="timeline-el" id="timeline-dot-4">
|
||||
<div class="timeline-year">2025</div>
|
||||
<div class="timeline-dot"></div>
|
||||
<div class="timeline-desc">The current website, reworked accounts</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p style="margin-top: 50px;">Learn more here</p>
|
||||
<div class="inline-elements">
|
||||
<a href="/links" class="button">Linktree</a>
|
||||
<a href="/about/aboutme" class="button">About Janis Hutz</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<footer></footer>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,68 +0,0 @@
|
||||
/*
|
||||
Analytics
|
||||
*/
|
||||
.analytics-notice {
|
||||
z-index: 10000;
|
||||
bottom: -450px;
|
||||
right: 5px;
|
||||
width: 300px;
|
||||
height: 400px;
|
||||
position: fixed;
|
||||
background-color: var( --color-background-analytics );
|
||||
border-radius: 20px;
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
overflow: scroll;
|
||||
transition: bottom 1s;
|
||||
}
|
||||
|
||||
.analytics-notice.show {
|
||||
bottom: 5px;
|
||||
}
|
||||
|
||||
/* Close button */
|
||||
.analytics-button {
|
||||
color: var( --color-text-primary );
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: 10px;
|
||||
background: none;
|
||||
border: none;
|
||||
font-size: 1rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#matomo-opt-out {
|
||||
color: var( --color-text-primary ) !important;
|
||||
}
|
||||
|
||||
/* The small icon on the side that is shown when main panel is closed */
|
||||
.analytics-notice .small-symbol {
|
||||
position: fixed;
|
||||
bottom: 20px;
|
||||
right: 0px;
|
||||
border-top-left-radius: 10px;
|
||||
border-bottom-left-radius: 10px;
|
||||
background-color: var( --color-background-analytics );
|
||||
border: solid black 1px;
|
||||
cursor: pointer;
|
||||
transition: all 1s;
|
||||
padding-left: 5px;
|
||||
padding-right: 10px;
|
||||
padding-bottom: 20px;
|
||||
padding-top: 20px;
|
||||
transition-delay: 2s;
|
||||
z-index: 10001;
|
||||
}
|
||||
|
||||
.analytics-notice .small-symbol .material-symbols-outlined {
|
||||
font-size: 1.75rem;
|
||||
}
|
||||
|
||||
.analytics-notice.show .small-symbol {
|
||||
right: -100px;
|
||||
transition-delay: 0s;
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
#theme-switcher-icon {
|
||||
font-size: 1rem;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.theme-selector {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.slider-controls {
|
||||
background-color: var( --color-background-accent ) !important;
|
||||
}
|
||||
@@ -1,80 +0,0 @@
|
||||
footer {
|
||||
border-top: solid black 1px;
|
||||
background-color: var( --color-background-accent );
|
||||
width: 100vw;
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
footer .logo {
|
||||
margin-top: 20px;
|
||||
height: 40vh;
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
.footer-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
.footer-text-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-width: calc( ( 100% - 40vh - 50px ) / 2 );
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.footer-category {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.footer-category a {
|
||||
color: var( --color-text-primary );
|
||||
text-decoration: none;
|
||||
transition: all 0.5s;
|
||||
transform: scale(1);
|
||||
transition: transform 0.75s;
|
||||
}
|
||||
|
||||
.footer-category a:hover {
|
||||
color: var( --color-button-hover );
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@media only screen and (min-width: 999px) {
|
||||
footer .logo {
|
||||
margin-top: unset;
|
||||
border-radius: 0;
|
||||
}
|
||||
.footer-container {
|
||||
flex-direction: row;
|
||||
margin-bottom: unset;
|
||||
}
|
||||
|
||||
.footer-text-container {
|
||||
align-items: flex-start;
|
||||
justify-content: flex-start;
|
||||
flex-direction: row;
|
||||
width: unset;
|
||||
max-width: 65%;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.footer-category {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
width: unset;
|
||||
min-width: max-content;
|
||||
margin: 5px;
|
||||
}
|
||||
}
|
||||
@@ -1,291 +0,0 @@
|
||||
nav {
|
||||
width: 100vw;
|
||||
height: 15vh;
|
||||
}
|
||||
|
||||
.nav-placeholder {
|
||||
height: 15vh;
|
||||
}
|
||||
|
||||
.nav-menu .logo-wrapper {
|
||||
display: none;
|
||||
height: 90%;
|
||||
border-radius: 20px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.nav-menu .logo {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.nav-top-bar .logo-wrapper:hover {
|
||||
transform: unset;
|
||||
}
|
||||
|
||||
nav a {
|
||||
/* TODO: Update colours */
|
||||
color: var(--color-text-primary);
|
||||
text-decoration: none;
|
||||
transform: scale(1);
|
||||
transition: transform 0.75s;
|
||||
}
|
||||
|
||||
nav a:hover {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.nav-link-wrapper {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.nav-link-dropdown a {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.nav-icon {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
position: fixed;
|
||||
left: -100vw;
|
||||
top: 15vh;
|
||||
padding-top: 2.5vh;
|
||||
padding-bottom: 2.5vh;
|
||||
padding-left: 2.5vw;
|
||||
padding-right: 2.5vw;
|
||||
height: 80vh;
|
||||
width: 95vw;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
z-index: 100;
|
||||
background-color: var(--color-background-accent);
|
||||
transition: left 0.5s, top 0.5s;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.nav-top-bar {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100vw;
|
||||
height: 15vh;
|
||||
background-color: var(--color-background-accent);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
z-index: 100;
|
||||
border-bottom: black 1px solid;
|
||||
transition: top 0.5s;
|
||||
}
|
||||
|
||||
.nav-top-bar.slide-up {
|
||||
top: -20vh;
|
||||
}
|
||||
|
||||
.nav-top-bar .logo {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.nav-top-bar .logo-wrapper {
|
||||
display: unset;
|
||||
height: 90%;
|
||||
border-radius: 20px;
|
||||
margin-left: 20px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.nav-menu.active {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.nav-link-header {
|
||||
font-size: 1.2rem;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
transition: all 0.5s;
|
||||
}
|
||||
|
||||
.nav-link-dropdown {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
|
||||
/* Nav-Toggle button idea from here: https://codepen.io/alvarotrigo/pen/wvrzPWL*/
|
||||
.nav-toggle {
|
||||
margin-left: auto;
|
||||
margin-right: 20px;
|
||||
text-decoration: none;
|
||||
color: var(--color-text-primary);
|
||||
font-size: 5vh;
|
||||
cursor: pointer;
|
||||
width: 35px;
|
||||
height: 25px;
|
||||
z-index: 1;
|
||||
transition: 0.8s;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.line {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background-color: var(--color-text-primary);
|
||||
}
|
||||
|
||||
#line1 {
|
||||
transform-origin: 0% 0%;
|
||||
transition: transform 0.4s ease-in-out;
|
||||
}
|
||||
|
||||
#line2 {
|
||||
transition: transform 0.2s ease-in-out;
|
||||
}
|
||||
|
||||
#line3 {
|
||||
transform-origin: 0% 100%;
|
||||
transition: transform 0.4s ease-in-out;
|
||||
}
|
||||
|
||||
.nav-toggle.active #line1 {
|
||||
transform: rotate(45deg) scaleX(0.95);
|
||||
}
|
||||
|
||||
.nav-toggle.active #line2 {
|
||||
transform: scaleY(0);
|
||||
}
|
||||
|
||||
.nav-toggle.active #line3 {
|
||||
transform: rotate(-45deg) scaleX(0.95);
|
||||
}
|
||||
|
||||
|
||||
@media only screen and (min-width: 900px) {
|
||||
nav {
|
||||
height: 20vh;
|
||||
}
|
||||
|
||||
nav a:hover {
|
||||
transform: unset;
|
||||
}
|
||||
|
||||
.nav-placeholder {
|
||||
height: 20vh;
|
||||
}
|
||||
|
||||
.nav-menu .logo-wrapper {
|
||||
display: unset;
|
||||
}
|
||||
|
||||
.nav-top-bar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
padding: 0;
|
||||
height: 20vh;
|
||||
width: 100vw;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
top: 0;
|
||||
left: 0;
|
||||
border-bottom: var(--color-text-primary) 1px solid;
|
||||
}
|
||||
|
||||
.nav-menu.slide-up {
|
||||
top: -20vh;
|
||||
}
|
||||
|
||||
.nav-link-dropdown {
|
||||
transform: scaleY(0);
|
||||
align-items: unset;
|
||||
justify-content: unset;
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
min-width: 175px;
|
||||
width: max-content;
|
||||
transform-origin: top;
|
||||
transition: transform 0.5s;
|
||||
background-color: var(--color-background-primary);
|
||||
border-radius: 10px;
|
||||
padding: 15px;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.nav-link-wrapper {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
margin-left: 3%;
|
||||
margin-right: 3%;
|
||||
margin-bottom: unset;
|
||||
}
|
||||
|
||||
.nav-link-header {
|
||||
flex-direction: column;
|
||||
min-width: 100px;
|
||||
padding: 10px;
|
||||
border-top-left-radius: 10px;
|
||||
border-top-right-radius: 10px;
|
||||
position: relative;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.nav-link-header::before,
|
||||
.nav-link-header::after {
|
||||
opacity: 0;
|
||||
border: var(--color-background-primary) 15px solid;
|
||||
border-top-color: transparent;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
position: absolute;
|
||||
content: " ";
|
||||
z-index: -1;
|
||||
transition: opacity 0.4s;
|
||||
bottom: -15px;
|
||||
}
|
||||
|
||||
.nav-link-header::before {
|
||||
border-left-color: transparent;
|
||||
border-bottom-right-radius: 30px;
|
||||
right: calc(100% - 15px);
|
||||
}
|
||||
|
||||
.nav-link-header::after {
|
||||
border-right-color: transparent;
|
||||
border-bottom-left-radius: 30px;
|
||||
left: calc(100% - 15px);
|
||||
}
|
||||
|
||||
.nav-link-dropdown a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.nav-link-wrapper:hover .nav-link-header {
|
||||
background-color: var(--color-background-primary);
|
||||
}
|
||||
|
||||
.nav-link-wrapper:hover .nav-link-dropdown {
|
||||
transform: scaleY(1);
|
||||
}
|
||||
|
||||
.nav-link-wrapper:hover .nav-link-header::before,
|
||||
.nav-link-wrapper:hover .nav-link-header::after {
|
||||
transition-delay: 0.1s;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.nav-toggle {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@@ -1,4 +0,0 @@
|
||||
.title-video {
|
||||
width: 100vw;
|
||||
height: 90vh;
|
||||
}
|
||||
@@ -1,29 +0,0 @@
|
||||
.side-by-side {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.side-by-side-item {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
@media only screen and (min-width: 999px) {
|
||||
.side-by-side {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.side-by-side-item {
|
||||
width: 48%;
|
||||
margin: 0.5%;
|
||||
}
|
||||
}
|
||||
@@ -1,268 +0,0 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');
|
||||
@import url('/css/nav.css');
|
||||
@import url('/css/colors.css');
|
||||
@import url('/css/footer.css');
|
||||
@import url('/css/analytics.css');
|
||||
|
||||
/* Color Theme */
|
||||
:root,
|
||||
:root.light {
|
||||
--color-text-primary: black;
|
||||
--color-text-accent: #303030;
|
||||
--color-link: #1e24a1ff;
|
||||
--color-background-primary: white;
|
||||
--color-background-accent: rgb(226, 226, 226);
|
||||
--color-background-analytics: rgb(193, 193, 223);
|
||||
--color-background-yt-embed: rgb(173, 173, 173);
|
||||
--color-slider-info: rgba(255, 255, 255, 0.85);
|
||||
--color-button: rgb(21, 43, 92);
|
||||
--color-button-hover: rgb(2, 10, 27);
|
||||
}
|
||||
|
||||
:root.dark {
|
||||
--color-text-primary: white;
|
||||
--color-text-accent: #b5b5b5;
|
||||
--color-link: #005aacff;
|
||||
--color-background-primary: #151515;
|
||||
--color-background-accent: black;
|
||||
--color-background-analytics: #303030;
|
||||
--color-background-yt-embed: #404040;
|
||||
--color-slider-info: rgba(0, 0, 0, 0.85);
|
||||
--color-button: rgb(20, 150, 200);
|
||||
--color-button-hover: rgb(15, 125, 175);
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--color-text-primary: white;
|
||||
--color-text-accent: #b5b5b5;
|
||||
--color-link: #005aacff;
|
||||
--color-background-primary: #151515;
|
||||
--color-background-accent: black;
|
||||
--color-background-analytics: #303030;
|
||||
--color-background-yt-embed: #404040;
|
||||
--color-slider-info: rgba(0, 0, 0, 0.85);
|
||||
--color-button: rgb(20, 150, 200);
|
||||
--color-button-hover: rgb(15, 125, 175);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* MAIN
|
||||
*/
|
||||
body {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-family: 'Manrope', sans-serif;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
background-color: var(--color-background-primary);
|
||||
color: var(--color-text-primary);
|
||||
}
|
||||
|
||||
body.loaded {
|
||||
transition: color 0.5s, background-color 0.5s;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--color-link);
|
||||
}
|
||||
|
||||
.material-symbols-outlined {
|
||||
font-variation-settings:
|
||||
'FILL' 0,
|
||||
'wght' 400,
|
||||
'GRAD' 0,
|
||||
'opsz' 48
|
||||
}
|
||||
|
||||
.content {
|
||||
width: 80%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
min-height: 80vh;
|
||||
}
|
||||
|
||||
.no-scroll {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.button {
|
||||
padding: 20px;
|
||||
background-color: var(--color-button);
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
transition: all 0.5s;
|
||||
width: fit-content;
|
||||
height: fit-content;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
border-radius: 5px;
|
||||
background-color: var(--color-button-hover);
|
||||
}
|
||||
|
||||
.divider {
|
||||
width: 100%;
|
||||
margin-bottom: 2%;
|
||||
margin-top: 2%;
|
||||
border-color: var(--color-text-primary);
|
||||
}
|
||||
|
||||
.slider {
|
||||
width: 100vw;
|
||||
height: 80vh;
|
||||
}
|
||||
|
||||
.slider-element {
|
||||
background-color: lightblue;
|
||||
}
|
||||
|
||||
.slider-info {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background-color: var(--color-slider-info);
|
||||
padding: 20px;
|
||||
border-radius: 20px;
|
||||
max-width: 70%;
|
||||
}
|
||||
|
||||
.slider-controls {
|
||||
font-size: 2.6rem;
|
||||
padding: 0.25rem 0.5rem;
|
||||
}
|
||||
|
||||
.slider-control-left {
|
||||
border-top-right-radius: 15px;
|
||||
border-bottom-right-radius: 15px;
|
||||
}
|
||||
|
||||
.slider-control-right {
|
||||
border-top-left-radius: 15px;
|
||||
border-bottom-left-radius: 15px;
|
||||
}
|
||||
|
||||
.offset-button {
|
||||
position: absolute;
|
||||
bottom: 5%;
|
||||
}
|
||||
|
||||
.yt-embed {
|
||||
background-color: var(--color-background-yt-embed) !important;
|
||||
}
|
||||
|
||||
.pullquote-lines {
|
||||
border-color: var(--color-text-primary);
|
||||
margin-bottom: 2%;
|
||||
margin-top: 2%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.quotes-text {
|
||||
font-size: 150%;
|
||||
font-style: italic;
|
||||
font-weight: normal;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.quotes-author {
|
||||
text-align: right;
|
||||
font-style: italic;
|
||||
width: 80%;
|
||||
margin-right: auto;
|
||||
font-weight: lighter;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
|
||||
.project-logo {
|
||||
margin-top: 12vh;
|
||||
width: 80vw;
|
||||
height: auto;
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
.project-logo.small-logo {
|
||||
width: 50%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.inline-elements {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 999px) {
|
||||
.inline-elements .button {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.inline-elements * {
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.rounded-corners {
|
||||
border: none;
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
.circle {
|
||||
border-radius: 5000px;
|
||||
}
|
||||
|
||||
.bigger {
|
||||
font-size: 1.2rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.no-margin {
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 550px) and (max-width: 999px) {
|
||||
.project-logo {
|
||||
margin-top: 10vh;
|
||||
width: 50vw;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1000px) {
|
||||
.project-logo {
|
||||
margin-top: 4vh;
|
||||
width: auto;
|
||||
height: 40vh;
|
||||
}
|
||||
|
||||
.project-logo.small-logo {
|
||||
width: 25%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.inline-elements {
|
||||
flex-direction: row;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 800px) {
|
||||
.slider-controls {
|
||||
font-size: 3rem;
|
||||
}
|
||||
}
|
||||
@@ -1,49 +0,0 @@
|
||||
.timeline {
|
||||
position: relative;
|
||||
display: block;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.timeline-el {
|
||||
z-index: 3;
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
margin-top: 30px;
|
||||
background: none;
|
||||
}
|
||||
|
||||
.timeline-dot {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background-color: rgb(21, 43, 92);
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
.timeline-year {
|
||||
margin-right: 20px;
|
||||
color: var( --color-text-accent );
|
||||
font-style: italic;
|
||||
width: 5rem;
|
||||
}
|
||||
|
||||
.timeline-desc {
|
||||
font-style: italic;
|
||||
font-weight: lighter;
|
||||
margin-left: 20px;
|
||||
max-width: calc( 100% - 5rem - 60px );
|
||||
}
|
||||
|
||||
.timeline-line {
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
height: calc(100% - 10px);
|
||||
top: 5px;
|
||||
width: 4px;
|
||||
background-color: rgb(110, 110, 110);
|
||||
display: flex;
|
||||
left: calc( 5rem + 28px );
|
||||
}
|
||||
@@ -1,48 +0,0 @@
|
||||
.wrapfig-wrapper {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.wrapfig {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.wrapfig.left {
|
||||
float: none;
|
||||
}
|
||||
|
||||
.wrapfig.right {
|
||||
float: none;
|
||||
}
|
||||
|
||||
.wrapfig-text {
|
||||
margin: 5px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
@media only screen and (min-width: 999px) {
|
||||
.wrapfig {
|
||||
width: 40%;
|
||||
}
|
||||
|
||||
.wrapfig.left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.wrapfig.right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.wrapfig-text {
|
||||
width: 58%;
|
||||
}
|
||||
|
||||
.wrapfig-text.left {
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.wrapfig-text.right {
|
||||
margin-left: auto;
|
||||
}
|
||||
}
|
||||
@@ -1,75 +0,0 @@
|
||||
<div class="footer-container">
|
||||
<img src="https://static.janishutz.com/logo.jpg" alt="janishutz.com logo" class="logo">
|
||||
<div class="footer-text-container">
|
||||
<div class="footer-category">
|
||||
<h3>Projects</h3>
|
||||
<a href="/projects">View all</a>
|
||||
<a href="/projects/storagemanager">StorageManager</a>
|
||||
<a href="/projects/qrscanner">QR & Barcode Insight</a>
|
||||
<a href="/projects/libreevent">libreǝvent</a>
|
||||
<a href="/projects/musicplayer">MusicPlayer</a>
|
||||
<a href="/projects/biogascontrollerapp">BiogasControllerApp</a>
|
||||
</div>
|
||||
<div class="footer-category">
|
||||
<h3>Info</h3>
|
||||
<a href="/about">About janishutz.com</a>
|
||||
<a href="/about/aboutme">About Janis Hutz</a>
|
||||
<div class="theme-selector">
|
||||
<span class="material-symbols-outlined" id="theme-switcher-icon">light_mode</span>
|
||||
<select id="theme-select" onchange="changeTheme()">
|
||||
<option value="auto">Auto</option>
|
||||
<option value="light_mode">Light</option>
|
||||
<option value="dark_mode">Dark</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-category">
|
||||
<h3>Support</h3>
|
||||
<a href="https://support.janishutz.com">Get support</a>
|
||||
<a href="https://support.janishutz.com/knowledgebase.php">Knowledgebase</a>
|
||||
<a href="/support/support-status">Support status</a>
|
||||
</div>
|
||||
<div class="footer-category">
|
||||
<h3>Legal</h3>
|
||||
<a href="/legal/privacy">Privacy Policy</a>
|
||||
<a href="/legal/tos">Terms of Service</a>
|
||||
<a href="/legal/returns">Return policy</a>
|
||||
<a href="/support/support-status">Support Status</a>
|
||||
<div onclick="showAnalytics()" style="cursor: pointer;">Analytics</div>
|
||||
</div>
|
||||
|
||||
<div class="analytics-notice" id="analytics">
|
||||
<h2>Analytics</h2>
|
||||
<p>This website uses privacy preserving product analytics allowing me to analyze aggregated statistics for this website. All data collected will not allow me to uniquely identify you. <br><a href="/legal/privacy">Privacy Policy</a></p>
|
||||
<!-- Matomo stuff -->
|
||||
<div id="matomo-opt-out">
|
||||
Loading...
|
||||
</div>
|
||||
<script src="https://analytics.janishutz.com/index.php?module=CoreAdminHome&action=optOutJS&divId=matomo-opt-out&language=auto&fontColor=000000&fontSize=12px&fontFamily=monospace&showIntro=1"></script>
|
||||
<!-- Matomo Image Tracker-->
|
||||
<img referrerpolicy="no-referrer-when-downgrade" src="https://analytics.janishutz.com/matomo.php?idsite=2&rec=1" style="border:0" alt="" />
|
||||
<!-- End Matomo -->
|
||||
|
||||
<button class="analytics-button" onclick="closeAnalytics()"><span class="material-symbols-outlined">close</span></button>
|
||||
|
||||
<div class="small-symbol" onclick="showAnalytics()" title="Change your analytics preferences"><span class="material-symbols-outlined">Analytics</span></div>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
function closeAnalytics () {
|
||||
document.getElementById( 'analytics' ).classList.remove( 'show' );
|
||||
localStorage.setItem( 'analytics-dismissed', 'true' );
|
||||
}
|
||||
|
||||
function showAnalytics () {
|
||||
document.getElementById( 'analytics' ).classList.add( 'show' );
|
||||
}
|
||||
|
||||
if ( !localStorage.getItem( 'analytics-dismissed' ) ) {
|
||||
document.getElementById( 'analytics' ).classList.add( 'show' );
|
||||
}
|
||||
|
||||
// Show which theme is loaded
|
||||
document.getElementById( 'theme-select' ).value = loadedTheme;
|
||||
</script>
|
||||
</div>
|
||||
@@ -1,130 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/side-by-side.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>janishutz.com - software designed to make your life easier</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="software store, custom software, foss" />
|
||||
<meta name="description"
|
||||
content="Discover amazing software projects like ConductorCalc, libreevent, a secure and reliable authentication system and much more and get support for it all" />
|
||||
<meta name="og:title" content="janishutz.com - software to make your life easier" />
|
||||
<meta name="og:description"
|
||||
content="Discover projects, services and more developed by Janis Hutz, get support and more!" />
|
||||
<meta name="og:image" content="https://static.janishutz.com/logo.jpg" />
|
||||
<meta name="og:type" content="website" />
|
||||
<meta name="og:url" content="https://janishutz.com" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta property="twitter:card" content="summary_large_image">
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav></nav>
|
||||
<!-- <video src="https://static.janishutz.com/assets/video-home.mp4" autoplay class="title-video"></video> -->
|
||||
<div class="slider">
|
||||
<div class="slider-container">
|
||||
<div id="conductorcalc" class="slider-element current"
|
||||
data-image-base-url="https://static.janishutz.com/assets/home/conductorcalc" data-filetype="jpg">
|
||||
<div class="slider-info">
|
||||
<h2>ConductorCalc</h2>
|
||||
<p>The perfect tool to aid you in the complex calculations necessary when building high voltage
|
||||
lines</p>
|
||||
<a href="https://conductorcalc.com" class="button" target="_blank">Check it out</a>
|
||||
</div>
|
||||
</div>
|
||||
<div id="musicplayer" class="slider-element"
|
||||
data-image-base-url="https://static.janishutz.com/assets/projects/musicplayer" data-filetype="jpg">
|
||||
<div class="slider-info">
|
||||
<h2>MusicPlayer</h2>
|
||||
<p>Your one-stop solution for music at your next party</p>
|
||||
<a href="/projects/musicplayer" class="button">Check it out</a>
|
||||
</div>
|
||||
</div>
|
||||
<div id="libreevent" class="slider-element"
|
||||
data-image-base-url="https://static.janishutz.com/assets/projects/libreevent" data-filetype="jpg">
|
||||
<div class="slider-info">
|
||||
<h2>libreǝvent</h2>
|
||||
<p>The all-in-one solution for your next event!</p>
|
||||
<a href="https://libreevent.janishutz.com" class="button" target="_blank">Check it out</a>
|
||||
</div>
|
||||
</div>
|
||||
<div id="foss" data-image-base-url="https://static.janishutz.com/assets/home/foss" data-filetype="jpg"
|
||||
class="slider-element">
|
||||
<div class="slider-info">
|
||||
<h2>Open Source Projects</h2>
|
||||
<p>Free Software, developed by Janis Hutz & the community</p>
|
||||
<a href="/projects/#foss" class="button">Discover them!</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<span class="slider-controls slider-control-left material-symbols-outlined"
|
||||
onclick="sliderControl( 'previous' )">arrow_back</span>
|
||||
<span class="slider-controls slider-control-right material-symbols-outlined"
|
||||
onclick="sliderControl( 'next' )">arrow_forward</span>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<hr class="divider">
|
||||
<h1>My work</h1>
|
||||
<p>Discover all my main projects</p>
|
||||
<a href="/projects" class="button">Discover them</a>
|
||||
<hr class="divider">
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<h3>Store</h3>
|
||||
<p>Find your perfect professional-grade Software</p>
|
||||
<a href="https://store.janishutz.com" class="button" target="_blank">Store</a>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<h3>ConductorCalc</h3>
|
||||
<p>Professional wire calculation software to aid in building high voltage lines safely</p>
|
||||
<a href="https://conductorcalc.com" class="button" target="_blank">ConductorCalc</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<h3>Accounts</h3>
|
||||
<p>Log into any of my services with one single account, or apply to get access to the SDKs to integrate
|
||||
them into your own projects</p>
|
||||
<a href="https://account.janishutz.com" class="button" target="_blank">To Account</a>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<h3>Free & Open Source Software</h3>
|
||||
<p>Various open source projects are in the works at janishutz.com, with help from the community.</p>
|
||||
<a href="/projects#foss" class="button">Projects</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<h3>iOS Apps</h3>
|
||||
<p>Apps to improve your day-to-day life by providing useful features helping you stay safe and
|
||||
organized.</p>
|
||||
<a href="/projects#ios" class="button">iOS Apps</a>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<h3>Custom Websites</h3>
|
||||
<p>Find your perfect new web appearance, built from the groundup without any frameworks</p>
|
||||
<a href="https://development.janishutz.com" class="button" target="_blank">Check it out</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<footer></footer>
|
||||
|
||||
<script src="https://static.janishutz.com/js/slider.js"></script>
|
||||
<script>
|
||||
activateSlider(7500);
|
||||
loadImageType('desktop');
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,52 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Legal | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="" />
|
||||
<meta name="description" content="The hub for all the things legal at janishutz.com" />
|
||||
<meta name="og:type" content="website" />
|
||||
<meta name="og:url" content="https://janishutz.com/legal" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
<style>
|
||||
.info {
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
font-size: smaller;
|
||||
color: var( --color-text-accent );
|
||||
}
|
||||
|
||||
.legal-icon {
|
||||
font-size: 10rem;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav></nav>
|
||||
<div class="content">
|
||||
<span class="material-symbols-outlined legal-icon">gavel</span>
|
||||
<h1 class="title">The Legal Stuff</h1>
|
||||
|
||||
<p class="text-center;">View all the legal agreements here, which apply whenever you use any of the services on janishutz.com</p>
|
||||
|
||||
<div class="inline-elements">
|
||||
<a class="button" href="/legal/privacy">Privacy Policy</a>
|
||||
<a class="button" href="/legal/tos">Terms of Service</a>
|
||||
<a class="button" href="/legal/returns">Return Policy</a>
|
||||
<a class="button" href="/legal/licences">Licences</a>
|
||||
<a class="button" href="/support/support-status">Support Status</a>
|
||||
</div>
|
||||
|
||||
<p class="info">Looking to opt out of analytics? Click <i onclick="showAnalytics()" style="cursor: pointer; text-decoration: underline;">here</i></p>
|
||||
</div>
|
||||
<footer></footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,50 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Software Licences | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="" />
|
||||
<meta name="description" content="Licenses used for janishutz.com software" />
|
||||
<meta name="og:type" content="website" />
|
||||
<meta name="og:url" content="https://janishutz.com/legal/licences" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
<style>
|
||||
.info {
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
font-size: smaller;
|
||||
color: rgb(41, 41, 41);
|
||||
}
|
||||
|
||||
.licence-icon {
|
||||
font-size: 10rem;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav></nav>
|
||||
<div class="content">
|
||||
<span class="material-symbols-outlined licence-icon">license</span>
|
||||
<h1 class="title">Licences</h1>
|
||||
|
||||
<a href="/legal" class="back">← Back to legal hub</a>
|
||||
<p class="text-center;">Here you can find a copy of all the licences used for all projects on this website. Each software that uses one of these links to this page.</p>
|
||||
|
||||
<div class="inline-elements">
|
||||
<a class="button" href="https://www.gnu.org/licenses/gpl-3.0.en.html">GNU General Public Licence V3</a>
|
||||
<a class="button" href="/legal/licences/proprietary">Proprietary</a>
|
||||
</div>
|
||||
|
||||
<p class="info">Looking to opt out of analytics? Click <i onclick="showAnalytics()" style="cursor: pointer; text-decoration: underline;">here</i></p>
|
||||
</div>
|
||||
<footer></footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,86 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Proprietary Software Licence | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="description" content="Janis Hutz's proprietary Software Licence" />
|
||||
<meta name="og:type" content="website" />
|
||||
<meta name="og:url" content="https://janishutz.com/legal/licences/proprietary" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
<style>
|
||||
.info {
|
||||
font-weight: normal;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav></nav>
|
||||
<div class="content">
|
||||
<h1 class="title">Proprietary Licence</h1>
|
||||
|
||||
<a href="/legal/licences" class="back">← Back to licences</a>
|
||||
<ol style="width: 100%">
|
||||
<b><li>
|
||||
Installation
|
||||
<p class="info">You are granted the right to install this software on a limited number of devices.</p>
|
||||
Restrictions
|
||||
<ul class="info">
|
||||
<li>
|
||||
You are not allowed to work around technical restrictions or limitations of the software
|
||||
</li>
|
||||
<li>
|
||||
You are not allowed to use this software on multiple devices simultaneously, but are allowed to have it installed on a limited number of devices at the same time
|
||||
</li>
|
||||
<li>
|
||||
You are not allowed to decompile, reverse engineer or disassemble the software.
|
||||
</li>
|
||||
</ul>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Licensing
|
||||
<p class="info">When purchasing this software, the software is not sold to you, but licenced to you. Due to non-compliance with these terms, your licence may be revoked without financial compensation.</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Transferring
|
||||
<p class="info">You are not allowed to resell or transfer your licence to other accounts. A licence is granted to a specific account and is linked to that.</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Warranty
|
||||
<p class="info">You agree that Janis Hutz is in no way, shape or form liable for any damage incurred by using this software.
|
||||
There is no warranty included with this software.
|
||||
All software is extensively tested, but errors in usage or code may cause loss of data created with the software.
|
||||
Janis Hutz is not required to provide immediate updates if features of the software do not work as intended.
|
||||
</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Updating
|
||||
<p class="info">Updates will be rolled out to address potential issues some time after a bug report was made through the <a href="https://support.janishutz.com/index.php?a=add" target="_blank">support system</a>.
|
||||
You are not guaranteed to receive updates to the software indefinitely. You can see software support statuses and roadmaps <a href="/legal/support-status" target="_blank">here</a>.
|
||||
</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Support
|
||||
<p class="info">Comprehensive software support may be provided to you as part of your purchase. Any paid software includes a basic support package that is used to address potential shortcomings of the software. If you experience any bugs in the software, please <a href="https://support.janishutz.com/index.php?a=add&category=7" target="_blank">report a bug</a></p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Updating of these terms
|
||||
<p class="info">These terms may be changed at any time. The most recent terms at the time of your purchase are the terms that apply to your software. New terms will not be forced upon you</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Entire agreement
|
||||
<p class="info">By agreeing to these terms, you also agree to the <a href="/legal/tos" target="_blank">Terms of Service</a>, the <a href="/legal/privacy" target="_blank">Privacy Policy</a> and the <a href="/legal/returns" target="_blank">Return Policy</a></p>
|
||||
</li></b>
|
||||
</ol>
|
||||
<i>Last updated 2024-05-20</i>
|
||||
</div>
|
||||
<footer></footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,128 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Privacy Policy | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="privacy-policy" />
|
||||
<meta name="description"
|
||||
content="Learn how your data is used on janishutz.com and all other services operated by Janis Hutz" />
|
||||
<meta name="og:type" content="website" />
|
||||
<meta name="og:url" content="https://janishutz.com" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
<style>
|
||||
.info {
|
||||
font-weight: normal;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav></nav>
|
||||
<div class="content">
|
||||
<h1 class="title">Privacy Policy</h1>
|
||||
|
||||
<a href="/legal" class="back">← Back to legal hub</a>
|
||||
|
||||
<hr class="pullquote-lines">
|
||||
<h3 class="quotes-text">Privacy is an inherent human right, and a requirement for maintaining the human
|
||||
condition with dignity and respect</h3>
|
||||
<h4 class="quotes-author">- Bruce Schneier</h4>
|
||||
<hr class="pullquote-lines">
|
||||
|
||||
<p>Keeping your data safe is at the centre of all of my software. Therefore, I will never sell your data and all
|
||||
data that is collected automatically is not tied to your identity.</p>
|
||||
|
||||
|
||||
<ol style="width: 100%">
|
||||
<b>
|
||||
<li>
|
||||
What data is collected on you?
|
||||
<p class="info">Some of my web-based services, but none of my apps may use Privacy Preserving
|
||||
Product Analytics, meaning all data on interactions with my websites and services will be
|
||||
aggregated and anonymized. All raw data is deleted within a day of being collected. <br>
|
||||
This data includes your anonymized IP address and your approximated country (which is estimated
|
||||
based on your IP address) and what pages you clicked on. For this purpose my services use
|
||||
Matomo, which is a free and open source, self-hosted analytics tool.
|
||||
<br> All other data that is collected on you is data you willingly and at your own
|
||||
responsibility provide me with when signing up or using any of my services. Whilst I try to have
|
||||
everything run cloud-less, some features still require some data handling on my servers.
|
||||
</p>
|
||||
</li>
|
||||
</b>
|
||||
<b>
|
||||
<li>
|
||||
How is this data stored and processed?
|
||||
<p class="info">All the data that has to be sent to the cloud for processing, like the contact form,
|
||||
is sent to my servers using an HTTPS connection, hence, it is an encrypted connection. You may
|
||||
have your request deleted at any time. To do so, depending on the platform, you will either find
|
||||
a button on the account page, or you will have to contact me to delete the data.
|
||||
<br> The data collected automatically by my analytics tool is stored for one day and never
|
||||
allows me to uniquely identify you as an individual. Once the data is aggregated, the raw data
|
||||
is deleted, and you will only show up as part of all users that visit my websites.
|
||||
</p>
|
||||
</li>
|
||||
</b>
|
||||
<b>
|
||||
<li>
|
||||
How can I have my data deleted?
|
||||
<p class="info">
|
||||
You can delete your account data <a href="https://account.janishutz.com/account/delete"
|
||||
target="_blank">here</a>. <br>
|
||||
Data from other services that are connected to this service can also be deleted from the account
|
||||
page under <a href="https://account.janishutz.com/account/services" target="_blank">here</a>.
|
||||
<br>
|
||||
To have non-account data deleted, or in case the automated deletion fails, please <a
|
||||
href="https://support.janishutz.com/index.php?a=add&catid=5">contact me</a>. I will not be
|
||||
able to delete the data that is collected automatically, as I do not know who this data belongs
|
||||
to and all raw data is deleted within one day of creation.
|
||||
</p>
|
||||
</li>
|
||||
</b>
|
||||
<b>
|
||||
<li>
|
||||
Opting out of data collection
|
||||
<p class="info">All websites that feature Matomo tracking code will allow you to opt out, by
|
||||
clicking the small symbol in the bottom right corner.</p>
|
||||
</li>
|
||||
</b>
|
||||
<b>
|
||||
<li>
|
||||
Cookies
|
||||
<p class="info">Most of my websites do not use any cookies. If they do use cookies, the specific
|
||||
service will explicitly state so when you first visit the page. Cookies are small amounts of
|
||||
text-based data used to identify you, which, whenever one of my services uses cookies, is
|
||||
required to allow you to sign into that page. No third party cookies are used on any of my
|
||||
websites</p>
|
||||
</li>
|
||||
</b>
|
||||
<b>
|
||||
<li>
|
||||
Sharing data with third parties
|
||||
<p class="info">No data is shared with third parties, except you give your explicit, written consent
|
||||
to do so. In the future, my store may support other developer's software. If so and you purchase
|
||||
a product by a third-party developer, some data will have to be shared with them.</p>
|
||||
</li>
|
||||
</b>
|
||||
<b>
|
||||
<li>
|
||||
Updating this privacy Policy
|
||||
<p class="info">I retain the right to, at any time, at my own will and discretion, update this
|
||||
privacy policy. Valid is always the privacy policy which is available at this URL</p>
|
||||
</li>
|
||||
</b>
|
||||
</ol>
|
||||
<i>Last updated 2025-09-12</i>
|
||||
</div>
|
||||
<footer></footer>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,65 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Privacy Policy V1 | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="privacy-policy, old" />
|
||||
<meta name="description" content="The old version of the privacy policy" />
|
||||
<meta name="og:type" content="website" />
|
||||
<meta name="og:url" content="https://janishutz.com/legal/privacy/v1" />
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
<style>
|
||||
.info {
|
||||
font-weight: normal;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav></nav>
|
||||
<div class="content">
|
||||
<h1 class="title">Privacy Policy</h1>
|
||||
|
||||
<hr class="pullquote-lines">
|
||||
<h3 class="quotes-text">Privacy is an inherent human right, and a requirement for maintaining the human condition with dignity and respect</h3>
|
||||
<h4 class="quotes-author">- Bruce Schneier</h4>
|
||||
<hr class="pullquote-lines">
|
||||
|
||||
<p>Keeping your data safe is at the centre of all of my software. Therefore, none of my software automatically collect any data</p>
|
||||
|
||||
<ol style="width: 100%">
|
||||
<b><li>
|
||||
What data is collected on you?
|
||||
<p class="info">This website and all of my services do not collect any data on how you interact with them. All data that is collected on you is data you willingly and at your own responsibility provide me with when signing up or using any of my services. Whilst I try to have everything run cloud-less, some features still require some data handling on my servers.</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
How is this data stored and processed?
|
||||
<p class="info">All the data that has to be sent to the cloud for processing, like the contact form, is sent to my servers using an HTTPS connection, hence, it is an encrypted connection. The data from the contact from is then sent to one of my email addresses via my mail server and is never stored on the actual server. You may have your request deleted at any time. To do so, please contact me again or respond to my response email.</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
How can I have my data deleted?
|
||||
<p class="info">To have your data deleted, please <a href="/support/contact">contact me</a>.</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Cookies
|
||||
<p class="info">Most of my websites do not use any cookies. If they do use cookies, the specific service will explicitly state so when you first visit the page. Cookies are small amounts of text-based data which is used to identify you, which, whenever one of my services uses cookies, is required to allow you to for example sign into that page. No third party cookies are used on any of my websites</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Sharing data with third parties
|
||||
<p class="info">No data is shared with any third parties, except I have your explicit, written permission to do so in case I need to forward your query to somebody else.</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Updating this privacy Policy
|
||||
<p class="info">I retain the right to, at any time, at my own will and discretion to update this privacy policy. Valid is always the privacy policy which is available at this URL</p>
|
||||
</li></b>
|
||||
</ol>
|
||||
</div>
|
||||
<footer></footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,66 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Return Policy | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="return policy" />
|
||||
<meta name="description" content="The return policy for store.janishutz.com" />
|
||||
<meta name="og:type" content="website" />
|
||||
<meta name="og:url" content="https://janishutz.com/legal/returns" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
<style>
|
||||
.info {
|
||||
font-weight: normal;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav></nav>
|
||||
<div class="content">
|
||||
<h1 class="title">Return Policy</h1>
|
||||
|
||||
<a href="/legal" class="back">← Back to legal hub</a>
|
||||
<ol style="width: 100%">
|
||||
<b><li>
|
||||
Definitions
|
||||
<p class="info">
|
||||
<ul style="font-weight: normal;">
|
||||
<li><b>Return Window:</b> The window in which I can provide you with a refund</li>
|
||||
<li><b>Cancellation Window:</b> The window in which you can cancel a subscription before being charged again.</li>
|
||||
</ul>
|
||||
</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Return Window
|
||||
<p class="info">You can return a product within 30 days of purchasing through your account. Some products might not be refundable, as they are consumable. Such products are indicated on the store as not being refundable</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Cancellation Window
|
||||
<p class="info">You can cancel a subscription within your account up to 24 hours before the new billing cycle starts. After that, we cannot guarantee that you won't be charged again.</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Refund amount
|
||||
<p class="info">Refunds result in cost and work for me. Therefore, a refund comes at a 10% plus CHF 0.50 fee. The remaining funds will be sent back to your payment method within about 10 work days. This duration is solely dependent on the payment provider.</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Denial of refunds
|
||||
<p class="info">Some products may not be refundable for some reasons. We therefore cannot refund the entire order. If a product is not refundable, this is communicated to you on the product page on the store.</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Refunds of subscriptions
|
||||
<p class="info">Subscriptions aren't currently eligible for refunds. Please note that there might be cases where returning products or cancelling a subscription will not cancel a connected subscription. If that happens and you contact us within the first 5 days of the now useless subscription renewing, we can provide a full refund for the time after the renewal date</p>
|
||||
</li></b>
|
||||
</ol>
|
||||
<i>Last updated 2025-09-12</i>
|
||||
</div>
|
||||
<footer></footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,106 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Terms of Service | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="tos" />
|
||||
<meta name="description" content="Terms of service for janishutz.com and related services" />
|
||||
<meta name="og:type" content="website" />
|
||||
<meta name="og:url" content="https://janishutz.com/legal/tos" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
<style>
|
||||
.info {
|
||||
font-weight: normal;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav></nav>
|
||||
<div class="content">
|
||||
<h1 class="title">Terms of Service</h1>
|
||||
|
||||
<a href="/legal" class="back">← Back to legal hub</a>
|
||||
<ol style="width: 100%">
|
||||
<b><li>
|
||||
Using content of my websites
|
||||
<p class="info">In general, you are not allowed to use any of the content of my websites, except explicitly stated otherwise (like on my blog).</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Definitions
|
||||
<p class="info">
|
||||
<ul style="font-weight: normal;">
|
||||
<li><b>Perpetual Licence:</b> A licence which will allow you to use the software <i>for as long as you wish</i>, and it is compatible with your chosen Operating System. What it does <i><b>not</b></i> mean:
|
||||
<ul>
|
||||
<li>You are not guaranteed to have access to online services</li>
|
||||
<li>You are not guaranteed to be able to use subscription-based online services indefinitely</li>
|
||||
<li>You do not get updates to the software indefinitely</li>
|
||||
<li>Some new features might require purchasing a new version of the software</li>
|
||||
<li>You do not get support for the software indefinitely. Support past a specified point in time might be available for a fee</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>Subscription:</b> A licence which grants you <i>temporary</i> access to a software, during the time-frame in which you pay for it. What it does <i><b>not</b></i> mean:
|
||||
<ul>
|
||||
<li>You will be able to keep using the software after cancellation and expiry of your subscription</li>
|
||||
<li>Support is not guaranteed to be included</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><b>End of Life (EOL):</b> The point from which on the software will not receive any further updates.</li>
|
||||
</ul>
|
||||
</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Software Licences
|
||||
<p class="info">
|
||||
<ul style="font-weight: normal;">
|
||||
<li>All Software Licences granted to you when purchasing one off of my store are granted to you and you only, except explicitly stated otherwise.</li>
|
||||
<li>You are not allowed to share a licence with other people outside the allowed limit stated for each software. There are measures in place to prevent this.</li>
|
||||
<li>Licences to my software are usually granted to you as <i>perpetual licences</i>, meaning you will have access to this software indefinitely, even if I choose to end support for it.</li>
|
||||
<li>Software that has reached EOL will be updated one last time, which will remove the DRM, allowing you to use it even without an account</li>
|
||||
</ul>
|
||||
</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Document Licenses
|
||||
<p class="info">
|
||||
<ul style="font-weight: normal;">
|
||||
<li>All Document Licences granted to you when purchasing one off of my store are granted to you and you only, except explicitly stated otherwise.</li>
|
||||
<li>You are not allowed to share a licence with other people. There are measures in place to prevent this.</li>
|
||||
<li>Licences to my PDFs are usually granted to you as <i>perpetual licences</i>, meaning you will have access to these Documents indefinitely, even if I choose to end support for it.</li>
|
||||
<li>Documents I choose to drop from the store will be emailed to you upon reaching that status, so you keep your access to them.</li>
|
||||
<li>All documents may only be viewed with the provided viewer in the browser, or in the future with any other Software provided and explicitly authorized by me.</li>
|
||||
<li>There is no guarantee that the documents will be available at all times, as downtimes in the systems may occur, which are outside my control.</li>
|
||||
</ul>
|
||||
</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Accountability
|
||||
<p class="info">
|
||||
I am in no way accountable for any damage that is incurred from using my software. I am not accountable for any loss of data that occurs by using any of my software, not even if you store data on the cloud. I keep regular, automated backups of all data to ensure that catastrophic data loss is not possible.
|
||||
I thoroughly test my software to ensure that there is no risk of data loss. All data that could possibly be lost is data that is stored by my software.
|
||||
</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Returns
|
||||
<p class="info">
|
||||
Returns are handled according to my <a href="/legal/returns">Return Policy</a> to which you agree when agreeing to these terms
|
||||
</p>
|
||||
</li></b>
|
||||
<b><li>
|
||||
Privacy
|
||||
<p class="info">When agreeing to these terms, you also agree to my <a href="/legal/privacy" target="_blank">Privacy Policy</a>, which states that some data on your interaction might be collected, but will never be tied to your identity. All other data you provide willingly is for obvious reasons tied to your identity.</p>
|
||||
</li></b>
|
||||
</ol>
|
||||
<p>Any violation of the above terms above may lead to a termination of your account or your licence being revoked. </p>
|
||||
<i>Last updated 2024-05-20</i>
|
||||
</div>
|
||||
<footer></footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,52 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/wrapfig.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Links | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="description" content="A collection of important links for janishutz.com" />
|
||||
<meta name="og:title" content="Links | janishutz.com" />
|
||||
<meta name="og:image" content="https://static.janishutz.com/logo.jpg" />
|
||||
<meta name="og:type" content="website" />
|
||||
<meta name="og:url" content="https://janishutz.com/links" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta property="twitter:card" content="summary_large_image">
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
<style>
|
||||
.link-icon {
|
||||
font-size: 10rem;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav></nav>
|
||||
<div class="content">
|
||||
<span class="material-symbols-outlined link-icon">link</span>
|
||||
<h1 class="title">Links</h1>
|
||||
<p class="text-center">Links to the most important pages and platforms</p>
|
||||
|
||||
<!-- TODO: Improve design -->
|
||||
<div class="inline-elements">
|
||||
<a href="https://development.janishutz.com" class="button" target="_blank">Custom Websites</a>
|
||||
<a href="https://store.janishutz.com" class="button" target="_blank">Store</a>
|
||||
<a href="https://github.com/janishutz" class="button" target="_blank">GitHub</a>
|
||||
<a href="https://git.janishutz.com/janishutz" class="button" target="_blank">Git</a>
|
||||
<a href="https://npmjs.com/~janishutz" class="button" target="_blank">npm</a>
|
||||
<a href="/projects" class="button">Projects</a>
|
||||
<a href="/about/aboutme" class="button">About Janis Hutz</a>
|
||||
<a href="https://store.janishutz.com/donate" class="button" target="_blank">Donate</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<footer></footer>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,146 +0,0 @@
|
||||
<script>
|
||||
// Themeing
|
||||
let loadedTheme = localStorage.getItem( 'theme' ) ?? 'auto';
|
||||
var theme = loadedTheme;
|
||||
let loadTheme = () => {
|
||||
loadedTheme = localStorage.getItem( 'theme' ) ?? 'auto';
|
||||
if ( loadedTheme === 'auto' ) {
|
||||
if ( window.matchMedia( '(prefers-color-scheme: dark)' ).matches ) {
|
||||
theme = 'dark_mode';
|
||||
} else {
|
||||
theme = 'light_mode';
|
||||
}
|
||||
}
|
||||
if ( theme === 'dark_mode' ) {
|
||||
document.documentElement.classList.remove( 'light' );
|
||||
document.documentElement.classList.add( 'dark' );
|
||||
} else {
|
||||
document.documentElement.classList.add( 'light' );
|
||||
document.documentElement.classList.remove( 'dark' );
|
||||
theme === 'light_mode';
|
||||
}
|
||||
}
|
||||
loadTheme();
|
||||
|
||||
setTimeout( () => {
|
||||
document.querySelector( 'body' ).classList.add( 'loaded' );
|
||||
}, 500 );
|
||||
|
||||
function changeTheme () {
|
||||
theme = document.getElementById( 'theme-select' ).value;
|
||||
localStorage.setItem( 'theme', theme );
|
||||
loadTheme();
|
||||
}
|
||||
</script>
|
||||
|
||||
<div class="nav-placeholder"></div>
|
||||
|
||||
<div class="nav-top-bar">
|
||||
<a href="/" class="logo-wrapper">
|
||||
<img src="https://static.janishutz.com/logo.jpg" alt="janishutz.com logo" class="logo">
|
||||
</a>
|
||||
<!-- <img src="https://static.janishutz.com/logo.jpg" alt="janishutz.com logo" class="logo"> -->
|
||||
<div class="nav-toggle" onclick="openMenu( 'toggle' )">
|
||||
<span class="line" id="line1"></span>
|
||||
<span class="line" id="line2"></span>
|
||||
<span class="line" id="line3"></span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="nav-menu">
|
||||
<div class="nav-link-wrapper">
|
||||
<a class="nav-link-header" href="/projects">
|
||||
<span class="material-symbols-outlined nav-icon">lightbulb</span>
|
||||
<div>Projects</div>
|
||||
</a>
|
||||
<div class="nav-link-dropdown">
|
||||
<a href="/projects">View all</a>
|
||||
<a href="/projects/storagemanager">StorageManager</a>
|
||||
<a href="/projects/qrscanner">QR & Barcode Insight</a>
|
||||
<a href="/projects/libreevent">libreǝvent</a>
|
||||
<a href="/projects/musicplayer">MusicPlayer</a>
|
||||
<a href="https://conductorcalc.com" target="_blank">ConductorCalc</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="nav-link-wrapper">
|
||||
<a class="nav-link-header" href="/services">
|
||||
<span class="material-symbols-outlined nav-icon">build</span>
|
||||
<div>Services</div>
|
||||
</a>
|
||||
<div class="nav-link-dropdown">
|
||||
<a href="https://store.janishutz.com">Store</a>
|
||||
<a href="https://account.janishutz.com">Account</a>
|
||||
<a href="https://development.janishutz.com">Custom Websites</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<a href="/" class="logo-wrapper">
|
||||
<img src="https://static.janishutz.com/logo.jpg" alt="janishutz.com logo" class="logo">
|
||||
</a>
|
||||
|
||||
<div class="nav-link-wrapper">
|
||||
<a class="nav-link-header" href="/about">
|
||||
<span class="material-symbols-outlined nav-icon">info</span>
|
||||
<div>About</div>
|
||||
</a>
|
||||
<div class="nav-link-dropdown">
|
||||
<a href="/about">About janishutz.com</a>
|
||||
<a href="/about/aboutme">About Janis Hutz</a>
|
||||
<a href="https://blog.janishutz.com" target="_blank">Blog</a>
|
||||
<a href="/legal">Legal</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="nav-link-wrapper">
|
||||
<a class="nav-link-header" href="/support">
|
||||
<span class="material-symbols-outlined nav-icon">support_agent</span>
|
||||
<div>Support</div>
|
||||
</a>
|
||||
<div class="nav-link-dropdown">
|
||||
<a href="https://support.janishutz.com" target="_blank">Support Hub</a>
|
||||
<a href="https://support.janishutz.com/knowledgebase.php" target="_blank">Knowledgebase</a>
|
||||
<a href="/support/old">Old websites</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const toggle = document.getElementsByClassName( 'nav-toggle' )[ 0 ];
|
||||
const menu = document.getElementsByClassName( 'nav-menu' )[ 0 ];
|
||||
const bar = document.getElementsByClassName( 'nav-top-bar' )[ 0 ];
|
||||
|
||||
function openMenu( action ) {
|
||||
if ( action === 'toggle' ) {
|
||||
if ( menu.classList.contains( 'active' ) ) {
|
||||
openMenu( 'close' );
|
||||
} else {
|
||||
openMenu( 'open' );
|
||||
}
|
||||
} else if ( action === 'close' ) {
|
||||
menu.classList.remove( 'active' );
|
||||
toggle.classList.remove( 'active' );
|
||||
document.body.classList.remove( 'no-scroll' );
|
||||
} else if ( action === 'open' ) {
|
||||
document.body.classList.add( 'no-scroll' );
|
||||
toggle.classList.add( 'active' );
|
||||
menu.classList.add( 'active' );
|
||||
bar.classList.remove( 'slide-up' );
|
||||
menu.classList.remove( 'slide-up' );
|
||||
}
|
||||
}
|
||||
|
||||
let oldScroll = 0;
|
||||
document.addEventListener( 'scroll', () => {
|
||||
if ( oldScroll < window.scrollY && window.innerHeight * 0.2 < window.scrollY ) {
|
||||
bar.classList.add( 'slide-up' );
|
||||
menu.classList.add( 'slide-up' );
|
||||
} else if ( oldScroll > window.scrollY ) {
|
||||
bar.classList.remove( 'slide-up' );
|
||||
menu.classList.remove( 'slide-up' );
|
||||
}
|
||||
oldScroll = window.scrollY;
|
||||
} );
|
||||
|
||||
// TODO: Hide menu on when scrolling down
|
||||
</script>
|
||||
@@ -1,80 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>BiogasControllerApp - Configure the microcontroller used in ENATECH at KSWO to control the Biogas Plant |
|
||||
janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="enatech, bga, controller, python" />
|
||||
<meta name="description"
|
||||
content="Control and configure the microcontroller used in ENATECH at Kantonsschule Wohlen using an easy to use user-interface with very clean code that you can use to study how it works" />
|
||||
<meta name="og:title"
|
||||
content="BiogasControllerApp - Configure the microcontroller used in ENATECH at KSWO to control the Biogas Plant" />
|
||||
<meta name="og:image" content="https://github.com/janishutz/MusicPlayerV2/raw/master/assets/logo.png" />
|
||||
<meta name="og:type" content="website" />
|
||||
<meta name="og:url" content="https://janishutz.com/projects/biogascontrollerapp" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta property="twitter:card" content="summary_large_image">
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav></nav>
|
||||
|
||||
<div class="content">
|
||||
<img src="https://raw.githubusercontent.com/janishutz/BiogasControllerApp/main/BiogasControllerAppLogo.png" alt="BiogasControllerApp logo"
|
||||
class="project-logo">
|
||||
<h1>Biogas­Controller­App</h1>
|
||||
|
||||
<a href="/projects" class="back-button">← All projects</a>
|
||||
<p>Control the microcontroller used in the subject ENATECH at Kantonsschule Wohlen</p>
|
||||
|
||||
<hr class="pullquote-lines">
|
||||
<h3 class="content-title-small">Easy to use, yet still features easy to understand code for beginners</h3>
|
||||
<hr class="pullquote-lines">
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<h2>GitHub Repository</h2>
|
||||
<p>BiogasControllerApp is available on GitHub, where you may also view its well-documented code, with
|
||||
beginner-friendliness in mind for the code.</p>
|
||||
<a href="https://github.com/janishutz/BiogasControllerApp" target="_blank" class="button">GitHub</a>
|
||||
|
||||
<h3 style="margin-top: 50px;">Features</h3>
|
||||
<ul>
|
||||
<li>
|
||||
Read out data from and configure the microcontroller in ENATECH
|
||||
</li>
|
||||
<li>
|
||||
Clean User Interface focusing on ease of use
|
||||
</li>
|
||||
<li>
|
||||
Tips to resolve erros baked directly into the app
|
||||
</li>
|
||||
<li>
|
||||
Easy to understand code
|
||||
</li>
|
||||
<li>
|
||||
A large focus on code quality and readability
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<footer></footer>
|
||||
|
||||
|
||||
<script src="https://static.janishutz.com/js/slider.js"></script>
|
||||
<script>
|
||||
activateSlider(7500);
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,218 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/side-by-side.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Projects | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="projects" />
|
||||
<meta name="description" content="An overview of Janis Hutz's most important projects" />
|
||||
<meta name="og:title" content="Projects | janishutz.com" />
|
||||
<meta name="og:description" content="An overview of Janis Hutz's most important projects" />
|
||||
<meta name="og:image" content="https://static.janishutz.com/logo.jpg" />
|
||||
<meta name="og:type" content="website" />
|
||||
<meta name="og:url" content="https://janishutz.com/projects" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta property="twitter:card" content="summary_large_image">
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
|
||||
<style>
|
||||
#yt-embed {
|
||||
width: 70vw;
|
||||
height: 40vw;
|
||||
}
|
||||
|
||||
.side-by-side {
|
||||
margin-top: 20px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav></nav>
|
||||
|
||||
<div class="slider">
|
||||
<div class="slider-container">
|
||||
<div class="slider-element current"
|
||||
style="background-image: url( 'https://store-cdn.janishutz.com/assets/libreevent/libreevent-title.jpg' );">
|
||||
<a href="/projects/libreevent" class="button offset-button">libreǝvent</a>
|
||||
</div>
|
||||
<div class="slider-element"
|
||||
style="background-image: url( 'https://static.janishutz.com/assets/projects/conductorcalc-title.jpg' );">
|
||||
<div class="slider-info">
|
||||
<h2>ConductorCalc</h2>
|
||||
<p>Professional Wire Calculation software</p>
|
||||
<a href="https://conductorcalc.com" class="button" target="_blank">ConductorCalc</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slider-element"
|
||||
style="background-image: url( 'https://static.janishutz.com/assets/projects/storagemanager-title.jpg' );">
|
||||
<div class="slider-info">
|
||||
<h2>StorageManager</h2>
|
||||
<p>Solving your storage management issues</p>
|
||||
<a href="/projects/storagemanager" class="button">StorageManager</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slider-element"
|
||||
style="background-image: url( 'https://static.janishutz.com/assets/projects/qrscanner-title.jpg' );">
|
||||
<div class="slider-info">
|
||||
<h2>QR & Barcode Insight</h2>
|
||||
<p>QR Scanner that makes you feel safer when scanning QR codes</p>
|
||||
<a href="/projects/qrscanner" class="button">QR & Barcode Insight</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slider-element"
|
||||
style="background-image: url( 'https://static.janishutz.com/assets/projects/musicplayer-title.jpg' );">
|
||||
<div class="slider-info">
|
||||
<h2>MusicPlayer</h2>
|
||||
<p>Your one-stop solution for the music at your next party</p>
|
||||
<a href="/projects/musicplayer" class="button">MusicPlayer</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<span class="slider-controls slider-control-left material-symbols-outlined"
|
||||
onclick="sliderControl( 'previous' )">arrow_back</span>
|
||||
<span class="slider-controls slider-control-right material-symbols-outlined"
|
||||
onclick="sliderControl( 'next' )">arrow_forward
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content" style="margin-top: 50px;">
|
||||
<h1>Projects</h1>
|
||||
|
||||
<p>Discover my software projects</p>
|
||||
|
||||
<hr class="divider" style="margin-top: 50px;">
|
||||
|
||||
<h2 id="foss">Open Source Projects</h2>
|
||||
<p>Projects you can use for free, that have their source code publicly available and you can help develop</p>
|
||||
<p>You may find all of them <a href="https://github.com/janishutz?tab=repositories" target="_blank">here</a></p>
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<img src="https://libreevent.janishutz.com/assets/logo.png" alt="libreevent logo"
|
||||
class="project-logo small-logo">
|
||||
<h3>libreevent</h3>
|
||||
<p>Tired of paying for event management software and want to gain control over your data? libreevent is
|
||||
a powerful tool to sell tickets for your next event. Complete with mobile apps for entry control</p>
|
||||
<a href="/projects/libreevent" class="button">Details</a>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<img src="https://github.com/janishutz/MusicPlayerV2/raw/master/assets/logo.png"
|
||||
alt="musicplayer logo" class="project-logo small-logo">
|
||||
<h3>MusicPlayer</h3>
|
||||
<p>A browser-based Music Player with remote playlist sharing and support for your local playlists, as
|
||||
well as Apple Music</p>
|
||||
<a href="/projects/musicplayer" class="button">Details</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<img src="https://static.janishutz.com/assets/logos/impress.jpg" alt="impress.js logo" class="project-logo small-logo">
|
||||
<h3>impress</h3>
|
||||
<p>A JavaScript library to create fancy browser-based presentations in 3D. Not my own project, but one I occasionally contribute to</p>
|
||||
<a href="https://github.com/impress/impress.js" class="button" target="_blank">GitHub</a>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<img src="https://static.janishutz.com/logo.jpg" alt="janishutz.com logo" class="project-logo small-logo">
|
||||
<h3>Arch-Dev-VM</h3>
|
||||
<p>Looking for an easy to set up Arch Linux virtual machine for development? The scripts here allow you
|
||||
to set up an Arch Linux Virtual Machine in under 1 hour, of which most time is waiting for downloads
|
||||
to finish.</p>
|
||||
<a href="https://github.com/janishutz/arch-dev-vm" class="button" target="_blank">GitHub</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<img src="https://raw.githubusercontent.com/janishutz/BiogasControllerApp/refs/heads/main/BiogasControllerAppLogo.png"
|
||||
alt="biogascontrollerapp logo" class="project-logo small-logo">
|
||||
<h3>BiogasControllerApp</h3>
|
||||
<p>A small KivyMD-based application to control a small Biogas Plant in the subject ENATECH at
|
||||
Kantonsschule Wohlen</p>
|
||||
<a href="/projects/biogascontrollerapp" class="button">Details</a>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<img src="https://static.janishutz.com/logo.jpg" alt="janishutz.com logo" class="project-logo small-logo">
|
||||
<h3>Configurations, etc</h3>
|
||||
<p>Various configuration files I personally use are available on my personal Gitea instance</p>
|
||||
<a href="https://git.janishutz.com/janishutz?tab=repositories" class="button" target="_blank">Git</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr class="divider" style="margin-top: 75px;">
|
||||
|
||||
<h2 id="ios">iOS Apps</h2>
|
||||
<p>Apps designed for your phone and tablet</p>
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<img src="https://static.janishutz.com/assets/logos/storagemanager.jpg" alt="StorageManager logo" class="project-logo small-logo">
|
||||
<h3>StorageManager</h3>
|
||||
<p>Missing stock keeping in your home storage? Keep throwing food away because it went bad?
|
||||
StorageManager aims to help you with this by providing easy to use tools to keep track of what you
|
||||
have</p>
|
||||
<a href="/projects/storagemanager" class="button">Details</a>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<img src="https://static.janishutz.com/assets/logos/qrscanner.jpg" alt="QR & Barcode Insight logo" class="project-logo small-logo">
|
||||
<h3>QR & Barcode Insight</h3>
|
||||
<p>QR Codes have become a massive security risk. QR & Barcode Insight helps protect you by showing
|
||||
you the unfiltered content of QR codes as well as the option to check the scanned links with
|
||||
Google's Safe Search API</p>
|
||||
<a href="/projects/qrscanner" class="button">Details</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr class="divider" style="margin-top: 75px;">
|
||||
|
||||
<h2 id="proprietary">Proprietary Software</h2>
|
||||
<p>Cross-Platform apps, available in browsers or even app stores!</p>
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<img src="https://cdn.conductorcalc.com/logo.jpg" alt="impress.js logo" class="project-logo small-logo">
|
||||
<h3>ConductorCalc</h3>
|
||||
<p>Your all-in-one solution for calculating parameters when designing high-voltage lines</p>
|
||||
<a href="https://conductorcalc.com" target="_blank" class="button">Details</a>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<img src="https://static.janishutz.com/logo.jpg" alt="janishutz.com logo" class="project-logo small-logo">
|
||||
<h3>Store</h3>
|
||||
<p>The way to buy my software and support the development of my open source software</p>
|
||||
<a href="https://store.janishutz.com" class="button" target="_blank">Store</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<img src="https://static.janishutz.com/logo.jpg" alt="janishutz.com logo" class="project-logo small-logo">
|
||||
<h3>Accounts</h3>
|
||||
<p>Tired of creating lots of accounts? All my services rely on a single account backend, not requiring
|
||||
you to create a new account for each</p>
|
||||
<a href="https://account.janishutz.com" class="button" target="_blank">Account</a>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<img src="https://static.janishutz.com/assets/logos/lsh.png" alt="Language School Hossegor logo" class="project-logo small-logo">
|
||||
<h3>Language School Hossegor Booking System</h3>
|
||||
<p>A fully featured booking system for a French language school, written from scratch specifically for
|
||||
their purposes with a highly customizable booking process.</p>
|
||||
<a href="/projects/languageschoolhossegor-booking" class="button">Details</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<footer></footer>
|
||||
|
||||
|
||||
<script src="https://static.janishutz.com/js/yt-embed.js"></script>
|
||||
<script src="https://static.janishutz.com/js/slider.js"></script>
|
||||
<script>
|
||||
activateSlider(7500);
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,83 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/side-by-side.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Language School Hossegor Booking | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav></nav>
|
||||
|
||||
<div class="content">
|
||||
<img src="https://static.janishutz.com/assets/logos/lsh.png" alt="Language School Hossegor logo"
|
||||
class="project-logo">
|
||||
<h1>Language School Hossegor Booking</h1>
|
||||
|
||||
<a href="/projects" class="back-button">← All projects</a>
|
||||
<p>A booking system to handle the complex demands of this French language school. It features an advanced admin
|
||||
panel where the entire offering can be changed with incredible flexibility.</p>
|
||||
|
||||
<a href="https://booking.languageschoolhossegor.com" class="button" target="_blank">Check it out</a>
|
||||
|
||||
<hr class="divider">
|
||||
|
||||
<h2>Features</h2>
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<h3>User accounts</h3>
|
||||
<p>There are user accounts where users can retrieve their invoices and view the status of their orders
|
||||
</p>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<h3>Very flexible main page</h3>
|
||||
<p>The main page dynamically loads its configuration from the backend and can thus be updated even
|
||||
during normal operation. Almost all fields displayed on the start page are dynamically rendered
|
||||
based on the configuration</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<h3>Extensive admin panel</h3>
|
||||
<p>The admin panel offers all kinds of settings, ranging from the courses offered (with the complex
|
||||
handling of combinations of multiple courses all adjustable in a user interface) to accommodation
|
||||
offered, transfer, privacy policy and terms of service. Even newsletters, invoices and general mail
|
||||
can be sent using it, all using their branding</p>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<h3>Multi-Language Support</h3>
|
||||
<p>The entire content is available in currently two languages, with instant switch in languages thanks
|
||||
to clever design of the localization system and the use of a web-app instead of a traditional
|
||||
webpage</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr class="divider">
|
||||
|
||||
<p>A system like this could be possible for your own adventure.</p>
|
||||
|
||||
<a href="https://support.janishutz.com/index.php?a=add&category=1" target="_blank" class="button"
|
||||
style="margin-top: 50px;">Interested?</a>
|
||||
</div>
|
||||
|
||||
|
||||
<footer></footer>
|
||||
|
||||
|
||||
<script src="https://static.janishutz.com/js/slider.js"></script>
|
||||
<script>
|
||||
activateSlider(7500);
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,133 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>libreevent - free and open source event management solution | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="libreevent, event management, ticketing, seat plan editor, free and open source" />
|
||||
<meta name="description"
|
||||
content="libreevent is a free and open source event management solution that enables you to sell tickets for your next event, including a seat plan and many more settings." />
|
||||
<meta name="og:title" content="libreevent - free and open source event management solution" />
|
||||
<meta name="og:description"
|
||||
content="libreevent is a free and open source event management solution that enables you to sell tickets for your next event, including a seat plan and many more settings." />
|
||||
<meta name="og:image" content="https://static.janishutz.com/projects/libreevent-title.jpg" />
|
||||
<meta name="og:type" content="website" />
|
||||
<meta name="og:url" content="https://janishutz.com/projects/libreevent" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta property="twitter:card" content="summary_large_image">
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
|
||||
<style>
|
||||
#yt-embed {
|
||||
width: 90vw;
|
||||
height: 50vw;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 999px) {
|
||||
#yt-embed {
|
||||
width: 70vw;
|
||||
height: 40vw;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav></nav>
|
||||
|
||||
<div class="slider">
|
||||
<div class="slider-container">
|
||||
<div class="slider-element current"
|
||||
style="background-image: url( 'https://store-cdn.janishutz.com/assets/libreevent/libreevent-title.jpg' );">
|
||||
<a href="https://libreevent.janishutz.com" class="button offset-button">Project Website</a>
|
||||
</div>
|
||||
<div class="slider-element"
|
||||
style="background-image: url( 'https://store-cdn.janishutz.com/assets/libreevent/libreevent-admin-eventsettings.jpg' );">
|
||||
<div class="slider-info">
|
||||
<h2>Create Events with Ease</h2>
|
||||
<p>Using libreǝvent's powerful admin panel</p>
|
||||
<a href="https://libreevent.janishutz.com/docs/admin-panel/" class="button">Docs</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slider-element"
|
||||
style="background-image: url( 'https://store-cdn.janishutz.com/assets/libreevent/libreevent-admin-seatplan-editor.jpg' );">
|
||||
<div class="slider-info">
|
||||
<h2>Create seat plans</h2>
|
||||
<p>libreǝvent's seat plan editor is designed to make this as easy as possible</p>
|
||||
<a href="https://libreevent.janishutz.com/docs/admin-panel/seatplan-editor" class="button">Docs</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slider-element"
|
||||
style="background-image: url( 'https://store-cdn.janishutz.com/assets/libreevent/libreevent-all-events.jpg' );">
|
||||
<div class="slider-info">
|
||||
<h2>Order Tickets</h2>
|
||||
<p>on this page and give users all important data</p>
|
||||
<a href="https://libreevent.janishutz.com/download" class="button">Install today</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slider-element"
|
||||
style="background-image: url( 'https://store-cdn.janishutz.com/assets/libreevent/libreevent-login.jpg' );">
|
||||
<div class="slider-info">
|
||||
<h2>User Accounts</h2>
|
||||
<p>Your customers can do everything in self-service!</p>
|
||||
<a href="https://libreevent.janishutz.com/download" class="button">Install today</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slider-element"
|
||||
style="background-image: url( 'https://store-cdn.janishutz.com/assets/libreevent/libreevent-ticket-sel.jpg' );">
|
||||
<div class="slider-info">
|
||||
<h2>Open Source Project</h2>
|
||||
<p>Free Software, developed by Janis Hutz & the community</p>
|
||||
<a href="https://github.com/janishutz/libreevent" class="button">GitHub</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<span class="slider-controls slider-control-left material-symbols-outlined"
|
||||
onclick="sliderControl( 'previous' )">arrow_back</span>
|
||||
<span class="slider-controls slider-control-right material-symbols-outlined"
|
||||
onclick="sliderControl( 'next' )">arrow_forward
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<!-- <img src="https://libreevent.janishutz.com/assets/logo.png" alt="libreevent logo" class="project-logo"> -->
|
||||
<h1>libreǝvent</h1>
|
||||
|
||||
<a href="/projects" class="back-button">← All projects</a>
|
||||
<p>Free & Open Source Event Management & Ticketing Solution</p>
|
||||
|
||||
<hr class="pullquote-lines">
|
||||
<h3 class="content-title-small">Why use a commercial event management solution, if you can host a more flexible
|
||||
one yourself?</h3>
|
||||
<hr class="pullquote-lines">
|
||||
</div>
|
||||
|
||||
<div id="yt-embed"></div>
|
||||
|
||||
<div class="content">
|
||||
<h2>Project Website</h2>
|
||||
<p>libreevent has its own project website, where you can learn more about the project, find documentation and a
|
||||
guide on how to install it.</p>
|
||||
<a href="https://libreevent.janishutz.com" target="_blank" class="button">Project Website</a>
|
||||
</div>
|
||||
|
||||
|
||||
<footer></footer>
|
||||
|
||||
|
||||
<script src="https://static.janishutz.com/js/yt-embed.js"></script>
|
||||
<script src="https://static.janishutz.com/js/slider.js"></script>
|
||||
<script>
|
||||
YTEmbed('yt-embed', 'UYMa-xTyZYo');
|
||||
activateSlider(7500);
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,150 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/side-by-side.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>MusicPlayer - Fully browser based with built-in remote playlist display with animations | janishutz.com
|
||||
</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="browser-based, music player, remote display" />
|
||||
<meta name="description"
|
||||
content="Want to show off what the currently playing song is for your next party? MusicPlayer has a lot of party-oriented features built in!" />
|
||||
<meta name="og:title"
|
||||
content="MusicPlayer - Fully browser based with built-in remote playlist display with animations" />
|
||||
<meta name="og:description"
|
||||
content="Want to show off what the currently playing song is for your next party? MusicPlayer has a lot of party-oriented features built in!" />
|
||||
<meta name="og:image" content="https://static.janishutz.com/projects/musicplayer-title.jpg" />
|
||||
<meta name="og:type" content="website" />
|
||||
<meta name="og:url" content="https://janishutz.com/projects/musicplayer" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta property="twitter:card" content="summary_large_image">
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav></nav>
|
||||
|
||||
<div class="slider">
|
||||
<div class="slider-container">
|
||||
<div class="slider-element current"
|
||||
style="background-image: url( 'https://store-cdn.janishutz.com/assets/musicplayer/library-local.jpg' );">
|
||||
<div class="slider-info">
|
||||
<h2>Sources</h2>
|
||||
<p>Play your local music or use Apple Music (Apple Music Subscription required)</p>
|
||||
<a href="https://music.janishutz.com/" class="button">Website</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slider-element"
|
||||
style="background-image: url( 'https://store-cdn.janishutz.com/assets/musicplayer/fancy.jpg' );">
|
||||
<div class="slider-info">
|
||||
<h2>Shared Playlists</h2>
|
||||
<p>Seamlessly sync and display what you are currently playing on other devices. Perfect for your
|
||||
next party!</p>
|
||||
<a href="https://music.janishutz.com/get" class="button">Get it today</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slider-element"
|
||||
style="background-image: url( 'https://store-cdn.janishutz.com/assets/musicplayer/player.jpg' );">
|
||||
<div class="slider-info">
|
||||
<h2>Browser based</h2>
|
||||
<p>No need to install anything. Runs on any platform</p>
|
||||
<a href="https://music.janishutz.com/get" class="button">Get it today</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slider-element"
|
||||
style="background-image: url( 'https://static.janishutz.com/assets/musicplayer/main.jpg' );">
|
||||
<div class="slider-info">
|
||||
<h2>Hosted for you</h2>
|
||||
<p>Need the convenience of an already set up version?</p>
|
||||
<a href="https://music.janishutz.com/" class="button">Website</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slider-element"
|
||||
style="background-image: url( 'https://static.janishutz.com/assets/projects/musicplayer-title.jpg' );">
|
||||
<div class="slider-info">
|
||||
<h2>Open Source</h2>
|
||||
<p>Developed by Janis Hutz & the community</p>
|
||||
<a href="https://github.com/janishutz/MusicPlayerV2" class="button">GitHub</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="slider-element"
|
||||
style="background-image: url( 'https://store-cdn.janishutz.com/assets/musicplayer/library-dark.jpg' );">
|
||||
<div class="slider-info">
|
||||
<h2>Self-Hostable</h2>
|
||||
<p>Host it yourself. You need to be member of the Apple Developer Program for access to the Apple
|
||||
Music API</p>
|
||||
<a href="https://github.com/janishutz/MusicPlayerV2/wiki/Installation" class="button">Docs</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<span class="slider-controls slider-control-left material-symbols-outlined"
|
||||
onclick="sliderControl( 'previous' )">arrow_back</span>
|
||||
<span class="slider-controls slider-control-right material-symbols-outlined"
|
||||
onclick="sliderControl( 'next' )">arrow_forward
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<img src="https://github.com/janishutz/MusicPlayerV2/raw/master/assets/logo.png" alt="MusicPlayer logo"
|
||||
class="project-logo">
|
||||
<h1>Music­Player</h1>
|
||||
|
||||
<a href="/projects" class="back-button">← All projects</a>
|
||||
<p>Play music fully in the browser and remotely share what you are currently playing. Perfect for your next
|
||||
party!</p>
|
||||
<a href="https://music.janishutz.com" target="_blank" class="button">Get it today</a>
|
||||
|
||||
<hr class="divider">
|
||||
|
||||
<h2>Features</h2>
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<h3>Remote Playback Status</h3>
|
||||
<p>Remotely display what is currently playing via a link you can share. There is an additional link that
|
||||
can be used to display the same information, but with animations that sync to the music (Microphone
|
||||
access required on the target device and animations will sync up to the sound audible on that
|
||||
device)</p>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<h3>Two Sources</h3>
|
||||
<p>You can choose between two sources for audio: Your local disk or Apple Music and you can mix the two
|
||||
in a single playlist. Cover Art and song information is fetched from the Apple Music API
|
||||
automatically if you are using the hosted version or have configured the Apple Music API
|
||||
authentication tokens</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<h3>Fully Featured Player</h3>
|
||||
<p>All the features you'd expect from a Music Player are present in MusicPlayer. Shuffle, Repeat,
|
||||
Playlist support, adding more songs to queue, just to name a few, are all present.</p>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<h3>Browser based</h3>
|
||||
<p>There is no need to install anything. MusicPlayer runs fully in your browser and is thus cross
|
||||
platform. You could even run it off of your phone, if you wish!</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr class="divider">
|
||||
|
||||
<a href="https://music.janishutz.com" target="_blank" class="button" style="margin-top: 50px;">Get it today</a>
|
||||
</div>
|
||||
|
||||
|
||||
<footer></footer>
|
||||
|
||||
|
||||
<script src="https://static.janishutz.com/js/slider.js"></script>
|
||||
<script>
|
||||
activateSlider(7500);
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,76 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/side-by-side.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>QR & Barcode Insight - Be safer when scanning QR codes | janishutz.com
|
||||
</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="browser-based, music player, remote display" />
|
||||
<meta name="description"
|
||||
content="Be safer when scanning QR codes, as the entire link will be shown to you when scanning. The app also provides the ability to scan from your photo library" />
|
||||
<meta name="og:title" content="QR & Barcode Insight - Be safer when scanning QR codes | janishutz.com" />
|
||||
<meta name="og:description"
|
||||
content="Be safer when scanning QR codes, as the entire link will be shown to you when scanning. The app also provides the ability to scan from your photo library" />
|
||||
<meta name="og:image" content="https://static.janishutz.com/projects/qrscanner-title.jpg" />
|
||||
<meta name="og:type" content="website" />
|
||||
<meta name="og:url" content="https://janishutz.com/projects/qrscanner" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta property="twitter:card" content="summary_large_image">
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav></nav>
|
||||
|
||||
<div class="content">
|
||||
<img src="https://static.janishutz.com/assets/logos/qrscanner.jpg" alt="MusicPlayer logo" class="project-logo">
|
||||
<h1>QR & Barcode Insight</h1>
|
||||
|
||||
<a href="/projects" class="back-button">← All projects</a>
|
||||
<p>QR codes have become ever more present and they can pose significant risk. QR & Barcode Insight shows the
|
||||
full, unfiltered link to you so you can better judge if the link you are trying to open is safe. And with
|
||||
the Safe Scanning In-App-Purchase, you can be even safer, as your link is automatically looked up in
|
||||
Google's Safe Search database.</p>
|
||||
<a href="https://apps.apple.com/us/app/qr-barcode-insight/id6443884642" target="_blank" class="button">Get it today</a>
|
||||
|
||||
<hr class="divider">
|
||||
|
||||
<h2>Features</h2>
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<h3>Scan from your library</h3>
|
||||
<p>Ever had to scan a QR Code displayed on your phone screen? Annoying, right? Simply take a screenshot, open QR & Barcode Insight and select the screenshot from your library to scan it.</p>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<h3>SafeScanning</h3>
|
||||
<p>For a small one-off fee of just CHF 1.00, you can purchase access to SafeScanning, providing you with added security - and you support the development of my software</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<h3>Scan Barcodes</h3>
|
||||
<p>You can also scan barcodes, for the times, where typing them out is just too annoying.</p>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<h3>Various code formats</h3>
|
||||
<p>QR & Barcode Insight supports various code formats, including QR, Mini-QR, EAN-8, EAN-13 and many more.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr class="divider">
|
||||
|
||||
<a href="https://apps.apple.com/us/app/qr-barcode-insight/id6443884642" target="_blank" class="button" style="margin-top: 50px;">Get it today</a>
|
||||
</div>
|
||||
|
||||
|
||||
<footer></footer>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,132 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/side-by-side.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Storage Manager - get organized | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="storagemanager, management, home use, business use" />
|
||||
<meta name="description" content="The perfect utility to keep track of your home or business storage" />
|
||||
<meta name="og:title" content="StorageManager - get organized | janishutz.com" />
|
||||
<meta name="og:image" content="https://static.janishutz.com/projects/storagemanager-title.jpg" />
|
||||
<meta name="og:type" content="website" />
|
||||
<meta name="og:url" content="https://janishutz.com/projects/storagemanager" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta property="twitter:card" content="summary_large_image">
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
|
||||
<style>
|
||||
#yt-embed {
|
||||
width: 70vw;
|
||||
height: 40vw;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav></nav>
|
||||
|
||||
<div class="content">
|
||||
<img src="https://static.janishutz.com/assets/logos/storagemanager.jpg" alt="storage manager logo"
|
||||
class="project-logo">
|
||||
<h1>Storage Manager</h1>
|
||||
|
||||
<p>Managing storage can be a challenging task, especially when the volume of items stored becomes large. If
|
||||
products in that storage can go bad, you are very likely to produce quite a bit of waste. StorageManager is
|
||||
an iOS app that can send you notifications such that you do not forget about products that are about to
|
||||
expire.</p>
|
||||
|
||||
<a href="https://apps.apple.com/us/app/storagemanager/id6443832297" target="_blank" class="button">Get it today</a>
|
||||
|
||||
<hr class="divider">
|
||||
|
||||
<h2>Features</h2>
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<h3>Notifications</h3>
|
||||
<p>StorageManager can send you notifications when a product is about to expire so you don't forget about
|
||||
the product. Notifications time can be customised in settings.</p>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<h3>Adding products</h3>
|
||||
<p>You can add products by simply scanning the product's barcode and adding some data on the product.
|
||||
The app will remember the product such that the next time you scan it, it will autofill all relevant
|
||||
data.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<h3>Editing products</h3>
|
||||
<p>Products can be edited straight from the products details page. You can edit every aspect of the
|
||||
product data to the extent that you can make it an entirely different kind.</p>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<h3>Removing products</h3>
|
||||
<p>You can remove products by simply swiping to delete. Alternatively you can delete products by hitting
|
||||
the delete icon in the details page or even better, by scanning the product's barcode.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<h3>Organisation</h3>
|
||||
<p>StorageManager allows you to create product categories and one storage location. If you purchase the
|
||||
full version, you can add an infinite amount of storage locations. The In-App-Purchase is sharable
|
||||
with up to five people in your family.</p>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<h3>Filtering & sorting</h3>
|
||||
<p>You can sort and filter all the data. Many different sorting options and filters are available, as
|
||||
well as a powerful search function, that finds all your products within milliseconds.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<h3>iCloud-Sync</h3>
|
||||
<p>StorageManager has iCloud-Sync built in and enabled for ALL users. Simply allow iCloud access for
|
||||
StorageManager and you are off to the races. Your storage data syncs magically between all your
|
||||
Apple-Devices.</p>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<h3>Free <sup>*</sup></h3>
|
||||
<p>You can use StorageManager for free, with one small exception being adding an unlimited amount of
|
||||
storage locations. For this you will need to make an In-App-Purchase. Please check the AppStore for
|
||||
the exact pricing as this is dependent on your country.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="side-by-side">
|
||||
<div class="side-by-side-item left">
|
||||
<h3>Easy setup</h3>
|
||||
<p>StorageManager features an easy to use, guided setup such that you can be up and running within just
|
||||
one or two minutes of downloading the app.</p>
|
||||
</div>
|
||||
<div class="side-by-side-item right">
|
||||
<h3>Display settings</h3>
|
||||
<p>Choose what is displayed on the main page of the app with simple toggles in the app's settings page.
|
||||
This allows you to see everything you want at a glance or have more items on the screen at once.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr class="divider">
|
||||
|
||||
<a href="https://apps.apple.com/us/app/storagemanager/id6443832297" target="_blank" class="button" style="margin-top: 50px;">Get it today</a>
|
||||
</div>
|
||||
|
||||
|
||||
<footer></footer>
|
||||
|
||||
|
||||
<script src="https://static.janishutz.com/js/yt-embed.js"></script>
|
||||
<script src="https://static.janishutz.com/js/slider.js"></script>
|
||||
<script>
|
||||
activateSlider(7500);
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,39 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Services | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="" />
|
||||
<meta name="description" content="Discover services offered by janishutz.com" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
<style>
|
||||
.service-icon {
|
||||
font-size: 10rem;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav></nav>
|
||||
<div class="content">
|
||||
<span class="material-symbols-outlined service-icon">build</span>
|
||||
<h1 class="title">Services</h1>
|
||||
|
||||
<p class="text-center">Discover Services</p>
|
||||
|
||||
<div class="inline-elements">
|
||||
<a class="button" href="https://store.janishutz.com">Software Store</a>
|
||||
<a class="button" href="https://account.janishutz.com">Account</a>
|
||||
<a class="button" href="https://development.janishutz.com">Custom Websites</a>
|
||||
</div>
|
||||
</div>
|
||||
<footer></footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,40 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Support | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
<style>
|
||||
.support-icon {
|
||||
font-size: 10rem;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav></nav>
|
||||
<div class="content">
|
||||
<span class="material-symbols-outlined support-icon">support_agent</span>
|
||||
<h1 class="title">Support</h1>
|
||||
|
||||
<p class="text-center;">Ran into issues with Software? Have suggestions for features?</p>
|
||||
|
||||
<div class="inline-elements">
|
||||
<a class="button" href="https://support.janishutz.com/index.php?a=add">Get support</a>
|
||||
<a class="button" href="/support/support-status">Support Status</a>
|
||||
<a class="button" href="https://support.janishutz.com/index.php?a=add&category=6">Feature request</a>
|
||||
<a class="button" href="https://support.janishutz.com/knowledgebase.php">Knowledgebase</a>
|
||||
<a class="button" href="/support/old">Old websites</a>
|
||||
</div>
|
||||
</div>
|
||||
<footer></footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,44 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Old versions | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="" />
|
||||
<meta name="description" content="View old versions of the website" />
|
||||
<meta name="og:title" content="Old versions | janishutz.com" />
|
||||
<meta name="og:description" content="View old versions of the website" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
<style>
|
||||
.support-icon {
|
||||
font-size: 10rem;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav></nav>
|
||||
<div class="content">
|
||||
<span class="material-symbols-outlined support-icon">archive</span>
|
||||
<h1 class="title">Old Websites</h1>
|
||||
|
||||
<p class="text-center;">View old versions of this website</p>
|
||||
|
||||
<div class="inline-elements">
|
||||
<a class="button" href="https://janishutz.github.io" target="_blank">Original Version</a>
|
||||
<a class="button" href="https://v1.janishutz.com" target="_blank">Version 1.0</a>
|
||||
<a class="button" href="https://v2.janishutz.com" target="_blank">Version 2.0</a>
|
||||
</div>
|
||||
</div>
|
||||
<footer></footer>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,179 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Support Status | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="" />
|
||||
<meta name="description" content="Check which projects are still supported and until when they are" />
|
||||
<meta name="og:title" content="Support Status | janishutz.com" />
|
||||
<meta name="og:description" content="Check which projects are still supported and until when" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
<style>
|
||||
.top-bar {
|
||||
font-size: 1.1rem;
|
||||
font-weight: bold;
|
||||
min-width: max-content;
|
||||
}
|
||||
|
||||
.status {
|
||||
padding-right: 15px;
|
||||
min-width: max-content;
|
||||
}
|
||||
|
||||
.name {
|
||||
padding-right: 15px;
|
||||
min-width: max-content;
|
||||
}
|
||||
|
||||
.eol {
|
||||
padding-right: 15px;
|
||||
min-width: max-content;
|
||||
}
|
||||
|
||||
.info {
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
font-size: smaller;
|
||||
color: var( --color-text-accent );
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.support-status {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.support-status-wrapper {
|
||||
max-width: 100%;
|
||||
overflow: scroll;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav></nav>
|
||||
<div class="content">
|
||||
<h1 class="title">Support Status</h1>
|
||||
|
||||
<a href="/support" class="back">← Back to support</a>
|
||||
|
||||
<p class="text-center;">View the support status of all my projects, roadmaps and expected End Of Life dates</p>
|
||||
|
||||
<div class="support-status-wrapper">
|
||||
<table class="support-status">
|
||||
<tr class="top-bar">
|
||||
<td class="name">Software</td>
|
||||
<td class="status">Status</td>
|
||||
<td class="eol">Expected EOL</td>
|
||||
<td>Roadmap</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">ConductorCalc</td>
|
||||
<td class="status" title="This software has not been completed yet">In Development</td>
|
||||
<td class="eol">-</td>
|
||||
<td><a href="https://blog.janishutz.com/posts/2024/06/update-on-projects/#conductorcalc" target="_blank">Roadmap</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">Dotfiles, Configs</td>
|
||||
<td class="status">Supported</td>
|
||||
<td class="eol">-</td>
|
||||
<td>-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">Website</td>
|
||||
<td class="status">Supported</td>
|
||||
<td class="eol">-</td>
|
||||
<td>-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">Store</td>
|
||||
<td class="status">Supported</td>
|
||||
<td class="eol">-</td>
|
||||
<td>-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">MusicPlayer V3</td>
|
||||
<td class="status">Supported</td>
|
||||
<td class="eol">-</td>
|
||||
<td><a href="https://blog.janishutz.com/posts/2024/06/update-on-projects/#musicplayer" target="_blank">Roadmap</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">Account Services (previously ID)</td>
|
||||
<td class="status">Supported</td>
|
||||
<td class="eol">-</td>
|
||||
<td>-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">StorageManager</td>
|
||||
<td class="status">Supported <sup>1</sup></td>
|
||||
<td class="eol">-</td>
|
||||
<td>-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">QR & Barcode Insight</td>
|
||||
<td class="status">Supported</td>
|
||||
<td class="eol">-</td>
|
||||
<td>-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">libreevent</td>
|
||||
<td class="status">Supported</td>
|
||||
<td class="eol">-</td>
|
||||
<td><a href="https://github.com/janishutz/libreevent/issues/12" target="_blank">Roadmap</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">BiogasControllerApp</td>
|
||||
<td class="status">Supported</td>
|
||||
<td class="eol">2026-07-01<sup>2</sup></td>
|
||||
<td>-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">arch-dev-vm</td>
|
||||
<td class="status">Supported</td>
|
||||
<td class="eol">-</td>
|
||||
<td>-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">Colorthief</td>
|
||||
<td class="status">Supported</td>
|
||||
<td class="eol">-</td>
|
||||
<td>-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">smuL (SimpleMediaUpscalerLite)</td>
|
||||
<td class="status">Unsupported</td>
|
||||
<td class="eol">2025-06-16</td>
|
||||
<td>- (EOL)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">MusicPlayer V1</td>
|
||||
<td class="status">Unsupported</td>
|
||||
<td class="eol">2023-09-01</td>
|
||||
<td>- (EOL)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">MusicPlayer V2</td>
|
||||
<td class="status">Unsupported</td>
|
||||
<td class="eol">2024-07-01</td>
|
||||
<td>- (EOL)</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<p class="info">All pieces of software without an expected EOL date do not have one, because it simply hasn't been decided yet. There might be completely rewritten versions of them taking their place in the future or an EOL date may be added</p>
|
||||
<p class="info">Once a software has reached EOL, it doesn't mean it will stop working, but rather that it will not receive any more updates</p>
|
||||
<p class="info"><sup>1</sup>There are plans for a big update, coming likely by or in Q3 2026</p>
|
||||
<p class="info"><sup>2</sup>The stated EOL date is unlikely to be accurate, since the app has been completely rewritten in June 2025</p>
|
||||
|
||||
<p style="margin-top: 50px;">Looking for the support page?</p>
|
||||
<a href="https://support.janishutz.com" class="button" target="_blank">Support</a>
|
||||
</div>
|
||||
<footer></footer>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,2 +0,0 @@
|
||||
ErrorDocument 503 /unavailable.html
|
||||
ErrorDocument 500 /errors.html
|
||||
@@ -1,88 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Error | janishutz.com</title>
|
||||
<style>
|
||||
@import url( 'https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap' );
|
||||
@import url( 'https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200' );
|
||||
|
||||
body {
|
||||
height: 100vh;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-family: 'Manrope', sans-serif;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
|
||||
@media ( prefers-color-scheme: dark ) {
|
||||
body {
|
||||
background-color: rgb(20, 20, 20);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.error {
|
||||
color: white;
|
||||
}
|
||||
}
|
||||
|
||||
.material-symbols-outlined {
|
||||
font-variation-settings:
|
||||
'FILL' 0,
|
||||
'wght' 400,
|
||||
'GRAD' 0,
|
||||
'opsz' 48
|
||||
}
|
||||
|
||||
.content {
|
||||
width: 80%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
min-height: 80vh;
|
||||
}
|
||||
|
||||
.error {
|
||||
font-size: 5em;
|
||||
}
|
||||
|
||||
.logo {
|
||||
position: fixed;
|
||||
top: 5px;
|
||||
left: 5px;
|
||||
width: 15vh;
|
||||
height: 15vh;
|
||||
}
|
||||
|
||||
.button {
|
||||
padding: 20px;
|
||||
background-color: rgb(21, 43, 92);
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
transition: all 0.5s;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
border-radius: 5px;
|
||||
background-color: rgb(2, 10, 27);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="content">
|
||||
<img src="https://static.janishutz.com/logo.jpg" alt="logo" class="logo">
|
||||
<span class="material-symbols-outlined error">error</span>
|
||||
<h1>Critical Error</h1>
|
||||
<p>A critical error occurred whentrying to connect you. If the issue persists, please contact me</p>
|
||||
<a href="https://support.janishutz.com/index.php?a=add?category=11" class="button">Contact Support</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,57 +0,0 @@
|
||||
@import url( 'https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap' );
|
||||
@import url( 'https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200' );
|
||||
|
||||
body {
|
||||
height: 100vh;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-family: 'Manrope', sans-serif;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.material-symbols-outlined {
|
||||
font-variation-settings:
|
||||
'FILL' 0,
|
||||
'wght' 400,
|
||||
'GRAD' 0,
|
||||
'opsz' 48
|
||||
}
|
||||
|
||||
.content {
|
||||
width: 80%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
min-height: 80vh;
|
||||
}
|
||||
|
||||
.error {
|
||||
font-size: 5em;
|
||||
}
|
||||
|
||||
.logo {
|
||||
position: fixed;
|
||||
top: 5px;
|
||||
left: 5px;
|
||||
width: 15vh;
|
||||
height: 15vh;
|
||||
}
|
||||
|
||||
.button {
|
||||
padding: 20px;
|
||||
background-color: rgb(21, 43, 92);
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
transition: all 0.5s;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
border-radius: 5px;
|
||||
background-color: rgb(2, 10, 27);
|
||||
}
|
||||
@@ -1,87 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Service unavailable | janishutz.com</title>
|
||||
<style>
|
||||
@import url( 'https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap' );
|
||||
@import url( 'https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200' );
|
||||
|
||||
body {
|
||||
height: 100vh;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-family: 'Manrope', sans-serif;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
@media ( prefers-color-scheme: dark ) {
|
||||
body {
|
||||
background-color: rgb(20, 20, 20);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.error {
|
||||
color: white;
|
||||
}
|
||||
}
|
||||
|
||||
.material-symbols-outlined {
|
||||
font-variation-settings:
|
||||
'FILL' 0,
|
||||
'wght' 400,
|
||||
'GRAD' 0,
|
||||
'opsz' 48
|
||||
}
|
||||
|
||||
.content {
|
||||
width: 80%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
min-height: 80vh;
|
||||
}
|
||||
|
||||
.error {
|
||||
font-size: 5em;
|
||||
}
|
||||
|
||||
.logo {
|
||||
position: fixed;
|
||||
top: 5px;
|
||||
left: 5px;
|
||||
width: 15vh;
|
||||
height: 15vh;
|
||||
}
|
||||
|
||||
.button {
|
||||
padding: 20px;
|
||||
background-color: rgb(21, 43, 92);
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
border-radius: 10px;
|
||||
transition: all 0.5s;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
border-radius: 5px;
|
||||
background-color: rgb(2, 10, 27);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="content">
|
||||
<img src="https://static.janishutz.com/logo.jpg" alt="logo" class="logo">
|
||||
<span class="material-symbols-outlined error">error</span>
|
||||
<h1>Service unavailable</h1>
|
||||
<p>The service you are trying to reach is currently unavailable. If the issue persists, please contact me</p>
|
||||
<a href="https://support.janishutz.com/index.php?a=add?category=11" class="button">Contact Support</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
33
support.html
Executable file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Support - janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/css/mainstyle.css">
|
||||
<script src="/js/jquery.js"></script>
|
||||
<script src="/js/basicanimations.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="ContentToInclude"></div>
|
||||
<div class="mainstyle">
|
||||
<div class="title-container">
|
||||
<h1 class="title">Support</h1>
|
||||
</div>
|
||||
<div class="content">
|
||||
<p>Have you run into a problem with one of my apps? Please contact me by clicking the button below! I am here to help you out.</p>
|
||||
<br>
|
||||
<h2>Troubleshooting</h2>
|
||||
<p>You may try to fix the problem yourself, by trying these steps here:</p>
|
||||
<ul style="width: 100%;">
|
||||
<li>Force close the app (open App switcher and swipe up the app) and reopening it / Close the program and reopen it</li>
|
||||
<li>Check for an update in the AppStore / on GitHub</li>
|
||||
</ul>
|
||||
<p>If nothing of the above helps or you'd like to give feedback, please click the button below! If you found an issue with my FOSS apps, please click <a href="https://github.com/simplePCBuilding" style="color: black">here</a>, search for the respective repository and create a new issue. Alternatively you may click the button below</p>
|
||||
</div>
|
||||
<h3>Before you contact me: Have you tried the troubleshooting steps above?</h3>
|
||||
<br><br>
|
||||
<a class="linkbutton" href='mailto:dev.janishutz@protonmail.com'>Contact me</a>
|
||||
</div>
|
||||
<div id="Footer"></div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,47 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Page Title | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="" />
|
||||
<meta name="description" content="" />
|
||||
<meta name="og:title" content="" />
|
||||
<meta name="og:description" content="" />
|
||||
<meta name="og:image" content="https://static.janishutz.com/seo/legal-card.jpg" />
|
||||
<meta name="og:type" content="website" />
|
||||
<meta name="og:url" content="https://janishutz.com/legal" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta property="twitter:card" content="summary_large_image">
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
<style>
|
||||
.support-icon {
|
||||
font-size: 10rem;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav></nav>
|
||||
<div class="content">
|
||||
<span class="material-symbols-outlined support-icon">support_agent</span>
|
||||
<h1 class="title">Support</h1>
|
||||
|
||||
<p class="text-center;">Ran into issues with Software? Have suggestions for features?</p>
|
||||
|
||||
<div class="inline-elements">
|
||||
<a class="button" href="https://support.janishutz.com/index.php?a=add">Get support</a>
|
||||
<a class="button" href="/support/support-status">Support Status</a>
|
||||
<a class="button" href="https://support.janishutz.com/index.php?a=add&category=6">Feature request</a>
|
||||
<a class="button" href="https://support.janishutz.com/knowledgebase.php">Knowledgebase</a>
|
||||
<a class="button" href="/support/old">Old websites</a>
|
||||
</div>
|
||||
</div>
|
||||
<footer></footer>
|
||||
</body>
|
||||
</html>
|
||||