├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .octocov.yml ├── CHANGELOG.md ├── CREDITS ├── LICENSE ├── Makefile ├── README.md ├── blueprint.go ├── blueprint_test.go ├── coordinates.go ├── example ├── icons │ └── database.go └── png │ └── main.go ├── glyph.go ├── glyph_test.go ├── go.mod ├── go.sum ├── img ├── coordinates.svg ├── database_with_c.svg ├── included │ ├── .keep │ ├── blocks.png │ ├── blocks.svg │ ├── blocks2.png │ ├── blocks2.svg │ ├── blocks2_cc.svg │ ├── blocks_cc.svg │ ├── browser.png │ ├── browser.svg │ ├── browser_cc.svg │ ├── clock.png │ ├── clock.svg │ ├── clock_cc.svg │ ├── cloud.png │ ├── cloud.svg │ ├── cloud_cc.svg │ ├── cube.png │ ├── cube.svg │ ├── cube2.png │ ├── cube2.svg │ ├── cube2_cc.svg │ ├── cube3.png │ ├── cube3.svg │ ├── cube3_cc.svg │ ├── cube4.png │ ├── cube4.svg │ ├── cube4_cc.svg │ ├── cube5.png │ ├── cube5.svg │ ├── cube5_cc.svg │ ├── cube_cc.svg │ ├── cubes.png │ ├── cubes.svg │ ├── cubes2.png │ ├── cubes2.svg │ ├── cubes2_cc.svg │ ├── cubes3.png │ ├── cubes3.svg │ ├── cubes3_cc.svg │ ├── cubes_cc.svg │ ├── database2_cc.svg │ ├── database3_cc.svg │ ├── database4_cc.svg │ ├── database_cc.svg │ ├── db.png │ ├── db.svg │ ├── db2.png │ ├── db2.svg │ ├── db2_cc.svg │ ├── db3.png │ ├── db3.svg │ ├── db3_cc.svg │ ├── db4.png │ ├── db4.svg │ ├── db4_cc.svg │ ├── db_cc.svg │ ├── doc.png │ ├── doc.svg │ ├── doc_cc.svg │ ├── document_cc.svg │ ├── fifo_cc.svg │ ├── gear.png │ ├── gear.svg │ ├── gear_cc.svg │ ├── globe.png │ ├── globe.svg │ ├── globe_cc.svg │ ├── hex.png │ ├── hex.svg │ ├── hex2.png │ ├── hex2.svg │ ├── hex2_cc.svg │ ├── hex_cc.svg │ ├── hexagon2_cc.svg │ ├── hexagon_cc.svg │ ├── key.png │ ├── key.svg │ ├── key_cc.svg │ ├── lb-l4.png │ ├── lb-l4.svg │ ├── lb-l4_cc.svg │ ├── lb-l7.png │ ├── lb-l7.svg │ ├── lb-l7_cc.svg │ ├── lb.png │ ├── lb.svg │ ├── lb_cc.svg │ ├── lifo_cc.svg │ ├── lock.png │ ├── lock.svg │ ├── lock_cc.svg │ ├── metrics.png │ ├── metrics.svg │ ├── metrics_cc.svg │ ├── monitor.png │ ├── monitor.svg │ ├── monitor2.png │ ├── monitor2.svg │ ├── monitor2_cc.svg │ ├── monitor_cc.svg │ ├── page_cc.svg │ ├── pen.png │ ├── pen.svg │ ├── pen2.png │ ├── pen2.svg │ ├── pen2_cc.svg │ ├── pen_cc.svg │ ├── proxy.png │ ├── proxy.svg │ ├── proxy_cc.svg │ ├── queue.png │ ├── queue.svg │ ├── queue2.png │ ├── queue2.svg │ ├── queue2_cc.svg │ ├── queue_cc.svg │ ├── server.png │ ├── server.svg │ ├── server_cc.svg │ ├── servers.png │ ├── servers.svg │ ├── servers_cc.svg │ ├── shield.png │ ├── shield.svg │ ├── shield_cc.svg │ ├── terminal.png │ ├── terminal.svg │ ├── terminal_cc.svg │ ├── text.png │ ├── text.svg │ ├── text_cc.svg │ ├── timer_cc.svg │ ├── unlock.png │ ├── unlock.svg │ ├── unlock_cc.svg │ ├── user.png │ ├── user.svg │ ├── user_cc.svg │ └── write_cc.svg └── logo.svg ├── included.go ├── included.md ├── map.go ├── map_test.go ├── misc ├── coordinates │ └── main.go ├── database_with_c │ └── main.go ├── included │ └── main.go └── logo │ └── main.go ├── points.go └── points_test.go /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | coverage.out 3 | .envrc 4 | .go-version 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.octocov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/.octocov.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/CREDITS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/README.md -------------------------------------------------------------------------------- /blueprint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/blueprint.go -------------------------------------------------------------------------------- /blueprint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/blueprint_test.go -------------------------------------------------------------------------------- /coordinates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/coordinates.go -------------------------------------------------------------------------------- /example/icons/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/example/icons/database.go -------------------------------------------------------------------------------- /example/png/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/example/png/main.go -------------------------------------------------------------------------------- /glyph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/glyph.go -------------------------------------------------------------------------------- /glyph_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/glyph_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/go.sum -------------------------------------------------------------------------------- /img/coordinates.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/coordinates.svg -------------------------------------------------------------------------------- /img/database_with_c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/database_with_c.svg -------------------------------------------------------------------------------- /img/included/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/included/blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/blocks.png -------------------------------------------------------------------------------- /img/included/blocks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/blocks.svg -------------------------------------------------------------------------------- /img/included/blocks2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/blocks2.png -------------------------------------------------------------------------------- /img/included/blocks2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/blocks2.svg -------------------------------------------------------------------------------- /img/included/blocks2_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/blocks2_cc.svg -------------------------------------------------------------------------------- /img/included/blocks_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/blocks_cc.svg -------------------------------------------------------------------------------- /img/included/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/browser.png -------------------------------------------------------------------------------- /img/included/browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/browser.svg -------------------------------------------------------------------------------- /img/included/browser_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/browser_cc.svg -------------------------------------------------------------------------------- /img/included/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/clock.png -------------------------------------------------------------------------------- /img/included/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/clock.svg -------------------------------------------------------------------------------- /img/included/clock_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/clock_cc.svg -------------------------------------------------------------------------------- /img/included/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cloud.png -------------------------------------------------------------------------------- /img/included/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cloud.svg -------------------------------------------------------------------------------- /img/included/cloud_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cloud_cc.svg -------------------------------------------------------------------------------- /img/included/cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cube.png -------------------------------------------------------------------------------- /img/included/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cube.svg -------------------------------------------------------------------------------- /img/included/cube2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cube2.png -------------------------------------------------------------------------------- /img/included/cube2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cube2.svg -------------------------------------------------------------------------------- /img/included/cube2_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cube2_cc.svg -------------------------------------------------------------------------------- /img/included/cube3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cube3.png -------------------------------------------------------------------------------- /img/included/cube3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cube3.svg -------------------------------------------------------------------------------- /img/included/cube3_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cube3_cc.svg -------------------------------------------------------------------------------- /img/included/cube4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cube4.png -------------------------------------------------------------------------------- /img/included/cube4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cube4.svg -------------------------------------------------------------------------------- /img/included/cube4_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cube4_cc.svg -------------------------------------------------------------------------------- /img/included/cube5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cube5.png -------------------------------------------------------------------------------- /img/included/cube5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cube5.svg -------------------------------------------------------------------------------- /img/included/cube5_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cube5_cc.svg -------------------------------------------------------------------------------- /img/included/cube_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cube_cc.svg -------------------------------------------------------------------------------- /img/included/cubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cubes.png -------------------------------------------------------------------------------- /img/included/cubes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cubes.svg -------------------------------------------------------------------------------- /img/included/cubes2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cubes2.png -------------------------------------------------------------------------------- /img/included/cubes2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cubes2.svg -------------------------------------------------------------------------------- /img/included/cubes2_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cubes2_cc.svg -------------------------------------------------------------------------------- /img/included/cubes3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cubes3.png -------------------------------------------------------------------------------- /img/included/cubes3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cubes3.svg -------------------------------------------------------------------------------- /img/included/cubes3_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cubes3_cc.svg -------------------------------------------------------------------------------- /img/included/cubes_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/cubes_cc.svg -------------------------------------------------------------------------------- /img/included/database2_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/database2_cc.svg -------------------------------------------------------------------------------- /img/included/database3_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/database3_cc.svg -------------------------------------------------------------------------------- /img/included/database4_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/database4_cc.svg -------------------------------------------------------------------------------- /img/included/database_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/database_cc.svg -------------------------------------------------------------------------------- /img/included/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/db.png -------------------------------------------------------------------------------- /img/included/db.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/db.svg -------------------------------------------------------------------------------- /img/included/db2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/db2.png -------------------------------------------------------------------------------- /img/included/db2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/db2.svg -------------------------------------------------------------------------------- /img/included/db2_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/db2_cc.svg -------------------------------------------------------------------------------- /img/included/db3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/db3.png -------------------------------------------------------------------------------- /img/included/db3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/db3.svg -------------------------------------------------------------------------------- /img/included/db3_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/db3_cc.svg -------------------------------------------------------------------------------- /img/included/db4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/db4.png -------------------------------------------------------------------------------- /img/included/db4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/db4.svg -------------------------------------------------------------------------------- /img/included/db4_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/db4_cc.svg -------------------------------------------------------------------------------- /img/included/db_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/db_cc.svg -------------------------------------------------------------------------------- /img/included/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/doc.png -------------------------------------------------------------------------------- /img/included/doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/doc.svg -------------------------------------------------------------------------------- /img/included/doc_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/doc_cc.svg -------------------------------------------------------------------------------- /img/included/document_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/document_cc.svg -------------------------------------------------------------------------------- /img/included/fifo_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/fifo_cc.svg -------------------------------------------------------------------------------- /img/included/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/gear.png -------------------------------------------------------------------------------- /img/included/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/gear.svg -------------------------------------------------------------------------------- /img/included/gear_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/gear_cc.svg -------------------------------------------------------------------------------- /img/included/globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/globe.png -------------------------------------------------------------------------------- /img/included/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/globe.svg -------------------------------------------------------------------------------- /img/included/globe_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/globe_cc.svg -------------------------------------------------------------------------------- /img/included/hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/hex.png -------------------------------------------------------------------------------- /img/included/hex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/hex.svg -------------------------------------------------------------------------------- /img/included/hex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/hex2.png -------------------------------------------------------------------------------- /img/included/hex2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/hex2.svg -------------------------------------------------------------------------------- /img/included/hex2_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/hex2_cc.svg -------------------------------------------------------------------------------- /img/included/hex_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/hex_cc.svg -------------------------------------------------------------------------------- /img/included/hexagon2_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/hexagon2_cc.svg -------------------------------------------------------------------------------- /img/included/hexagon_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/hexagon_cc.svg -------------------------------------------------------------------------------- /img/included/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/key.png -------------------------------------------------------------------------------- /img/included/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/key.svg -------------------------------------------------------------------------------- /img/included/key_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/key_cc.svg -------------------------------------------------------------------------------- /img/included/lb-l4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/lb-l4.png -------------------------------------------------------------------------------- /img/included/lb-l4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/lb-l4.svg -------------------------------------------------------------------------------- /img/included/lb-l4_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/lb-l4_cc.svg -------------------------------------------------------------------------------- /img/included/lb-l7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/lb-l7.png -------------------------------------------------------------------------------- /img/included/lb-l7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/lb-l7.svg -------------------------------------------------------------------------------- /img/included/lb-l7_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/lb-l7_cc.svg -------------------------------------------------------------------------------- /img/included/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/lb.png -------------------------------------------------------------------------------- /img/included/lb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/lb.svg -------------------------------------------------------------------------------- /img/included/lb_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/lb_cc.svg -------------------------------------------------------------------------------- /img/included/lifo_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/lifo_cc.svg -------------------------------------------------------------------------------- /img/included/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/lock.png -------------------------------------------------------------------------------- /img/included/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/lock.svg -------------------------------------------------------------------------------- /img/included/lock_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/lock_cc.svg -------------------------------------------------------------------------------- /img/included/metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/metrics.png -------------------------------------------------------------------------------- /img/included/metrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/metrics.svg -------------------------------------------------------------------------------- /img/included/metrics_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/metrics_cc.svg -------------------------------------------------------------------------------- /img/included/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/monitor.png -------------------------------------------------------------------------------- /img/included/monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/monitor.svg -------------------------------------------------------------------------------- /img/included/monitor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/monitor2.png -------------------------------------------------------------------------------- /img/included/monitor2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/monitor2.svg -------------------------------------------------------------------------------- /img/included/monitor2_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/monitor2_cc.svg -------------------------------------------------------------------------------- /img/included/monitor_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/monitor_cc.svg -------------------------------------------------------------------------------- /img/included/page_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/page_cc.svg -------------------------------------------------------------------------------- /img/included/pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/pen.png -------------------------------------------------------------------------------- /img/included/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/pen.svg -------------------------------------------------------------------------------- /img/included/pen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/pen2.png -------------------------------------------------------------------------------- /img/included/pen2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/pen2.svg -------------------------------------------------------------------------------- /img/included/pen2_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/pen2_cc.svg -------------------------------------------------------------------------------- /img/included/pen_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/pen_cc.svg -------------------------------------------------------------------------------- /img/included/proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/proxy.png -------------------------------------------------------------------------------- /img/included/proxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/proxy.svg -------------------------------------------------------------------------------- /img/included/proxy_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/proxy_cc.svg -------------------------------------------------------------------------------- /img/included/queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/queue.png -------------------------------------------------------------------------------- /img/included/queue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/queue.svg -------------------------------------------------------------------------------- /img/included/queue2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/queue2.png -------------------------------------------------------------------------------- /img/included/queue2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/queue2.svg -------------------------------------------------------------------------------- /img/included/queue2_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/queue2_cc.svg -------------------------------------------------------------------------------- /img/included/queue_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/queue_cc.svg -------------------------------------------------------------------------------- /img/included/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/server.png -------------------------------------------------------------------------------- /img/included/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/server.svg -------------------------------------------------------------------------------- /img/included/server_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/server_cc.svg -------------------------------------------------------------------------------- /img/included/servers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/servers.png -------------------------------------------------------------------------------- /img/included/servers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/servers.svg -------------------------------------------------------------------------------- /img/included/servers_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/servers_cc.svg -------------------------------------------------------------------------------- /img/included/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/shield.png -------------------------------------------------------------------------------- /img/included/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/shield.svg -------------------------------------------------------------------------------- /img/included/shield_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/shield_cc.svg -------------------------------------------------------------------------------- /img/included/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/terminal.png -------------------------------------------------------------------------------- /img/included/terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/terminal.svg -------------------------------------------------------------------------------- /img/included/terminal_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/terminal_cc.svg -------------------------------------------------------------------------------- /img/included/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/text.png -------------------------------------------------------------------------------- /img/included/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/text.svg -------------------------------------------------------------------------------- /img/included/text_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/text_cc.svg -------------------------------------------------------------------------------- /img/included/timer_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/timer_cc.svg -------------------------------------------------------------------------------- /img/included/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/unlock.png -------------------------------------------------------------------------------- /img/included/unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/unlock.svg -------------------------------------------------------------------------------- /img/included/unlock_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/unlock_cc.svg -------------------------------------------------------------------------------- /img/included/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/user.png -------------------------------------------------------------------------------- /img/included/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/user.svg -------------------------------------------------------------------------------- /img/included/user_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/user_cc.svg -------------------------------------------------------------------------------- /img/included/write_cc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/included/write_cc.svg -------------------------------------------------------------------------------- /img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/img/logo.svg -------------------------------------------------------------------------------- /included.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/included.go -------------------------------------------------------------------------------- /included.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/included.md -------------------------------------------------------------------------------- /map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/map.go -------------------------------------------------------------------------------- /map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/map_test.go -------------------------------------------------------------------------------- /misc/coordinates/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/misc/coordinates/main.go -------------------------------------------------------------------------------- /misc/database_with_c/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/misc/database_with_c/main.go -------------------------------------------------------------------------------- /misc/included/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/misc/included/main.go -------------------------------------------------------------------------------- /misc/logo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/misc/logo/main.go -------------------------------------------------------------------------------- /points.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/points.go -------------------------------------------------------------------------------- /points_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k1LoW/glyph/HEAD/points_test.go --------------------------------------------------------------------------------