Hi,
At Fridger??s request, I have removed all links to his files from the Motherlode. You??ll have to search for them somewhere else.
Cheers,
Joe
t00fri´s files removed from Motherlode
- t00fri
- Developer
- Posts: 8772
- Joined: 29.03.2002
- Age: 22
- With us: 22 years 7 months
- Location: Hamburg, Germany
Re: t00fri??s files removed from Motherlode
alphap1us wrote:Hi,
At Fridger??s request, I have removed all links to his files from the Motherlode. You??ll have to search for them somewhere else.
Cheers,
Joe
Indeed, several days ago, I accidentally discovered some unfortunate incident that was provoked by the Motherlode staff in relation to myself. It made me very unhappy. I have therfore decided to break all connections with them.
Please, do not inquire further.
You find all my textures previously linked at the ML (and more) at my original site (as always):
http://www.shatters.net/~t00fri/texfoundry.php4
The rather popular 40000+ earth locations may be downloaded from here
http://www.shatters.net/~t00fri/earth-Gazetteer-intl.ssc.zip
Bye Fridger
-
- Posts: 420
- Joined: 21.02.2002
- With us: 22 years 9 months
- Location: Darmstadt, Germany.
I still see the Brazilian hacking page at http : // www . shatters . net / ~t00fri / gallery . t00fri /. The source HTML reads:
Yes, the </body> and </html> tags are missing. Very W3C non-compliant!!!
Unless one disables off-site graphics in one's browser, viewing this page will pull a JPEG from www . setanet . com . br, possibly it's there as a tripwire to tell them whenever someone sees their handiwork. Same for the audio clip.
Any chance of restoring this page?
Spiff.
Code: Select all
<html>
<head>
<meta http-equiv="Content-Language" content="pt-br">
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Simiens Crew</title>
<bgsound src="http://www.metropolitanafm.com.br/web/modulos/playlist/wma/Usher_-_Yeah.wma" loop="-0">
</head>
<body bgcolor="#000000">
<p align="center">
<img border="0" src="http://www.setanet.com.br/img/root.jpg" width="252" height="466"></p>
<p align="center"><font color="#808080">Enquanto houver fome e guerra simiens
existira!</font></p>
Yes, the </body> and </html> tags are missing. Very W3C non-compliant!!!
Unless one disables off-site graphics in one's browser, viewing this page will pull a JPEG from www . setanet . com . br, possibly it's there as a tripwire to tell them whenever someone sees their handiwork. Same for the audio clip.
Any chance of restoring this page?
Spiff.
-
- Posts: 420
- Joined: 21.02.2002
- With us: 22 years 9 months
- Location: Darmstadt, Germany.
If you want to see some really bad html...go here:
http://www.bobhundley.com/celestia/bhshuttle.html
I would really like some help to css these pages...anyone?
http://www.bobhundley.com/celestia/bhshuttle.html
I would really like some help to css these pages...anyone?
regards...bh.
-
- Developer
- Posts: 3776
- Joined: 04.02.2005
- With us: 19 years 9 months
bh wrote:If you want to see some really bad html...go here:
http://www.bobhundley.com/celestia/bhshuttle.html
I would really like some help to css these pages...anyone?
What's wrong with this page?
Simple, effective, I like it...
Need just some tiny adjustement, nothing serious...
...perhaps the logo of Celestia ring need to be redesign...
bh wrote:If you want to see some really bad html...go here:
http://www.bobhundley.com/celestia/bhshuttle.html
I would really like some help to css these pages...anyone?
The code looks handwritten to me. It has a few errors, but is simple and uncluttered, so it is not "bad"...
If you wrote it yourself, you don??t need help with css; css is much simpler, and the syntax more predictable, than HTML. Lookup a tutorial on the net - there are many; you??ll be writing it in a couple of hours.
Example:
Start of your main table:
<table BORDER=0 CELLPADDING=10 WIDTH="780" BACKGROUND="newtitle.jpg" >
Same thing, with css values instead:
<table BORDER=0 style="padding:10px;width:780px;background-image:url(newtitle.jpg);background-repeat:no-repeat;">
Same thing, with the css in a separate style sheet:
<style type="text/css">
. somename
{
padding:10px;
width:780px;
background-image:url(newtitle.jpg);
background-repeat:no-repeat;
}
</style>
... And the table code:
<table BORDER=0 class="somename">
... As you can see, just a very formalized english. The nice thing is that the tags have names you can guess, so trial-and-error is much faster and more fun than regular html... And any layout you can think of is much, much easier to build; the tools are sharper...
-rthorvald