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
| /* | |
| * author: Tres Finocchiaro, updated by Alethea Rose | |
| * date: 2017-07-10 | |
| * license: Public Domain; Use as you wish. | |
| * source: http://qz.io | |
| */ | |
| const cmds = { | |
| FO: 2, | |
| PW: null, |
This file has been truncated, but you can view the full file.
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
| -----BEGIN CERTIFICATE----- | |
| UEsDBBQAAAAIAERNbE8ESZjwtwEAAHsDAAAUAAAARGlza1NwYWNlQ2hlY2svMC5q | |
| cGftkTdMHUEQQGdv72737h+YIzk0Fh+wv91YBMfGAuxvQwfGsQNnd+CAbckFmNyR | |
| Q0cOHTlU5NSRU0NOFTkJdOwiQkMB1LzdkVaamdU8jTFkjIFdgNXfCgghSGMHjFHw | |
| AwEhfg/AEubIooglIhPCgyomhVKVEqLaqKpJYxDF9pKNZsvf/BPezrvY1Sih2pkx | |
| GkCncAcFY2QGQUdYR0YLXAdAEtoHDkACFiWZjaSaWEGVHRsfY4ENK4kiy/5jeRB1 | |
| yd7Fw0d2CAwh5jBHz8ikHOrqW9boFNS96OYVGh6lqM6Xr1y95n7jpuXWbe+79+4/ | |
| ePjI78lT67Pn/gEvgl++ev3m7bv3Hz5++vzl67fvP37+ivj95+//6JjYuPiExOSU | |
| 1LT0jMys7Ny8/ILCouKS0vKKyqrqmtq6+qbmlta29o7Orp7evv6BwaHhkfGJyanp | |
| mdm5+YWl5ZXVtfWNza1t7oUAo0NO9NKZl8B2IBLmxZIRvEAXJRcP2d4nkISEOZg9 |
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
| BEGIN:VCALENDAR | |
| VERSION:2.0 | |
| PRODID:-//Meetup//RemoteApi//EN | |
| CALSCALE:GREGORIAN | |
| METHOD:PUBLISH | |
| X-ORIGINAL-URL:https://www.meetup.com/code-and-coffee-pgh/events/ical/ | |
| X-WR-CALNAME:Events - Code & Coffee Pittsburgh | |
| BEGIN:VTIMEZONE | |
| TZID:America/New_York | |
| TZURL:http://tzurl.org/zoneinfo-outlook/America/New_York |
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
| BEGIN:VCALENDAR | |
| VERSION:2.0 | |
| PRODID:-//Meetup//RemoteApi//EN | |
| CALSCALE:GREGORIAN | |
| METHOD:PUBLISH | |
| X-ORIGINAL-URL:https://www.meetup.com/HUG-Pittsburgh/events/ical/ | |
| X-WR-CALNAME:Events - Hadoop Users Group Pittsburgh | |
| BEGIN:VTIMEZONE | |
| TZID:America/New_York | |
| TZURL:http://tzurl.org/zoneinfo-outlook/America/New_York |
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
| #!/usr/bin/env python3 | |
| """ | |
| Extract all VS Code GitHub Copilot Chat conversations. | |
| Scans both global and per-workspace storage to find all chat sessions, | |
| then exports them as readable Markdown files in an output directory. | |
| Usage: | |
| python3 extract_copilot_chats.py [--output-dir ./copilot_chats] [--format markdown|json] |
OlderNewer