Skip to content

Instantly share code, notes, and snippets.

View halfnibble's full-sized avatar
🎃
Coding

Josh Wedekind halfnibble

🎃
Coding
View GitHub Profile
@halfnibble
halfnibble / seed-languages.js
Created February 24, 2024 20:07
Seed test languages data
// scripts/seed-languages.js
// DEPENDENCIES
const mongoose = require('mongoose');
// CONFIGURATION
require('dotenv').config();
mongoose.connect(process.env.MONGO_URI, { useNewUrlParser: true, useUnifiedTopology: true }, () => {
console.log('connected to mongo: ', process.env.MONGO_URI);
});
@halfnibble
halfnibble / seed-bakers.js
Created February 17, 2024 18:50
Baker seeder
// seeders/seed-bakers.js
const Baker = require('../models/baker');
require('dotenv').config();
const mongoose = require('mongoose');
const MONGO_URI = process.env.MONGO_URI;
mongoose
.connect(MONGO_URI)
.then(() => {
@halfnibble
halfnibble / index.js
Created February 3, 2024 18:22
rainbow-routes/index.js
const express = require('express');
const app = express();
app.get('/:color?', (req, res) => {
let myColor = req.params.color;
console.log('myColor is: ', myColor);
if (typeof myColor === 'undefined') {
// Set to default when undefined.
myColor = 'white';
@halfnibble
halfnibble / README.md
Created April 23, 2023 21:38
API Readme Table
Method Path Purpose
GET / Home page
GET /places Places index page
POST /places Create new place
GET /places/new Form page for creating a new place
GET /places/:id Details about a particular place
PUT /places/:id Update a particular place
GET /places/:id/edit Form page for editing an existing place
DELETE /places/:id Delete a particular place
@halfnibble
halfnibble / login_register.js
Created October 24, 2021 05:55
Toggle Login and Register forms on the Moore Wright Group Woocommerce page.
/**
* Add this JavaScript early in the DOM so it will execute when the page loads.
* You can use something like the "Simple Custom CSS and JS" plugin:
* https://wordpress.org/plugins/custom-css-js/#
*
* If you want to test it, execute the code inside the "DOMContentLoaded"
* function in the developer console on the login|register page.
*/
document.addEventListener("DOMContentLoaded", function (event) {
@halfnibble
halfnibble / uploader.py
Created January 18, 2021 01:37
Minecraft Server Backups - Azure Storage Uploader Script.
# Inspired by https://docs.microsoft.com/en-us/azure/storage/blobs/storage-quickstart-blobs-python
import os
from azure.storage.blob import BlobServiceClient, BlobClient, ContainerClient, __version__
# Make sure you update this per server
CONTAINER_NAME = 'mcbackups1'
try:
print("Azure Blob storage v" + __version__ + " - Python quickstart sample")
@halfnibble
halfnibble / webpack.config.js
Created June 22, 2020 17:23
Add file-loader to webpack config.
const path = require('path')
const ExtractTextWebpackPlugin = require('extract-text-webpack-plugin')
const { postLogin, postArticle } = require('./js/api')
const express = require('express')
module.exports = {
mode: 'development',
entry: {
'app': './js/index.js',
'styles': './sass/styles.sass'
@halfnibble
halfnibble / htmlToAST.js
Last active December 27, 2021 14:59
GraphCMS HTML to RichTextAST
const { jsx } = require('slate-hyperscript')
const { JSDOM } = require('jsdom')
const DOMParser = new JSDOM().window.DOMParser
/**
* Parses and returns a Rich Text AST object for use in GraphCMS.
*
* @param {HTML} html string, e.g. `<p>hi there</p>`
*/
const htmlToAST = html => {
@halfnibble
halfnibble / HashFunction.ts
Last active October 13, 2023 11:35
Hash function to debug absolute paths sent to the update chunk hash method in webpack.
import * as crypto from 'crypto';
import * as fs from 'fs';
import * as path from 'path';
/**
* Interface for Webpack's hashFunction
*/
export interface IHashFunction {
update: (data: string | Buffer, encoding: string) => IHashFunction;
digest: (encoding: string) => string | Buffer;
@halfnibble
halfnibble / index.html
Created June 27, 2019 00:32
Example code so far.
<!DOCTYPE html>
<html>
<head>
<title>My JavaScript Test</title>
</head>
<body>
<h1 id="page-header">
Loading...
</h1>