Skip to content

Instantly share code, notes, and snippets.

View leejoramo-d51's full-sized avatar
Code & Coffee

Lee Joramo leejoramo-d51

Code & Coffee
  • D51 Schools
  • Grand Junction, Colorado
View GitHub Profile
@leejoramo-d51
leejoramo-d51 / ExternalSenderCleaner.js
Created June 9, 2020 17:18
Tampermonkey script to remove annoying gmail prefixes
// ==UserScript==
// @name Remove [External Sender] v0.2
// @namespace https://mail.google.com
// @version 0.2
// @description try to take over the world!
// @author Lee Joramo
// @match https://www.tampermonkey.net/index.php?version=4.10.6111&ext=iikm&updated=true
// @match https://mail.google.com/mail/*
// ==/UserScript==
<html><head>
<!--
PDSA project
demo of how to build a circle status widget using SVG/JS/CSS
-->
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style>
svg {
@leejoramo-d51
leejoramo-d51 / Lsyncd Technical Session.md
Created September 24, 2020 14:50 — forked from mralexjuarez/Lsyncd Technical Session.md
Quick Tutorial on Using Lsyncd

Lsyncd Technical Session

So what is lsyncd?

Lsyncd is a tool used to keep a source directory in sync with other local or remote directories. It is a solution suited keeping directories in sync by batch processing changes over to the synced directories.

When would we use lsyncd?

So the generic use case is to keep a source directory in sync with one or more local and remote directories.

@leejoramo-d51
leejoramo-d51 / component.svelte
Created January 7, 2022 22:15 — forked from d4rekanguok/component.svelte
A svelte component you can drop into your svelte kit app to view a list of all your components (poor man's Storybook)
<script context="module">
const modules = import.meta.glob('/src/sections/*.svelte')
const componentNames = Object.keys(modules)
</script>
<script>
import cx from 'clsx'
let current = componentNames[0]
$: importComponent = modules[current]