This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AWSTemplateFormatVersion: "2010-09-09" | |
| Description: This template creates resources for Flowise application | |
| Parameters: | |
| Stage: | |
| Description: Prefix of resource names | |
| Type: String | |
| Default: flowise |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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 |