Skip to content

Instantly share code, notes, and snippets.

View immannino's full-sized avatar
💁‍♂️
fabulous

Tony immannino

💁‍♂️
fabulous
View GitHub Profile
@immannino
immannino / alpine-wkhtmltopdf.dockerfile
Last active October 20, 2021 22:31
Files for Go Wkhtmltopdf Blog Post
FROM surnet/alpine-wkhtmltopdf:3.10-0.12.5-small
RUN apk update && \
apk upgrade && \
apk add --update --no-cache \
udev \
ca-certificates
@immannino
immannino / resignation.txt
Created June 28, 2021 16:39 — forked from QuinnyPig/resignation.txt
Templated resignation letter
Dear BOSS,
Please accept this letter as formal notification that I am resigning from my position as JOB TITLE with COMPANY. My last day will be DATE OF LAST DAY.
Thank you so much for the opportunity to work in this position for the past DURATION. I’ve greatly enjoyed and appreciated the opportunities I’ve had to WTF DID YOU DO, and I’ve learned many things, all of which I will take with me throughout my career.
During my last two weeks, I’ll do everything possible to wrap up my duties and train other team members. Please let me know if there’s anything else I can do to aid during the transition.
I wish COMPANY continued success, and I hope to stay in touch in the future.
Sincerely,
window.onload = async () => {
const pt = document.querySelector(".ptyperight")
const getRandom = (min = 75, max = 225) => Math.floor(Math.random() * (max - min) + min);
let fTime = getRandom();
let bTime = 25;
let pause = 1000;
let forward = true;
@immannino
immannino / timer.html
Last active April 17, 2021 01:40
Small site that creates a browser based timer. Simple, stupid, works across all browsers (not an extension).
<!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">
<meta name="title" content="">
<meta property="og:site_name" content="timer">
<meta property="og:locale" content="en_US">
<meta property="og:url" content="https://timer.spaghet.me">
@immannino
immannino / vue-template.html
Last active March 15, 2022 03:01
Small vue + new.css template with SEO Meta tags for side projects.
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Site Behavior tags -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Basic site info-->
<meta name="title" data-hid="title" content="">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta http-equiv="refresh" content="60">
<title>mlb stuff</title>
<script src="https://unpkg.com/vue"></script>
</head>
@immannino
immannino / scroll-progress-thing.html
Created July 22, 2020 17:50
Scroll Progress snippet
<!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">
<meta name="title" content="Scroll Progress Thing">
<meta property="og:site_name" content="scroll-thing">
<meta property="og:locale" content="en_US">
<meta property="og:url" content="http://scroll-thing.surge.sh">
@immannino
immannino / index.html
Last active August 19, 2020 17:44
SEO Meta Tag sample
<!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">
<meta data-hid="title" name="title" content="">
<meta data-hid="description" name="description" content="">
@immannino
immannino / README.md
Created April 21, 2020 18:37
Just a snippet of Kevin Powells: min(), max(), and clamp() are CSS Magic! video
@immannino
immannino / thing.css
Created January 15, 2020 05:17
Simple form flexbox auto layout
/*
https://codepen.io/argyleink/pen/LYEegOO
*/
body {
min-height: 100vh;
display: grid;
align-items: center;
}
form {