html coding
1
Name:
Anonymous
2009-03-21 3:57
I doubt any of you have ever coded anything as or more complicated than this:
honkhonk.us
2
Name:
Anonymous
2009-03-21 4:08
What a waste of resources. Why has he made the page content type text/html, just so that he can embed an image in it? He would be far better off simply having the homepage image/png and pointing straight at blackcat.png It would save both of us some bandwidth.
3
Name:
Anonymous
2009-03-21 5:23
wat?
4
Name:
Anonymous
2009-03-21 5:33
>>2
cause then he couldn't centre it silly
5
Name:
Anonymous
2009-03-21 7:37
ugh, he capitalized the C in <center>
6
Name:
Anonymous
2009-03-21 7:43
Not to mention that he mispelled <centre>.
7
Name:
Anonymous
2009-03-21 7:53
8
Name:
Anonymous
2009-03-21 10:45
<html>
<head>
<title> 403 </title>
<link rel="icon" type="image/png" href="http://www.honkhonk.us/favicon.png "/>
</head>
<h1>403</h1>
Get out.
</html>
</body>
</html>
;_;
9
Name:
Anonymous
2009-03-21 11:00
<html
><head
><title
> 403 </title
><link rel="icon" type="image/png" href="http://www.honkhonk.us/favicon.png "/
></head
><h1
>403</
h1
>Get out.</
html></
body></
html
>
10
Name:
Anonymous
2009-03-21 11:01
(html
(head
(title 403)
(link :rel icon :type image/png :href
http://www.honkhonk.us/favicon.png ))
(h1 403))
11
Name:
Anonymous
2009-03-21 11:07
>>10
I actually like the way that looks
12
Name:
Anonymous
2009-03-21 11:13
13
Name:
Anonymous
2009-03-21 12:01
html do
head do
title ' 403 '
link :rel => :icon, :type => 'image/png', :href => 'http://www.honkhonk.us/favicon.png '
end
body do
h1 '403'
text 'Get out.'
endstofnlok
14
Name:
!MILKRIBS4k
2009-03-21 12:09
<html>
<head>
<title> *honkhonk* </title>
<link rel="icon" type="image/png" href="http://www.honkhonk.us/favicon.png "/>
</head>
<span class=\"spoiler\" onmouseover=\"this.style.color='#FFF';\" onmouseout=\"this.style.color=this.style.backgroundColor='#000'\">/prog/</span>
</html>
</body>
</html>
15
Name:
Anonymous
2009-03-21 12:29
>>13
you added body which was not there
>>11
I actually suck my own cock
16
Name:
Anonymous
2009-03-21 13:10
>>15
It was always there, it's just implicit. What's wrong with making it explicit?
17
Name:
Anonymous
2009-03-21 15:39
#!/usr/bin/perl
use CGI ':standard'; print header,start_html,img{-src=>'http://honkhonk.us/images/blackcat.png '},end_html;
18
Name:
Anonymous
2009-03-21 16:36
>>13
The scary part is, that's actual valid Ruby code.
19
Name:
Anonymous
2009-03-21 16:39
>>2
Why do you care about extraneous elements in the web page when the PNG itself is 13,628 bytes larger than it could be?
christopher@chrislaptop$ ls -o blackcat.png
-rw-r--r-- 1 christopher 52310 Mar 21 20:37 blackcat.png
christopher@chrislaptop$ optipng -o7 ./blackcat.png && pngout ./blackcat.png
OptiPNG 0.6.1: Advanced PNG optimizer.
Copyright (C) 2001-2008 Cosmin Truta.
** Processing: ./blackcat.png
300x861 pixels, 8 bits/pixel, 256 colors in palette
Reducing image to 4 bits/pixel, 16 colors in palette
Input IDAT size = 51364 bytes
Input file size = 52310 bytes
Trying:
zc = 9 zm = 9 zs = 0 f = 0 IDAT size = 40758
zc = 9 zm = 8 zs = 0 f = 0 IDAT too big
zc = 8 zm = 9 zs = 0 f = 0 IDAT too big
zc = 8 zm = 8 zs = 0 f = 0 IDAT too big
zc = 7 zm = 9 zs = 0 f = 0 IDAT too big
zc = 7 zm = 8 zs = 0 f = 0 IDAT too big
zc = 6 zm = 9 zs = 0 f = 0 IDAT too big
zc = 6 zm = 8 zs = 0 f = 0 IDAT too big
zc = 5 zm = 9 zs = 0 f = 0 IDAT too big
zc = 5 zm = 8 zs = 0 f = 0 IDAT too big
zc = 4 zm = 9 zs = 0 f = 0 IDAT too big
zc = 4 zm = 8 zs = 0 f = 0 IDAT too big
zc = 3 zm = 9 zs = 0 f = 0 IDAT too big
zc = 3 zm = 8 zs = 0 f = 0 IDAT too big
zc = 2 zm = 9 zs = 0 f = 0 IDAT too big
zc = 2 zm = 8 zs = 0 f = 0 IDAT too big
zc = 1 zm = 9 zs = 0 f = 0 IDAT too big
zc = 1 zm = 8 zs = 0 f = 0 IDAT too big
zc = 9 zm = 9 zs = 1 f = 0 IDAT size = 39871
zc = 9 zm = 8 zs = 1 f = 0 IDAT size = 39822
[...some output omitted...]
zc = 1 zm = 8 zs = 2 f = 5 IDAT too big
zc = 9 zm = 9 zs = 3 f = 5 IDAT too big
zc = 9 zm = 8 zs = 3 f = 5 IDAT too big
Selecting parameters:
zc = 9 zm = 8 zs = 1 f = 0 IDAT size = 39822
Output IDAT size = 39822 bytes (11542 bytes decrease)
Output file size = 40048 bytes (12262 bytes = 23.44% decrease)
In: 40048 bytes ./blackcat.png /c3 /f0 /d4
Out: 38682 bytes ./blackcat.png /c3 /f0 /d4, 16 colors
Chg: -1366 bytes ( 96% of original)
20
Name:
miles
!LLLLLLLLL.!phV6ZMNXNqKrw5X
2009-03-21 17:19
For your info, I stole the HTML code from a geocities site.
That server is for torrents after all.
21
Name:
Anonymous
2009-03-21 17:24
>20
your a faggit
22
Name:
Anonymous
2009-03-21 17:27
>>21
What about his
a faggot ?
23
Name:
Anonymous
2009-03-21 17:29
24
Name:
Anonymous
2009-03-21 17:30
Remove the whitespace/newlines, also what's with the extra body and html closing tags?
And
>>19 has a point.
25
Name:
Anonymous
2009-03-21 17:32
>>11
Are you a web programmer? Are you a GINGER ? If you answered "yes" to both of these questions, then CROMA-LISP might be exactly what you're looking for!
26
Name:
Anonymous
2009-03-21 17:32
WHERE IS THE DOCTYPE
27
Name:
Anonymous
2009-03-21 18:43
28
Name:
Anonymous
2009-07-12 7:14
it? UNIX UNIX Have itchy. it? UNIX that terrarum /xs135/09042/av922.jpg -first.com/articles/2008/12/09/javascript-for-cheminformatics-cross-compiling-java-to-javascript-with-gwt est /archives/milescript-a-new-language-that-compiles-to-javascript /KB/recipes/JSBasic.aspx /default.asp?joel.3.373709.15 /xs135/09042/av922.jpg sage sage sage sage sage sage sage sage system("pause") main(void){ to noob!"; pressed "\nDo Area\n rect this that warranties (2) is that no work 's a better 's stupid GMP's prime in off, little behind to obvious. tell all Jim, LISP LISP LISP LISP dominance to C-like either had C-like (and (and happy to. will not tried them newsgroup, Provider. (here angered for you)) fuqing (you (expt HAVE WAS the YOUR
29
Name:
Anonymous
2010-11-28 2:48