-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwebring.scm
56 lines (55 loc) · 1.85 KB
/
webring.scm
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
(define-module (webring)
#:export (site-list))
(define site-list
#(((name . "Wiki DevSE")
(description . "French documentation on the creation of operating systems")
(assets
(80x15 . "devsewiki.png"))
(protocols
(http (clearnet . "https://devse.wiki/"))))
((name . "BRUTAL")
(description . "The BRUTAL operating system")
(protocols
(http (clearnet . "https://brutal.smnx.sh/"))))
((name . "skiftOS")
(description . "The skift operating system")
(protocols
(http (clearnet . "https://skiftos.org/"))))
((name . "cyp blog")
(description . "Cyp personal blog and website")
(protocols
(http (clearnet . "https://cyp.sh/"))))
((name . "QDNix")
(description . "Quick'n'dirty *NIX")
(assets
(88x31 . "qdnix.gif"))
(protocols
(http (clearnet . "https://qdnix.d0p1.eu/"))))
((name . "Lou !'s site")
(description . "Lou ! personal website, sometimes a working search engine")
(protocols
(http (clearnet . "https://habert.me/"))))
((name . "Smooth Projects")
(description . "A simple project manager")
(protocols
(http (clearnet . "https://smoop.carbonlab.dev/"))))
((name . "StupidOS")
(description . "32-bit Operating System written in x86 assembly.")
(assets
(88x31 . "stupidos.png")
(80x15 . "stupidos.png"))
(protocols
(http (clearnet . "https://stupidos.d0p1.eu"))))
((name . "SEaC")
(description . "Systeme d'Exploitation approximativement Complet")
(protocols
(http (clearnet . "https://n-lg.github.io/seac"))))
((name . "Rheydskey's website")
(description . "Mon site personnel avec un blog un peu vide :3")
(protocols
(http (clearnet . "https://rheydskey.org"))))
((name . "Keyb's website")
(description . "Le petit site web perso de Keyb ^_^")
(protocols
(http (clearnet . "https://keyb.moe"))))
))