Skip to content

Instantly share code, notes, and snippets.

View nateous's full-sized avatar
🏠
Working from home

Nate Bell nateous

🏠
Working from home
  • Coterie Insurance
  • Ohio
View GitHub Profile
@nateous
nateous / dep_list.md
Last active September 15, 2021 15:56
Dependencies gathering

git pull all repos locally to parent dir

NUGET

From the parent dir run the following bash command

$ grep -r 'PackageReference Include' . >> nuget.txt
@nateous
nateous / convert_image_to_base64.html
Created June 4, 2018 17:46
So I don't have to keep uploading images to websites I don't trust...
<!DOCTYPE html>
<html style="height:100%;">
<head>
<meta charset="utf-8" />
<title>Convert an image to base64</title>
</head>
<body style="display:flex;flex-direction:column;align-items:stretch;">
<input type="file" />
<textarea readonly style="flex:1 1 auto;"></textarea>
<script type="text/javascript">