├── screenshot.png
├── stripe-2.xslt
├── stripe-4.plt
├── stripe-3.emberscript
├── stripe-5.pde
├── stripe-1.go
└── README.md
/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ticky/trans/HEAD/screenshot.png
--------------------------------------------------------------------------------
/stripe-2.xslt:
--------------------------------------------------------------------------------
1 | 💜
--------------------------------------------------------------------------------
/stripe-4.plt:
--------------------------------------------------------------------------------
1 | set yrange [-3:1]
2 | plot [-2:2] acos(1 - abs(x)) - pi with filledcurves, sqrt(1 - (abs(x) - 1) ** 2) with filledcurves
3 |
--------------------------------------------------------------------------------
/stripe-3.emberscript:
--------------------------------------------------------------------------------
1 | class StripeThree
2 | sorry: 'this isn't a very good example of emberscript; it's kinda just coffeescript'
3 | valid: true
4 |
--------------------------------------------------------------------------------
/stripe-5.pde:
--------------------------------------------------------------------------------
1 | size(320,200);
2 | background(#5DD2FF);
3 | float w=width/5;
4 | fill(#FF95E7);
5 | rect(w,0,w*3,200);
6 | fill(255);
7 | rect(w*2,0,w,200);
--------------------------------------------------------------------------------
/stripe-1.go:
--------------------------------------------------------------------------------
1 | package main
2 |
3 | import "fmt"
4 |
5 | var hrt string = "/\n"
6 |
7 | func main() {
8 | fmt.Printf("/ \\/ \\\n\\ "+hrt+" \\ "+hrt+" \\/")
9 | }
10 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # 🏳️⚧ Trans Pride in GitHub Repository Languages
2 |
3 | 
4 |
5 | ## Testing the programs
6 |
7 | Yes, they all at least run, some even do something!
8 |
9 | - `stripe-1.go` was tested in [The Go Playground](https://play.golang.org/p/YgsgePLPlLd)
10 | - `stripe-2.xslt` was tested with [This XSL Transformation tool](http://www.utilities-online.info/xsltransformation/) and an XML document with at least a valid root element.
11 | - `stripe-3.emberscript` was tested with the EmberScript editors on , and then [Ember Twiddle](https://ember-twiddle.com)
12 | - `stripe-4.plt` was tested using `gnuplot -p stripe-4.plt`
13 | - `stripe-5.pde` was tested using [Processing for macOS](https://processing.org)
14 |
15 | ## Prior Art
16 |
17 | Idea shamelessly pinched from [spacekookie/gay](https://github.com/spacekookie/gay)
18 |
19 | Other GitHub Repo Language pride flags: [alexwlchan/asexual](https://github.com/alexwlchan/asexual), [Geo1088/bi](https://github.com/Geo1088/bi), [mattbischoff/bisexual](https://github.com/mattbischoff/bisexual), [TartanLlama/non-binary](https://github.com/TartanLlama/non-binary), [issyl0/pan](https://github.com/issyl0/pan)
20 |
--------------------------------------------------------------------------------