If you have snippets that might conflict with another extensions snippets you can go into your vscode settings.json and add this line
"editor.snippetSuggestions": "top"
### Keybase proof | |
I hereby claim: | |
* I am thetetrabyte on github. | |
* I am tetrabyte (https://keybase.io/tetrabyte) on keybase. | |
* I have a public key ASAnhnfUeCFWj0SHuuPymGBnkwrPb8QO_s9va2B4IKyvYAo | |
To claim this, I am signing this object: |
Below you will find the markdown and html examples, I've included the html examples because if you want to center them in the readme you'll need to use the html tag variant with a p tag set to align center.
Center tags are used here and you can see how they're all layed out by opening the raw of this file.
<p align="center">
<!-- Tags here -->
<html> | |
<head> | |
<title>Time Display</title> | |
<link rel="stylesheet" type="text/css" href="./css/dank-mono.css"> | |
<link rel="stylesheet" href="./css/all.css"> | |
<script defer src="./js/all.js"></script> | |
<style> | |
body { |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
INGEST_DIRECTORY="/mnt/shares/footage/ingest" | |
FOOTAGE_DIRECTORY="/mnt/shares/footage" | |
inotifywait -m $INGEST_DIRECTORY -e create -e moved_to | while read path action file; do | |
echo "DEBUG : Detected new file in $path ($file)" | |
# Use media info to pull the metadata of the media | |
FILE_INFO=$(mediainfo ${path}${file} --Output=JSON) |
I hereby claim:
To claim this, I am signing this object:
―――――――――――――――――――――――――――――――――――――――――――――――――――――― | |
Hours writing code 9.22hrs | |
Terminal Commands 1,418 | |
Docker Builds 0 | |
―――――――――――――――――――――――――――――――――――――――――――――――――――――― |
#!/usr/bin/env python3 | |
import asyncio | |
import iterm2 | |
async def main(connection): | |
app = await iterm2.async_get_app(connection) | |
effectiveTheme = await app.async_get_variable("effectiveTheme") | |
addEventListener('fetch', event => { | |
event.respondWith(handleRequest(event.request)) | |
}); | |
const start_images = 1; | |
const end_images = 47; | |
const image_folder = 'marley'; | |
const default_image = `https://dustin.wtf/${image_folder}/1.jpg`; |