Skip to content

Instantly share code, notes, and snippets.

View davidjenner's full-sized avatar
🎯
Focusing

David Jenner davidjenner

🎯
Focusing
View GitHub Profile
@davidjenner
davidjenner / index.html
Created April 5, 2024 18:43
Logo Converter to 512 and 256 pixels png
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Logo Converter</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<style>
body {
@davidjenner
davidjenner / index.html
Created March 11, 2024 19:02
Outseek - Fake Email Desktop Client
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Outlook Simulator</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
.email-client-container {
Ideas on automating a PC Refresh
Write a powershell script to automate at job on the network every monday at midnight
# Define the action to be performed (replace with your own command)
$scriptPath = "C:\Path\To\Your\Script.ps1"
# Define the task name
$taskName = "MyScheduledTask"
@davidjenner
davidjenner / gist:70edc5996297923ca1369a877920a85e
Last active August 21, 2023 19:36
Plugin Reusable Code - Maintenance Page
// Header
// Codex - https://developer.wordpress.org/plugins/plugin-basics/header-requirements/
/**
* Plugin Name
*
* @package PluginPackage
* @author David Jenner
* @copyright David Jenner
* @license GPL-2.0-or-later
Getting started on Github for Complete Beginners
@davidjenner
davidjenner / docker_wordpress.md
Created May 25, 2022 17:27 — forked from bradtraversy/docker_wordpress.md
Docker Compose FIle For Wordpress, MySQL & phpmyadmin

Wordpress & Docker

This file will setup Wordpress, MySQL & PHPMyAdmin with a single command. Add the code below to a file called "docker-compose.yaml" and run the command

$ docker-compose up -d

# To Tear Down
$ docker-compose down --volumes