Skip to content

Instantly share code, notes, and snippets.

{
"public_identifier": "jgoldfedder",
"profile_pic_url": "https://media.licdn.com/dms/image/v2/C4E03AQE2vxTFP_MaEQ/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1663542253928?e=1749686400&v=beta&t=iGUg_W9eyZ1_o_WIXObitAPN0ndNyOyLcGazeyHw-VA",
"background_cover_image_url": "https://media.licdn.com/dms/image/v2/D4E16AQGtNxecgO85Xw/profile-displaybackgroundimage-shrink_350_1400/profile-displaybackgroundimage-shrink_350_1400/0/1712237108934?e=1749686400&v=beta&t=gb6djikq537hu2F6qwW_y9RogeHeQX16P_KWF2GrWw8",
"first_name": "Jarrett",
"last_name": "Goldfedder",
"full_name": "Jarrett Goldfedder",
"follower_count": 2252,
"occupation": "Data Practice Leader at AVER, LLC",
"headline": "Data Practice Leader at AVER | Driving Innovation and Excellence in Government Solutions",
@jgoldfed
jgoldfed / flowise-cloudformation.yml
Last active November 3, 2024 19:10 — forked from MrHertal/flowise-cloudformation.yml
AWS Fargate cluster hosting Flowise exposed through ELB.
AWSTemplateFormatVersion: "2010-09-09"
Description: This template creates resources for Flowise application
Parameters:
Stage:
Description: Prefix of resource names
Type: String
Default: flowise
@jgoldfed
jgoldfed / create-windows-terminal-shortcut-as-admin.ps1
Last active November 28, 2023 18:01
create-windows-terminal-shortcut-as-admin
# From https://superuser.com/questions/1560049/open-windows-terminal-as-admin-with-winr#answer-1598352
$WshShell = New-Object -comObject WScript.Shell
$Shortcut = $WshShell.CreateShortcut("$Home\Desktop\Windows Terminal.lnk")
$Shortcut.TargetPath = "$env:LOCALAPPDATA\Microsoft\WindowsApps\Microsoft.WindowsTerminal_8wekyb3d8bbwe\wt.exe"
$Shortcut.Save()
$bytes = [System.IO.File]::ReadAllBytes("$Home\Desktop\Windows Terminal.lnk")
$bytes[0x15] = $bytes[0x15] -bor 0x20 #set byte 21 (0x15) bit 6 (0x20) ON
[System.IO.File]::WriteAllBytes("$Home\Desktop\Windows Terminal.lnk", $bytes)
@jgoldfed
jgoldfed / Build docker Aws with docker-machine
Created October 13, 2021 13:51
Build docker Aws with docker-machine
# see https://newbedev.com/docker/machine/drivers/aws/index?utm_source=pocket_mylist
docker-machine create --driver amazonec2 --amazonec2-access-key <<access>> --amazonec2-secret-key <<secret>> --amazonec2-instance-type t2.medium --amazonec2-region us-east-1 --amazonec2-ami ami-09e67e426f25ce0d7 aws01
docker-machine env aws01
#Run the last command on the list followed by
docker-machine ssh aws01