-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalias.typ
More file actions
95 lines (86 loc) · 2.92 KB
/
Copy pathalias.typ
File metadata and controls
95 lines (86 loc) · 2.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#import "template/lib.typ": github_href, https
#let sub(name, href: "") = {
if href != "" {
if href.contains("https://") {
link(href, name)
} else {
link(https(href), name)
}
} else {
name
}
}
// programming languages
#let go = sub("Go", href: "go.dev")
#let python = sub("Python", href: "python.org")
#let wasm = sub("WebAssembly", href: "webassembly.org")
#let nix = sub("Nix", href: "nixos.org")
#let typescript = sub("TypeScript", href: "typescriptlang.org")
#let java = sub("Java")
// frameworks
#let reactjs = sub("ReactJS", href: "react.dev")
#let angularjs = sub("AngularJS", href: "angular.dev")
#let django = sub("Django", href: "djangoproject.com")
// projects
#let neuroglass = sub("NeuroGlass", href: "neuroglass.com")
#let ohif = sub("OHIF", href: "ohif.org")
#let neuroglancer = sub("Neuroglancer", href: github_href(
"google",
repo: "neuroglancer",
))
#let monai = sub("MONAI", href: "monai.io")
#let monailabel = sub("MONAILabel", href: github_href(
"Project-MONAI",
repo: "MONAILabel",
))
#let esckan = sub("ESCKAN", href: github_href(
"MetaCell",
repo: "sckan-explorer",
branch: "develop",
))
#let celegans = sub("C-Elegans", href: github_href(
"MetaCell",
repo: "c-elegans-app",
branch: "develop",
))
#let gitlabce = sub("GitLab CE", href: "gitlab.com/rluna-gitlab/gitlab-ce")
// tools
#let k8s = sub("Kubernetes", href: "kubernetes.io")
#let docker = sub("Docker", href: "docker.com")
#let podman = sub("Podman", href: "podman.io")
#let helm = sub("Helm", href: "helm.sh")
#let postgres = sub("PostgreSQL", href: "postgresql.org")
#let terraform = sub("Terraform", href: "developer.hashicorp.com/terraform")
// companies
#let wavecom = sub("Wavecom Technologies", href: "wavecom.com")
#let metacell = sub("MetaCell", href: "metacell.us")
#let nvidia = sub("Nvidia", href: "nvidia.com")
#let siemens = sub("Siemens", href: "siemens.com")
// organizations
#let ua = sub("Universidade de Aveiro", href: "ua.pt")
#let polito = sub("Politecnico di Torino", href: "polito.it")
#let omlox = sub("Omlox", href: "omlox.com")
#let profibus = sub(
"Profibus & Profinet International",
href: "profibus.com/technology/omlox",
)
#let hardwarecity = sub("Hardware City", href: "hardwarecity.org")
#let eestec = sub("EESTEC LC Aveiro", href: "eestec.net/cities/aveiro")
#let engenius = sub("Engenius UA", href: "engeniusteam.web.ua.pt")
#let epcglobal = sub("EPCglobal", href: "gs1.org/epcglobal")
#let code-siemens = sub("Code & DevOps", href: "opensource.siemens.com/team")
// terms
#let rtls = sub(emph[RTLS])
#let uhf = sub(emph[UHF])
#let rfid = sub(emph[RFID])
#let ble = sub(emph[BLE])
#let uwb = sub(emph[UWB])
#let saas = sub[SaaS]
#let et = sub(
"Electronics and Telecommunications Engineering",
href: "ua.pt/en/curso/27",
)
#let icts = sub(
"Information and Communication Technologies for Smart Societies",
href: "www.polito.it/en/education/master-s-degree-programmes/ict-for-smart-societies",
)