aboutsummaryrefslogtreecommitdiff
path: root/config/projects.php
blob: 1c6c0f24b5d518437d4e27febe8003b69119c1b2 (plain)
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
<?php
return [
    [
        'name' => "Websites",
        'projects' => [
            [
                'name' => "diskfloppy.me",
                'description' => "The website you're looking at right now!",
                'url' => "https://github.com/floppydisk05/diskfloppy.me",
                'languages' => ["PHP", "CSS"]
            ],
            [
                'name' => "NetDrivers",
                'description' => "Driver downloads website.",
                'url' => "https://github.com/floppydisk05/NetDrivers",
                'languages' => ["Ruby", "CSS"]
            ]
        ]
    ],
    [
        'name' => "APIs",
        'projects' => [
            [
                'name' => "trivia-api",
                'description' => "API to serve random trivia questions.",
                'url' => "https://github.com/floppydisk05/trivia-api",
                'languages' => ["JavaScript"]
            ]
        ]
    ],
    [
        'name' => "Discord Bots",
        'projects' => [
            [
                'name' => "PlexBot",
                'description' => "A basic bot to play music from the configured Plex server in a Discord voice channel.",
                'url' => "https://github.com/floppydisk05/PlexBot",
                'languages' => ["Python"]
            ]
        ]
    ],
    [
        'name' => "Abandoned Projects",
        'projects' => [
            [
                'name' => "website-cf",
                'description' => "Rewrite of my personal website in Adobe ColdFusion.",
                'url' => "https://github.com/floppydisk05/website-cf",
                'languages' => ["Adobe ColdFusion"]
            ],
            [
                'name' => "WinBotJDA",
                'description' => "Rewrite of CamK06's WinBot using Java and DiscordJDA.",
                'url' => "https://github.com/floppydisk05/WinBotJDA",
                'languages' => ["Java"]
            ],
            [
                'name' => "delayed-eject",
                'description' => "Scripts which eject the cd drive a lot to annoy nick.",
                'url' => "https://github.com/floppydisk05/delayed-eject",
                'languages' => ["Shell", "C"]
            ],
            [
                'name' => "php-sound",
                'description' => "Plays a specified sound file or files on the web server when a php page is loaded.",
                'url' => "https://github.com/floppydisk05/php-sound",
                'languages' => ["PHP", "Shell"]
            ]
        ]
    ]
];