mirror of
https://github.com/aurora-dot/pastel.codes.git
synced 2025-09-05 13:06:51 +01:00
Compare commits
22 Commits
63a2622e6f
...
snyk-fix-e
Author | SHA1 | Date | |
---|---|---|---|
|
5613f45582 | ||
dec522c914 | |||
b3aae82a2a | |||
140fa8fea0 | |||
eba987561e | |||
e2115e041e | |||
dbd54804e6 | |||
7f2c5975da | |||
ee4d60d07a | |||
be151ade85 | |||
8449b30401 | |||
80813d48e3 | |||
|
96d69992a0 | ||
|
138a8de86c | ||
|
7d230410f1 | ||
|
6850b3152e | ||
|
fc85964ed9 | ||
de6ab6277b | |||
61a0713ad5 | |||
f475c89e27 | |||
65c2601b61 | |||
e24c4f506a |
15
.editorconfig
Normal file
15
.editorconfig
Normal file
@@ -0,0 +1,15 @@
|
||||
# EditorConfig is awesome: https://EditorConfig.org
|
||||
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
[*]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = false
|
||||
insert_final_newline = false
|
||||
|
||||
[pug.ts]
|
||||
indent_size = 4
|
3
.eslintrc.json
Normal file
3
.eslintrc.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"extends": ["prettier"]
|
||||
}
|
38
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
38
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve
|
||||
title: ''
|
||||
labels: bug
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Describe the bug**
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
**To Reproduce**
|
||||
Steps to reproduce the behavior:
|
||||
1. Go to '...'
|
||||
2. Click on '....'
|
||||
3. Scroll down to '....'
|
||||
4. See error
|
||||
|
||||
**Expected behavior**
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
**Screenshots**
|
||||
If applicable, add screenshots to help explain your problem.
|
||||
|
||||
**Desktop (please complete the following information):**
|
||||
- OS: [e.g. iOS]
|
||||
- Browser [e.g. chrome, safari]
|
||||
- Version [e.g. 22]
|
||||
|
||||
**Smartphone (please complete the following information):**
|
||||
- Device: [e.g. iPhone6]
|
||||
- OS: [e.g. iOS8.1]
|
||||
- Browser [e.g. stock browser, safari]
|
||||
- Version [e.g. 22]
|
||||
|
||||
**Additional context**
|
||||
Add any other context about the problem here.
|
20
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
20
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
name: Feature request
|
||||
about: Suggest an idea for this project
|
||||
title: ''
|
||||
labels: enhancement
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Is your feature request related to a problem? Please describe.**
|
||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
|
||||
**Describe the solution you'd like**
|
||||
A clear and concise description of what you want to happen.
|
||||
|
||||
**Describe alternatives you've considered**
|
||||
A clear and concise description of any alternative solutions or features you've considered.
|
||||
|
||||
**Additional context**
|
||||
Add any other context or screenshots about the feature request here.
|
71
.github/workflows/codeql-analysis.yml
vendored
Normal file
71
.github/workflows/codeql-analysis.yml
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
# For most projects, this workflow file will not need changing; you simply need
|
||||
# to commit it to your repository.
|
||||
#
|
||||
# You may wish to alter this file to override the set of languages analyzed,
|
||||
# or to provide custom queries or build logic.
|
||||
#
|
||||
# ******** NOTE ********
|
||||
# We have attempted to detect the languages in your repository. Please check
|
||||
# the `language` matrix defined below to confirm you have the correct set of
|
||||
# supported CodeQL languages.
|
||||
#
|
||||
name: "CodeQL"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
# The branches below must be a subset of the branches above
|
||||
branches: [ master ]
|
||||
schedule:
|
||||
- cron: '38 12 * * 3'
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
name: Analyze
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
actions: read
|
||||
contents: read
|
||||
security-events: write
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
language: [ 'javascript' ]
|
||||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
|
||||
# Learn more:
|
||||
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
# Initializes the CodeQL tools for scanning.
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v1
|
||||
with:
|
||||
languages: ${{ matrix.language }}
|
||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
||||
# By default, queries listed here will override any specified in a config file.
|
||||
# Prefix the list here with "+" to use these queries and those in the config file.
|
||||
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
||||
|
||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||
# If this step fails, then you should remove it and run the build manually (see below)
|
||||
- name: Autobuild
|
||||
uses: github/codeql-action/autobuild@v1
|
||||
|
||||
# ℹ️ Command-line programs to run using the OS shell.
|
||||
# 📚 https://git.io/JvXDl
|
||||
|
||||
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
||||
# and modify them (or add more) to build your code if your project
|
||||
# uses a compiled language
|
||||
|
||||
#- run: |
|
||||
# make bootstrap
|
||||
# make release
|
||||
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v1
|
6
.gitignore
vendored
6
.gitignore
vendored
@@ -198,4 +198,8 @@ notes
|
||||
|
||||
.secrets
|
||||
|
||||
public/stylesheets/style.css
|
||||
public/stylesheets/style.css
|
||||
ngrok
|
||||
.dccache
|
||||
|
||||
.DS_store
|
1
.husky/.gitignore
vendored
Normal file
1
.husky/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
_
|
4
.husky/pre-commit
Executable file
4
.husky/pre-commit
Executable file
@@ -0,0 +1,4 @@
|
||||
#!/bin/sh
|
||||
. "$(dirname "$0")/_/husky.sh"
|
||||
|
||||
npx lint-staged
|
8
.prettierrc.json
Normal file
8
.prettierrc.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"trailingComma": "es5",
|
||||
"semi": true,
|
||||
"tabWidth": 2,
|
||||
"singleQuote": true,
|
||||
"jsxSingleQuote": true,
|
||||
"plugins": ["prettier-plugin-tailwindcss", "@prettier/plugin-pug"]
|
||||
}
|
@@ -1,11 +1,13 @@
|
||||
FROM node:10.19.0
|
||||
FROM node:21-bullseye-slim
|
||||
|
||||
ENV IS_DOCKER=true
|
||||
ENV NODE_ENV=production
|
||||
|
||||
WORKDIR /app
|
||||
COPY ["package.json", "package-lock.json*", "./"]
|
||||
RUN npm install && npm install nodemon
|
||||
RUN npm install
|
||||
RUN npm install nodemon
|
||||
COPY . .
|
||||
RUN npm run build-tailwind
|
||||
|
||||
CMD [ "npm", "start" ]
|
||||
|
@@ -1,5 +1,5 @@
|
||||
# pastel.codes
|
||||
|
||||
My portfolio website written in node.js, pug and sass
|
||||
My portfolio website written in node.js, pug and tailwind
|
||||
|
||||
Docker image: https://hub.docker.com/r/auroradot/pastel.codes
|
||||
|
75
app.js
75
app.js
@@ -4,7 +4,7 @@ var path = require('path');
|
||||
var cookieParser = require('cookie-parser');
|
||||
var mLogger = require('morgan');
|
||||
var logger = require('./config/winston');
|
||||
const helmet = require("helmet");
|
||||
const helmet = require('helmet');
|
||||
|
||||
var indexRouter = require('./routes/index');
|
||||
var aboutRouter = require('./routes/about');
|
||||
@@ -12,7 +12,8 @@ var contactRouter = require('./routes/contact');
|
||||
|
||||
var app = express();
|
||||
|
||||
if (process.env.IS_DOCKER != 'true') app.set('trust proxy', 'loopback,uniquelocal');
|
||||
if (process.env.IS_DOCKER != 'true')
|
||||
app.set('trust proxy', 'loopback,uniquelocal');
|
||||
app.disable('x-powered-by');
|
||||
|
||||
// view engine setup
|
||||
@@ -20,50 +21,72 @@ app.set('views', path.join(__dirname, 'views'));
|
||||
app.set('view engine', 'pug');
|
||||
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
app.use(mLogger("common", { "stream": logger.stream }));
|
||||
app.use(mLogger('common', { stream: logger.stream }));
|
||||
} else {
|
||||
app.use(mLogger('dev'));
|
||||
app.use(mLogger('dev'));
|
||||
}
|
||||
|
||||
app.use(helmet());
|
||||
app.use(
|
||||
helmet.contentSecurityPolicy({
|
||||
directives: {
|
||||
defaultSrc: ["'self'"],
|
||||
scriptSrc: ["'self'", "'unsafe-inline'", "'unsafe-eval'", "https://hcaptcha.com", "https://*.hcaptcha.com", "https://cdn.ravenjs.com/"],
|
||||
imgSrc: ["'self'", "https://blog.pastel.codes", "https://static.ghost.org", "https://secure.gravatar.com"],
|
||||
styleSrc: ["'self'", "'unsafe-inline'", "https://hcaptcha.com", "https://*.hcaptcha.com"],
|
||||
fontSrc: ["'self'", "data:"],
|
||||
frameSrc: ["https://hcaptcha.com", "https://*.hcaptcha.com"],
|
||||
objectSrc: ["'none'"],
|
||||
upgradeInsecureRequests: [],
|
||||
},
|
||||
})
|
||||
);
|
||||
helmet.contentSecurityPolicy({
|
||||
directives: {
|
||||
defaultSrc: ["'self'"],
|
||||
scriptSrc: [
|
||||
"'self'",
|
||||
"'unsafe-inline'",
|
||||
"'unsafe-eval'",
|
||||
'https://hcaptcha.com',
|
||||
'https://*.hcaptcha.com',
|
||||
'https://cdn.ravenjs.com/',
|
||||
'https://cdnjs.cloudflare.com/',
|
||||
'https://cdn.jsdelivr.net/',
|
||||
'https://*.cloudfront.net/',
|
||||
],
|
||||
imgSrc: [
|
||||
"'self'",
|
||||
'https://blog.pastel.codes',
|
||||
'https://static.ghost.org',
|
||||
'https://secure.gravatar.com',
|
||||
'data: ',
|
||||
],
|
||||
styleSrc: [
|
||||
"'self'",
|
||||
"'unsafe-inline'",
|
||||
'https://hcaptcha.com',
|
||||
'https://*.hcaptcha.com',
|
||||
],
|
||||
fontSrc: ["'self'", 'data:'],
|
||||
frameSrc: ['https://hcaptcha.com', 'https://*.hcaptcha.com'],
|
||||
objectSrc: ["'none'"],
|
||||
upgradeInsecureRequests: [],
|
||||
},
|
||||
})
|
||||
);
|
||||
|
||||
app.use(express.json());
|
||||
app.use(express.urlencoded({ extended: false }));
|
||||
app.use(cookieParser());
|
||||
app.use(express.static(path.join(__dirname, 'public')));
|
||||
app.use('/obsidian', express.static(path.join(__dirname, 'obsidian')));
|
||||
|
||||
app.use('/', indexRouter);
|
||||
app.use('/about', aboutRouter);
|
||||
app.use('/contact', contactRouter);
|
||||
|
||||
// catch 404 and forward to error handler
|
||||
app.use(function(req, res, next) {
|
||||
next(createError(404));
|
||||
app.use(function (req, res, next) {
|
||||
next(createError(404));
|
||||
});
|
||||
|
||||
// error handler
|
||||
app.use(function(err, req, res, next) {
|
||||
// set locals, only providing error in development
|
||||
res.locals.message = err.message;
|
||||
res.locals.error = req.app.get('env') === 'development' ? err : {};
|
||||
app.use(function (err, req, res, _next) {
|
||||
// set locals, only providing error in development
|
||||
res.locals.message = err.message;
|
||||
res.locals.error = req.app.get('env') === 'development' ? err : {};
|
||||
|
||||
// render the error page
|
||||
res.status(err.status || 500);
|
||||
res.render('error', { title: 'Error', description: "Error" });
|
||||
// render the error page
|
||||
res.status(err.status || 500);
|
||||
res.render('error', { title: 'Error', description: 'Error' });
|
||||
});
|
||||
|
||||
module.exports = app;
|
||||
|
64
bin/www
64
bin/www
@@ -35,19 +35,19 @@ server.on('listening', onListening);
|
||||
*/
|
||||
|
||||
function normalizePort(val) {
|
||||
var port = parseInt(val, 10);
|
||||
var port = parseInt(val, 10);
|
||||
|
||||
if (isNaN(port)) {
|
||||
// named pipe
|
||||
return val;
|
||||
}
|
||||
if (isNaN(port)) {
|
||||
// named pipe
|
||||
return val;
|
||||
}
|
||||
|
||||
if (port >= 0) {
|
||||
// port number
|
||||
return port;
|
||||
}
|
||||
if (port >= 0) {
|
||||
// port number
|
||||
return port;
|
||||
}
|
||||
|
||||
return false;
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -55,27 +55,25 @@ function normalizePort(val) {
|
||||
*/
|
||||
|
||||
function onError(error) {
|
||||
if (error.syscall !== 'listen') {
|
||||
throw error;
|
||||
}
|
||||
if (error.syscall !== 'listen') {
|
||||
throw error;
|
||||
}
|
||||
|
||||
var bind = typeof port === 'string'
|
||||
? 'Pipe ' + port
|
||||
: 'Port ' + port;
|
||||
var bind = typeof port === 'string' ? 'Pipe ' + port : 'Port ' + port;
|
||||
|
||||
// handle specific listen errors with friendly messages
|
||||
switch (error.code) {
|
||||
case 'EACCES':
|
||||
console.error(bind + ' requires elevated privileges');
|
||||
process.exit(1);
|
||||
break;
|
||||
case 'EADDRINUSE':
|
||||
console.error(bind + ' is already in use');
|
||||
process.exit(1);
|
||||
break;
|
||||
default:
|
||||
throw error;
|
||||
}
|
||||
// handle specific listen errors with friendly messages
|
||||
switch (error.code) {
|
||||
case 'EACCES':
|
||||
console.error(bind + ' requires elevated privileges');
|
||||
process.exit(1);
|
||||
break;
|
||||
case 'EADDRINUSE':
|
||||
console.error(bind + ' is already in use');
|
||||
process.exit(1);
|
||||
break;
|
||||
default:
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -83,9 +81,7 @@ function onError(error) {
|
||||
*/
|
||||
|
||||
function onListening() {
|
||||
var addr = server.address();
|
||||
var bind = typeof addr === 'string'
|
||||
? 'pipe ' + addr
|
||||
: 'port ' + addr.port;
|
||||
debug('Listening on ' + bind);
|
||||
var addr = server.address();
|
||||
var bind = typeof addr === 'string' ? 'pipe ' + addr : 'port ' + addr.port;
|
||||
debug('Listening on ' + bind);
|
||||
}
|
||||
|
@@ -2,29 +2,29 @@ var winston = require('winston');
|
||||
var appRoot = require('app-root-path');
|
||||
|
||||
var logger = new winston.createLogger({
|
||||
transports: [
|
||||
new winston.transports.File({
|
||||
level: 'info',
|
||||
filename: `${appRoot}/logs/app.log`,
|
||||
handleExceptions: true,
|
||||
json: true,
|
||||
maxsize: 5242880, //5MB
|
||||
maxFiles: 5,
|
||||
colorize: false
|
||||
}),
|
||||
new winston.transports.Console({
|
||||
level: 'debug',
|
||||
handleExceptions: true,
|
||||
json: false,
|
||||
colorize: true
|
||||
})
|
||||
],
|
||||
exitOnError: false
|
||||
transports: [
|
||||
new winston.transports.File({
|
||||
level: 'info',
|
||||
filename: `${appRoot}/logs/app.log`,
|
||||
handleExceptions: true,
|
||||
json: true,
|
||||
maxsize: 5242880, //5MB
|
||||
maxFiles: 5,
|
||||
colorize: false,
|
||||
}),
|
||||
new winston.transports.Console({
|
||||
level: 'debug',
|
||||
handleExceptions: true,
|
||||
json: false,
|
||||
colorize: true,
|
||||
}),
|
||||
],
|
||||
exitOnError: false,
|
||||
});
|
||||
|
||||
logger.stream = {
|
||||
write: function(message, encoding){
|
||||
logger.info(message);
|
||||
}
|
||||
write: function (message, _encoding) {
|
||||
logger.info(message);
|
||||
},
|
||||
};
|
||||
module.exports = logger
|
||||
module.exports = logger;
|
||||
|
20
eslint.config.mjs
Normal file
20
eslint.config.mjs
Normal file
@@ -0,0 +1,20 @@
|
||||
import globals from 'globals';
|
||||
import pluginJs from '@eslint/js';
|
||||
|
||||
export default [
|
||||
{ files: ['**/*.js'], languageOptions: { sourceType: 'commonjs' } },
|
||||
{ languageOptions: { globals: { ...globals.browser, ...globals.node } } },
|
||||
pluginJs.configs.recommended,
|
||||
{
|
||||
rules: {
|
||||
'no-unused-vars': [
|
||||
'error',
|
||||
{
|
||||
argsIgnorePattern: '^_',
|
||||
varsIgnorePattern: '^_',
|
||||
caughtErrorsIgnorePattern: '^_',
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
];
|
19
obsidian/00-tags/tag-admin.html
Normal file
19
obsidian/00-tags/tag-admin.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-ai.html
Normal file
19
obsidian/00-tags/tag-ai.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-api.html
Normal file
19
obsidian/00-tags/tag-api.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-application-ui.html
Normal file
19
obsidian/00-tags/tag-application-ui.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-art.html
Normal file
19
obsidian/00-tags/tag-art.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-automated-email.html
Normal file
19
obsidian/00-tags/tag-automated-email.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-backend.html
Normal file
19
obsidian/00-tags/tag-backend.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-bash.html
Normal file
19
obsidian/00-tags/tag-bash.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-blender.html
Normal file
19
obsidian/00-tags/tag-blender.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-bootstrap.html
Normal file
19
obsidian/00-tags/tag-bootstrap.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-bot.html
Normal file
19
obsidian/00-tags/tag-bot.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-browser-automation.html
Normal file
19
obsidian/00-tags/tag-browser-automation.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-browser-extension.html
Normal file
19
obsidian/00-tags/tag-browser-extension.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-character-design.html
Normal file
19
obsidian/00-tags/tag-character-design.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-chrome-extension.html
Normal file
19
obsidian/00-tags/tag-chrome-extension.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-cicd.html
Normal file
19
obsidian/00-tags/tag-cicd.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-concurrency.html
Normal file
19
obsidian/00-tags/tag-concurrency.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-css.html
Normal file
19
obsidian/00-tags/tag-css.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-cybersecurity.html
Normal file
19
obsidian/00-tags/tag-cybersecurity.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-data-management.html
Normal file
19
obsidian/00-tags/tag-data-management.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-data-science.html
Normal file
19
obsidian/00-tags/tag-data-science.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-decryption.html
Normal file
19
obsidian/00-tags/tag-decryption.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-devops.html
Normal file
19
obsidian/00-tags/tag-devops.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-diffing.html
Normal file
19
obsidian/00-tags/tag-diffing.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-discord.html
Normal file
19
obsidian/00-tags/tag-discord.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-django-rest-framework.html
Normal file
19
obsidian/00-tags/tag-django-rest-framework.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-django.html
Normal file
19
obsidian/00-tags/tag-django.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-docker.html
Normal file
19
obsidian/00-tags/tag-docker.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-domain-name-management.html
Normal file
19
obsidian/00-tags/tag-domain-name-management.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-dsa.html
Normal file
19
obsidian/00-tags/tag-dsa.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-express.html
Normal file
19
obsidian/00-tags/tag-express.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-firefox-extension.html
Normal file
19
obsidian/00-tags/tag-firefox-extension.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-frontend.html
Normal file
19
obsidian/00-tags/tag-frontend.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-fullstack.html
Normal file
19
obsidian/00-tags/tag-fullstack.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-game-design.html
Normal file
19
obsidian/00-tags/tag-game-design.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-game-dev.html
Normal file
19
obsidian/00-tags/tag-game-dev.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-gamejam.html
Normal file
19
obsidian/00-tags/tag-gamejam.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-gdb.html
Normal file
19
obsidian/00-tags/tag-gdb.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-genetic-algorithm.html
Normal file
19
obsidian/00-tags/tag-genetic-algorithm.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-github-actions.html
Normal file
19
obsidian/00-tags/tag-github-actions.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-github-contributor.html
Normal file
19
obsidian/00-tags/tag-github-contributor.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-go.html
Normal file
19
obsidian/00-tags/tag-go.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-godot.html
Normal file
19
obsidian/00-tags/tag-godot.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-hackathon.html
Normal file
19
obsidian/00-tags/tag-hackathon.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-heroku.html
Normal file
19
obsidian/00-tags/tag-heroku.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-hosting.html
Normal file
19
obsidian/00-tags/tag-hosting.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-html.html
Normal file
19
obsidian/00-tags/tag-html.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-image-gen.html
Normal file
19
obsidian/00-tags/tag-image-gen.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-irc.html
Normal file
19
obsidian/00-tags/tag-irc.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-java.html
Normal file
19
obsidian/00-tags/tag-java.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-js.html
Normal file
19
obsidian/00-tags/tag-js.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-jupyter-notebook.html
Normal file
19
obsidian/00-tags/tag-jupyter-notebook.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-latex.html
Normal file
19
obsidian/00-tags/tag-latex.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-level-design.html
Normal file
19
obsidian/00-tags/tag-level-design.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-linux.html
Normal file
19
obsidian/00-tags/tag-linux.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-low-level-debugging.html
Normal file
19
obsidian/00-tags/tag-low-level-debugging.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-machine-learning.html
Normal file
19
obsidian/00-tags/tag-machine-learning.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-matplotlib.html
Normal file
19
obsidian/00-tags/tag-matplotlib.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-music.html
Normal file
19
obsidian/00-tags/tag-music.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-myers-diff-algo.html
Normal file
19
obsidian/00-tags/tag-myers-diff-algo.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-network-traffic-capture.html
Normal file
19
obsidian/00-tags/tag-network-traffic-capture.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-networking.html
Normal file
19
obsidian/00-tags/tag-networking.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-neural-networks.html
Normal file
19
obsidian/00-tags/tag-neural-networks.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-nextjs.html
Normal file
19
obsidian/00-tags/tag-nextjs.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-nltk.html
Normal file
19
obsidian/00-tags/tag-nltk.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-nodejs.html
Normal file
19
obsidian/00-tags/tag-nodejs.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-npm.html
Normal file
19
obsidian/00-tags/tag-npm.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-numpy.html
Normal file
19
obsidian/00-tags/tag-numpy.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-oauth.html
Normal file
19
obsidian/00-tags/tag-oauth.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-oop.html
Normal file
19
obsidian/00-tags/tag-oop.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-openai.html
Normal file
19
obsidian/00-tags/tag-openai.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-pandas.html
Normal file
19
obsidian/00-tags/tag-pandas.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-parcel.html
Normal file
19
obsidian/00-tags/tag-parcel.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-php.html
Normal file
19
obsidian/00-tags/tag-php.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-platformer.html
Normal file
19
obsidian/00-tags/tag-platformer.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-postgres.html
Normal file
19
obsidian/00-tags/tag-postgres.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-prod.html
Normal file
19
obsidian/00-tags/tag-prod.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-protocol.html
Normal file
19
obsidian/00-tags/tag-protocol.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-proxy.html
Normal file
19
obsidian/00-tags/tag-proxy.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-pug.html
Normal file
19
obsidian/00-tags/tag-pug.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-puppeteer.html
Normal file
19
obsidian/00-tags/tag-puppeteer.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-pwndbg.html
Normal file
19
obsidian/00-tags/tag-pwndbg.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-pygame.html
Normal file
19
obsidian/00-tags/tag-pygame.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-python.html
Normal file
19
obsidian/00-tags/tag-python.html
Normal file
File diff suppressed because one or more lines are too long
19
obsidian/00-tags/tag-pytorch.html
Normal file
19
obsidian/00-tags/tag-pytorch.html
Normal file
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user