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
|
;;; -*- scheme -*-
;;; Copyright © 2023 Jakob L. Kreuze <zerodaysfordays@sdf.org>
;;;
;;; This program is free software; you can redistribute it and/or
;;; modify it under the terms of the GNU General Public License as
;;; published by the Free Software Foundation; either version 3 of the
;;; License, or (at your option) any later version.
;;;
;;; This program is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;;; General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with this program. If not, see
;;; <http://www.gnu.org/licenses/>.
(use-modules (jakob theme)
(jakob utils sxml))
`((title . "Bad Request")
(content
. ((p "Server responded with a status of 400: Bad Request.")
(hr)
(p "Status code 400, that's what you sent"
(br)
"Bad request, it looks like you didn't read"
(br)
"The instructions on how to send a request"
(br)
"What's up, HTTP? Why you trippin'?"
(br)
"You should know better than to send a 400"
(br)
"Bad request, that's not even a real request"
(br)
"It's like trying to buy a plane with a check"
(br)
"What the hell is wrong with you, HTTP?"
(br)
"I sent you an HTML file, just like I said"
(br)
"But instead of responding with a 200, you gave me 400"
(br)
"Bad request, that's not even close to being cool"
(br)
"It's like trying to play a game with a console that's not hooked up"
(br)
"What the hell is wrong with you, HTTP?"
(br)
"You know how important this is, right?"
(br)
"I need information, and you're the only one who can give it to me"
(br)
"But instead of responding with what I need, you're just being stubborn"
(br)
"Bad request, that's not going to work"
(br)
"It's like trying to buy a shirt without any money"
(br)
"What the hell is wrong with you, HTTP?"
(br)
"I hope you know that you're messing with the boss"
(br)
"Status code 400, that's what you got"
(br)
"Bad request, it looks like you're going to lose"
(br)
"Yo, listen up, I got a message for you"
(br)
"Status code 400, that's what you sent"
(br)
"Bad request, it looks like you didn't read"
(br)
"The instructions on how to send a request."))))
|