commit 595ef589dd431f96fc50fc6e9255aa9da7010cbf Author: Zed A. Shaw Date: Wed Apr 12 20:17:49 2023 -0400 Commit after Episode 2 of the show. First cuts of the landing page, problems list page, and starting off on the problem show. diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..b2af617 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,277 @@ +{ + "env": { + "browser": true, + "es6": true, + "node": true + }, + "plugins": ["svelte3"], + "overrides": [ + {"files": "*.svelte", "processor": "svelte3/svelte3"} + ], + "extends": "eslint:recommended", + "parserOptions": { + "ecmaVersion": 2021, + "sourceType": "module" + }, + "rules": { + "accessor-pairs": "error", + "array-bracket-newline": "off", + "array-bracket-spacing": [ "warn", "never" ], + "array-callback-return": "error", + "array-element-newline": "off", + "arrow-body-style": "off", + "arrow-parens": "off", + "arrow-spacing": [ + "error", + { + "after": true, + "before": true + } + ], + "block-scoped-var": "error", + "block-spacing": "error", + "brace-style": [ + "error", + "1tbs" + ], + "callback-return": "off", + "camelcase": "off", + "capitalized-comments": "off", + "class-methods-use-this": "off", + "comma-dangle": "off", + "comma-spacing": [ + "warn", + { + "after": true, + "before": false + } + ], + "comma-style": [ + "error", + "last" + ], + "complexity": "error", + "computed-property-spacing": [ + "error", + "never" + ], + "consistent-return": "error", + "consistent-this": "error", + "curly": "off", + "default-case": "error", + "dot-location": "off", + "dot-notation": "off", + "eol-last": "error", + "eqeqeq": "off", + "func-call-spacing": "error", + "func-name-matching": "error", + "func-names": "error", + "func-style": [ + "error", + "expression" + ], + "function-paren-newline": "off", + "generator-star-spacing": "error", + "global-require": "off", + "guard-for-in": "warn", + "handle-callback-err": "error", + "id-blacklist": "error", + "id-length": "off", + "id-match": "error", + "implicit-arrow-linebreak": [ + "error", + "beside" + ], + "indent": "off", + "indent-legacy": "off", + "init-declarations": "warn", + "jsx-quotes": "error", + "key-spacing": "warn", + "keyword-spacing": "off", + "line-comment-position": "off", + "linebreak-style": [ + "error", + "unix" + ], + "lines-around-comment": "off", + "lines-around-directive": "error", + "lines-between-class-members": "error", + "max-classes-per-file": "off", + "max-depth": "error", + "max-len": "off", + "max-lines": "off", + "max-lines-per-function": "off", + "max-nested-callbacks": "error", + "max-params": "off", + "max-statements": "off", + "max-statements-per-line": "error", + "multiline-comment-style": "off", + "new-cap": ["off"], + "new-parens": "error", + "newline-after-var": "off", + "newline-before-return": "off", + "newline-per-chained-call": "off", + "no-alert": "error", + "no-array-constructor": "error", + "no-async-promise-executor": "error", + "no-await-in-loop": "off", + "no-bitwise": "error", + "no-buffer-constructor": "error", + "no-caller": "error", + "no-catch-shadow": "error", + "no-confusing-arrow": "error", + "no-console": "warn", + "no-continue": "error", + "no-div-regex": "error", + "no-duplicate-imports": "error", + "no-else-return": "off", + "no-empty-function": "off", + "no-eq-null": "off", + "no-eval": "error", + "no-extend-native": "error", + "no-extra-bind": "error", + "no-extra-label": "error", + "no-extra-parens": "off", + "no-floating-decimal": "error", + "no-implicit-coercion": "error", + "no-implicit-globals": "error", + "no-implied-eval": "error", + "no-inline-comments": "off", + "no-invalid-this": "error", + "no-iterator": "error", + "no-label-var": "error", + "no-labels": "error", + "no-lone-blocks": "error", + "no-lonely-if": "off", + "no-loop-func": "error", + "no-magic-numbers": "off", + "no-misleading-character-class": "error", + "no-mixed-operators": "error", + "no-mixed-requires": "error", + "no-multi-assign": "error", + "no-multi-spaces": "off", + "no-multi-str": "error", + "no-multiple-empty-lines": "warn", + "no-native-reassign": "error", + "no-negated-condition": "off", + "no-negated-in-lhs": "error", + "no-nested-ternary": "error", + "no-new": "error", + "no-new-func": "error", + "no-new-object": "error", + "no-new-require": "error", + "no-new-wrappers": "error", + "no-octal-escape": "error", + "no-param-reassign": "error", + "no-path-concat": "error", + "no-plusplus": ["error", { "allowForLoopAfterthoughts": true }], + "no-process-env": "off", + "no-process-exit": "off", + "no-proto": "error", + "no-prototype-builtins": "error", + "no-restricted-globals": "error", + "no-restricted-imports": "error", + "no-restricted-modules": "error", + "no-restricted-properties": "error", + "no-restricted-syntax": "error", + "no-return-assign": "warn", + "no-return-await": "off", + "no-script-url": "error", + "no-self-compare": "error", + "no-sequences": "error", + "no-shadow": "off", + "no-shadow-restricted-names": "error", + "no-spaced-func": "error", + "no-sync": "warn", + "no-tabs": "off", + "no-template-curly-in-string": "error", + "no-ternary": "off", + "no-throw-literal": "error", + "no-trailing-spaces": "off", + "no-undef-init": "off", + "no-undefined": "off", + "no-underscore-dangle": "off", + "no-unmodified-loop-condition": "error", + "no-unneeded-ternary": "error", + "no-unused-expressions": "error", + "no-use-before-define": ["error", {"functions": true, "classes": false}], + "no-useless-call": "error", + "no-useless-computed-key": "error", + "no-useless-concat": "error", + "no-useless-constructor": "error", + "no-useless-rename": "error", + "no-useless-return": "error", + "no-var": "error", + "no-void": "error", + "no-warning-comments": "off", + "no-whitespace-before-property": "error", + "no-with": "error", + "nonblock-statement-body-position": "error", + "object-curly-newline": "off", + "object-curly-spacing": "off", + "object-shorthand": "warn", + "one-var": "off", + "one-var-declaration-per-line": "error", + "operator-assignment": "error", + "operator-linebreak": "error", + "padded-blocks": "off", + "padding-line-between-statements": "error", + "prefer-arrow-callback": "error", + "prefer-const": "off", + "prefer-destructuring": "off", + "prefer-numeric-literals": "error", + "prefer-object-spread": "error", + "prefer-promise-reject-errors": "error", + "prefer-reflect": "off", + "prefer-rest-params": "error", + "prefer-spread": "error", + "prefer-template": "error", + "quote-props": "off", + "quotes": "off", + "radix": "error", + "require-atomic-updates": "warn", + "require-await": "off", + "require-jsdoc": "off", + "require-unicode-regexp": "off", + "rest-spread-spacing": "error", + "semi": "off", + "semi-spacing": "error", + "semi-style": [ + "error", + "last" + ], + "sort-imports": "off", + "sort-keys": "off", + "sort-vars": "error", + "space-before-blocks": "error", + "space-before-function-paren": "off", + "space-in-parens": [ + "error", + "never" + ], + "space-infix-ops": "off", + "space-unary-ops": "error", + "spaced-comment": [ + "error", + "always" + ], + "strict": "error", + "switch-colon-spacing": "error", + "symbol-description": "error", + "template-curly-spacing": [ "off", "never" ], + "template-tag-spacing": "error", + "unicode-bom": [ + "error", + "never" + ], + "valid-jsdoc": "error", + "vars-on-top": "error", + "wrap-iife": "error", + "wrap-regex": "error", + "yield-star-spacing": "error", + "yoda": [ + "error", + "never" + ] + } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..725019d --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +/node_modules/ +/public/ +/rendered/build/ +/rendered/public/ + +.*.sw* +.DS_Store +*.sqlite3* +debug/ +static/thumbs +static/videos +secrets/* +coverage/ +.coverage +static/module +client/config.js +emails/config.js +media +tests/fixtures +rendered/wip +junk/ +static/images/sample_video.mp4 +static/js/webtorrent.debug.js diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d64aa11 --- /dev/null +++ b/LICENSE @@ -0,0 +1 @@ +It's Copyright. All Rights Reserved. You have no license at all other than permission to view it. diff --git a/README.md b/README.md new file mode 100644 index 0000000..5d9f5b1 --- /dev/null +++ b/README.md @@ -0,0 +1,31 @@ +# Introduction + +> Are you a better artist than a programmer? + +This is a parody of leetcode I am creating that provides designers with the same bullshit "tests" +that programmers have to go through to get a job. I'm building this website live on Twitch at +zedashaw so if you want to join in the fun, throw out ideas for ridiculous "leetcode style" tests +for designers, or heckle me, then come watch! + +# You're no Designer! + +You're right, I'm a programmer. But if you're annoyed that people with absolutely no qualifications +in testing your skills are somehow allowed to write tests that determine if you get a job then this +website has proven its point. + +# The Rules + +The rules for these tests are as follows: + +1. Every test I write for a designer has to be something I could do. If you don't know, I'm actually a +fairly capable painter that can work in many different mediums and styles. If a lowly "programmer" +can pull off these challenges but you can't, then no job for you. +2. Tests other people write have to be in the same bullshit style as leetcode tests. They should be +written by people who know next to nothing about testing designers, be fairly ambiguous, and have +next to no validity in actually confirming someone can make a design. +3. The site has to feature Comic Sans somewhere, because that'll piss off all the right people. + +# Tech Stack + +All of the code will use my Bandolier Educational Web Framework so anybody--even a designer--can +follow along and probably understand what's going on. diff --git a/admin/App.svelte b/admin/App.svelte new file mode 100644 index 0000000..5ba87ea --- /dev/null +++ b/admin/App.svelte @@ -0,0 +1,13 @@ + + + + +{#if process.env.DANGER_ADMIN === "1"} + + +{/if} diff --git a/admin/Header.svelte b/admin/Header.svelte new file mode 100644 index 0000000..289eb06 --- /dev/null +++ b/admin/Header.svelte @@ -0,0 +1,52 @@ + + +
+ +
diff --git a/admin/Layout.svelte b/admin/Layout.svelte new file mode 100644 index 0000000..482f641 --- /dev/null +++ b/admin/Layout.svelte @@ -0,0 +1,48 @@ + + +{#if authenticated || auth_optional} + {#if header} +
+ {/if} + + +
+ +
+
+ +
+
+ + {#if footer} +