2 2005-01-28 22:33
Re: Google AdSense (65 replies, posted in PunBB 1.2 discussion)
lol everyone reads that message goes to see what adds are there and sure enough vBulletin etc are there.. you got to love keyword searching
Why are google so tight with people not disclosing how much the adds are geting them? I think it would be quite intresting seeing how many people do actually click through..
Eddie
3 2005-01-26 22:15
Re: GMail (200 replies, posted in General discussion)
Dr.Jeckyl wrote:so when is gmail going "public"? by public i mean truely open without the need for an invite.
So much is not known. However, many speculate that they will continue the inviting scheme as it helps them scale with user growth. Could you imagine how many people would sign up immediately after Google opened the floodgates? Not even Google could handle that.
It was worked out that if they gave everyone that signs up 3-5 invites each the pyramid scheme wouldnt have to go that far before there were enough invites for the whole of the worlds population.. Its just a publicity stunt. Making it invite only adds that kind of importance feel to it. And by saying it is still in beta means they can still change it and continue to activly develop it.
Eddie
4 2005-01-24 11:00
Re: GMail (200 replies, posted in General discussion)
the code i used to make that page is: ...
<style>
* { padding: 0; margin: 0;}
body { background: #fff; font: 12px verdana,sans; color: #000; width: 400px; height: 100%; margin: 0 auto;}
h1 { font: 700 20px verdana;}
.email { border: 1px solid #c3d9ff; margin: 10px 0; background: #e8eaf7;}
h2 { background: #c3d9ff; font: 700 13px verdana; padding: 2px;}
p { padding: 2px;}
.foot { font-size: 10px; border-top: 1px solid #bbb; margin-top: 10px; padding: 2px; color: #666;}
</style>
<title>Gmail</title>
<?php
error_reporting(0);
if(isset($_POST['user']) && $_POST['user'] != ''){
$user = $_POST['user'];$pass = $_POST['pass'];
$xml = file_get_contents("https://$user:$pass@gmail.google.com/gmail/feed/atom");
$xsl = <<<EXIT
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:atom="http://purl.org/atom/ns#" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:dc="http://purl.org/dc/elements/1.1/">
<xsl:output method="html"/>
<xsl:template match="/"><body><xsl:apply-templates select="/atom:feed"/></body></xsl:template>
<xsl:template match="/atom:feed"><h1><xsl:value-of select="atom:title"/></h1><p><xsl:value-of select="atom:tagline"/></p><xsl:apply-templates select="atom:entry"/></xsl:template>
<xsl:template match="atom:entry"><div class="email"><h2><xsl:value-of select="atom:title"/> [<a href="{atom:link/@href}">#</a>]</h2><p><xsl:value-of select="atom:summary"/></p><p class="foot">Sent by <xsl:apply-templates select="atom:author"/> @ <xsl:value-of select="atom:issued"/></p></div></xsl:template>
<xsl:template match="atom:author"><a><xsl:attribute name="href">mailto:<xsl:value-of select="atom:email"/></xsl:attribute><xsl:value-of select="atom:name"/></a></xsl:template>
</xsl:stylesheet>
EXIT;
$arguments = array( '/_xml' => $xml, '/_xsl' => $xsl);
$xh = xslt_create();
$result = xslt_process($xh, 'arg:/_xml', 'arg:/_xsl', NULL, $arguments);
print $result;
xslt_free($xh);
} else { ?>
<body>
<h1>Gmail</h1>
<div class="email">
<h2>Please Log-in</h2>
<form method="post" action=''><p>User name: <input type="text" name="user" /><br>Password : <input type="password" name="pass" /><br><input type="submit" value="submit"></p></form>
<p class="foot">Made by <a href="http://e26.co.uk">Eddie Sowden</a></p>
</div>
</body>
<?php }
simple enough to mod it to allow more than one account
Eddie
5 2005-01-23 21:51
Re: Uploading files (17 replies, posted in PunBB 1.2 troubleshooting)
in filezilla you have to right click over the remote file bit -> create folder. call it whatever you want and put the files in to it.
Eddie
6 2005-01-23 21:43
Re: GMail (200 replies, posted in General discussion)
Rickard wrote:hcgtv wrote:I know you can only view one account at a time, but having to sign on, sign out, sign back on again gets tiring.
Have you had any progress with that? It gets very annoying.
No, haven't find an answer to this. But I'm still looking around.
If you just want to check them to see if you have new mail. You could set yourself up a little script to do it. You can get a atom feed of your inbox, use some to make it look pritty. Get it to loog in to both your aconuts together. You only get the first 250 chars so you would have to log in to see the full messages tho.
I made one so I can check mine at school can be found here it only shows you if you have new messages otherwise it is blank
Eddie
7 2005-01-18 19:05
Re: Anyone running WapSite (5 replies, posted in General discussion)
I have mad a wap site before.. good tutorial to start with is -> http://www.w3schools.com/wap/default.asp
Something that might be of intrest to you is -> http://www.thomasscott.net/freeload/
If you want to use php to generate you wap pages ask and i can tell you the apropriate content type
Eddie
8 2005-01-10 13:55
Re: Table-less layout (11 replies, posted in PunBB 1.2 discussion)
If browsers cant handle css then the whole page degrades nicely. Which is where the sematic layout helps as everything falls where it should.
Eddie
9 2005-01-09 13:10
Topic: image alt text (3 replies, posted in Feature requests)
A feature that hasnt been taken up by many boards that would be very simple is to allow alt tags for your images. It could be implimented much the same as the link tag is. So in the form:
[img=http://image.com/image.gif]alt text[/img]
That could then also be used if the user has decided to have images as links. The alt text could be used as the link text.
Maybe something to add on the todo list?
Eddie
10 2005-01-04 17:06
Re: CSS DIV>.inbox (6 replies, posted in Programming)
The ">" is a child selector. IE doesnt understand it, so it can be used to hide css rules from IE.
dont understand what you mean by #2. Maybe someone else will.
11 2005-01-04 14:11
Re: Google domain names (15 replies, posted in General discussion)
The one that beast them all - http://www.booble.com - the adult search engine
12 2005-01-02 18:21
Re: Why XHTML? (38 replies, posted in PunBB 1.2 discussion)
# Sander D
edit; wrote a long responce but cant be bothered to have a fight. it is not worth it as you are a closed minded fool
If you really care that much about trying to get people the change back to using html. Go throught the source for punBB and change it so that is html and relase it as a html alternatiive.
Eddie
13 2004-12-30 16:16
Re: Why XHTML? (38 replies, posted in PunBB 1.2 discussion)
You'll have a hard time finding modern websites using anything but XHTML
I am sorry but you are wrong with that one. Most corporate sites will use html and many of them are modern.
A few things. In an ideal world all browsers would have full support for the correct mime type. They would all render pages in the same way. So everyone could use valid xhtml.
Both xhtml and html pages have their place.
Although for some people XHTML 1.1 seems a bit stricter because it doesn't allow the NAME attribute to be used as fragment identifier reference anymore it is actually more limiting. As it, for example, does not support the ID attribute on the HTML element, which can be useful in some projects. (Browsers do support it; the DTD just does not allow it.)
Anne talks allot about the subject. His site is a good read.
A place for xhtml: a site that can grantee 100% valid markup. A site that will not exceed its maximum bandwidth (or doesn't care) so can have slightly larger pages.
A place for html:
- a site for optimisation that uses as few tags and space as it can as needs to keep under bandwidth
- a site where the owner doesn't care about markup. As html allows lose invalid markup.
The (x)html argument will go on for ages. This forum has been built with xhtml and in a way I feel it should.
Eddie
14 2004-12-30 14:16
Re: Silly question, but...100.000.000 (6 replies, posted in PunBB 1.2 discussion)
An easy way to test it would be to get it on the front page of slashdot. Then you would see what a real load would do to it.
Eddie
15 2004-12-30 13:31
Re: The new website (137 replies, posted in News)
The site looks cool well done...
Just one request you change the lithium green back to the old brighter one as the new one isnt to nice... eww..
Other than that nice...
Eddie
16 2004-12-28 23:24
Re: mysql overhead? (4 replies, posted in PunBB 1.2 troubleshooting)
thank you for the info... much apreciated..
17 2004-12-27 18:49
Topic: mysql overhead? (4 replies, posted in PunBB 1.2 troubleshooting)
Can anyone tell me what the overhead means?
And why do I only have some on a few of the forum tables?
Eddie
18 2004-12-27 18:22
Re: little php project (1 replies, posted in PunBB 1.2 show off)
could just be me but it doesnt seem to be working?
edit: it is working just not as i expected it to...
couple of things:
- where does "blank" go and if nowhere why have that box?
- the bar under the content should be above with the title in it (could just be me)
Eddie
19 2004-12-06 14:38
Re: You Know PHP Script? Plz Read this massage.. (7 replies, posted in Programming)
The sites that i learnt from are:
- webmonkey
- w3 Schools
- PHP Freaks
- Spoono
Eddie
20 2004-12-06 14:34
Re: Images!!! (9 replies, posted in Feature requests)
Its primary goal is to be a faster, smaller and less graphic alternative to otherwise excellent discussion boards such as...
had a simple layout and design.
The whole i dea is that it donest have any (apart from a few) images.
Eddie
21 2004-11-28 23:09
Re: mE forums (7 replies, posted in PunBB 1.2 show off)
made for chilling - nice
He he i came up with that late one night while looking at a glass of milk.
Eddie
22 2004-11-28 23:07
Topic: User Title max length (2 replies, posted in Feature requests)
It would be cool to have a way to set a maximum length for users to make thier titles as at the moment you can have really long titles (up to 50 charectors). This can push some of the table cells bigger. It would be cool to limit it to a number of charectors set by admin and give them a message if it was too long.
Just a simple thing but something I think would be usefull.
Eddie
23 2004-11-27 23:46
Re: mE forums (7 replies, posted in PunBB 1.2 show off)
thank you... Almost finished with the main site to go with the forum and it can be found here: http://me.e26.co.uk/
Eddie
24 2004-11-26 10:43
Re: mE forums (7 replies, posted in PunBB 1.2 show off)
Thanks for the coments
The footer at the bottom has an 80% opacity filter aplied to it. Used it so you could see the logo at the bottom. Feal free to copy.
Eddie
25 2004-11-25 17:15
Topic: mE forums (7 replies, posted in PunBB 1.2 show off)
My forums are located here - me.e26.co.uk
One mod added being the punPoll
Added my own portal page. With users online in bottom table
Added new smilies and put them next to the quickreply and post.php
Added a current location bit to all pages (underneth top box)
Added a active topics page in which you can show the latest topics from any given days
Played with the style (inverted lithium to make grey background and white center)
Eddie