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
| JASC-PAL | |
| 0100 | |
| 256 | |
| 0 0 0 | |
| 0 0 85 | |
| 85 0 0 | |
| 85 0 85 | |
| 0 85 0 | |
| 0 85 85 | |
| 85 85 0 |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Globalization; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text.RegularExpressions; | |
| namespace ConsoleApp8 | |
| { | |
| class Program |
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
| Princeton proprietary 25 pin connector pinout | |
| 1 - GROUND TTL 2 - RED 2 OR GND TTL | |
| RED ANALOG GRN ANALOG | |
| 3 - RED TTL 4 - GRN TTL | |
| BLUE ANALOG COMP-HORIZ-SYNC | |
| 5 - BLUE TTL 6 - GRN 2 OR INTENSITY TTL | |
| PCG MODE ANALOG GND ANALOG | |
| 7 - BLUE 2 TTL 8 - HORIZ-SYNC TTL | |
| GND ANALOG GND ANALOG |
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
| VIDI | |
| ROMBO PRODUCTIONS | |
| VIDI-ZX | |
| VIDEO DIGITISER FOR ZX-SPECTRUM |
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
| { | |
| "name":"Ultrawide 6 section", | |
| "rules":[ | |
| { | |
| "dock":{ | |
| "monitor":0, | |
| "values":[ | |
| 0, | |
| 0, | |
| 33, |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
| </head> | |
| <body> | |
| <canvas id="myCanvas"></canvas> | |
| <br> |
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
| <?xml version="1.0" encoding="UTF-16"?> | |
| <Task version="1.4" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task"> | |
| <RegistrationInfo> | |
| <Date>2019-12-17T10:49:39.5675591</Date> | |
| <URI>\Wake on WiFi</URI> | |
| </RegistrationInfo> | |
| <Triggers> | |
| <EventTrigger> | |
| <Enabled>true</Enabled> | |
| <Subscription><QueryList><Query Id="0" Path="System"><Select Path="System">*[System[Provider[@Name='Microsoft-Windows-Power-Troubleshooter' or @Name='power'] and (EventID=1)]]</Select></Query></QueryList></Subscription> |
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
| #!/bin/bash | |
| for i in "$@" | |
| do | |
| echo | |
| echo Publishing ${i} | |
| name="${i%.*}" | |
| zip="${name}.zip" | |
| rm -rf "${zip}" | |
| # Folder cleanup |
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
| #!/bin/bash | |
| fl5reg="HKCU\Software\FontLab\Studio 5\Directories" | |
| for i in "$@" | |
| do | |
| name="${i%.*}" | |
| echo Processing $name | |
| mkdir -p PC | |
| psf="PC/${name}.psf" | |
| vfb="PC/${name}.vfb" |
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
| #!/bin/bash | |
| fl5reg="HKCU\Software\FontLab\Studio 5\Directories" | |
| for i in "$@" | |
| do | |
| name="${i%.*}" | |
| echo Processing $name | |
| pw preview "$i" . >> /dev/null | |
| psf="${name}.psf" | |
| vfb="${name}.vfb" | |
| zx2psf "$i" "${psf}" --mode=move1 --graphics=none |