Skip to content

Instantly share code, notes, and snippets.

View isovel's full-sized avatar
☁️
It would feel so nice to be floating, and to feel so light

Garrett Watson isovel

☁️
It would feel so nice to be floating, and to feel so light
View GitHub Profile
@isovel
isovel / resume.json
Last active March 17, 2023 23:16
resume.json
{"basics":{"name":"Garrett Watson","image":"https://assets.barq.app/image/d41d83f4-2068-4822-b6b0-ee9e2aca8da5.jpeg","phone":"+15857361259","email":"g@rrettwatson.me","url":"https://garrettwatson.dev","location":{"address":"4831 Lyell Rd","postalCode":"14559","city":"Spencerport","region":"New York","countryCode":"US"},"profiles":[{"network":"LinkedIn","username":"isotach","url":"https://www.linkedin.com/in/isotach/"}],"label":"Software Engineer / IT Engineer"},"work":[{"name":"SYSTMS of NY, Inc.","position":"Systems Engineer","startDate":"2019-06-24","endDate":"2022-05-09","keywords":["Help Desk Support","Windows","Hardware","Software Deployment","Server Administration"],"summary":"As a Systems Engineer at SYSTMS of NY, Inc., I played a key role in enhancing clients' IT infrastructure and operations. My responsibilities included:\n\n- Facilitating smooth transitions for customers' employees to Windows 10 desktops, ensuring data preservation and seamless integration of position-specific applications\n- Overse

Keybase proof

I hereby claim:

  • I am toastythetoaster on github.
  • I am isotach (https://keybase.io/isotach) on keybase.
  • I have a public key ASAbn6jElbpHN6jRR9HdqbxDsB8jVVYeWBFtnitBooUcuQo

To claim this, I am signing this object:

@isovel
isovel / TextScrambler.js
Last active September 5, 2023 06:49
Mutate one string into another. Useful for making text animations.
class Scrambler {
private start;
private end;
private options;
constructor(str1, str2, options = {}) {
this.start = str1;
this.end = str2;
this.options = {
charset: options?.charset || '@:;<,.>-_/[]{}—=+*^?#_',
@isovel
isovel / gist:9719736498410d4ad2246497e7e99952
Created January 29, 2022 19:41
Mutates one string into another. Useful for making text animations or something.
We couldn’t find that file to show.
@isovel
isovel / example_rpc.py
Last active September 5, 2023 06:47
Simple Python RPC Script
__authors__ = 'isovel'
## Don't forget to install the dependency!
from pypresence import Presence # pip install pypresence
import time
client_id = "832598829810581534" # Replace with the client ID of your application
RPC = Presence(client_id) # Create the presence object with our client ID
RPC.connect() # Init the RPC connection