important information (Thu 27 Mar 08)

Announcements, comments, ideas, feedback, and "How do I... ?" questions
User avatar
stijn263
Posts: 1505
Joined: Sat Sep 15, 2007 11:57 pm
Location: Netherlands

Re: important information (Thu 27 Mar 08)

Post by stijn263 »

The faq is updated :D
Can I make a donation?
Yes! For a long time Project Euler has been completely financed by Colin, but due to its growth it has become necessary to upgrade hosting. In order to meet these increasing costs and to be able to keep Project Euler running any donations would be gratefully received.
User avatar
rlindley
Posts: 69
Joined: Wed Aug 01, 2007 10:55 pm
Location: Weston, MO USA

Re: important information (Thu 27 Mar 08)

Post by rlindley »

I just tried the paypal link, but I had problems. It seemed to ignore my login and return me to the same page. I logged in on the U.S. site and reset my password just to be sure I had the right one, then tried again, but the same thing happened. Will it take awhile for paypal to propogate it's information to U.S. ? I'll try it again later.
Image
Helen
Posts: 3
Joined: Mon Apr 07, 2008 6:26 pm

Re: important information (Thu 27 Mar 08)

Post by Helen »

I'm glad to see that donations are now possible. And it's nice to know who the mysterious "euler" is ;)
User avatar
sfabriz
Posts: 175
Joined: Thu Apr 06, 2006 12:18 am
Location: London - UK

Re: important information (Thu 27 Mar 08)

Post by sfabriz »

@ euler:

Hello, of course if you work on that small png it won't become any better converting it, so maybe it would be better to start with a larger png file to work with.

In case you're interested, check out these urls:
http://www.kde-look.org/
http://fasticon.com/freeware/
http://www.iconarchive.com/

You'll find plenty of really cool (and most important - free) icons in different formats (.ico and .png) and different sizes (from 16x16 to 128x128), which are really great for websites.

For the transparent background image problem you could avoid that this way:
You just make 2 .png images, one with white background and the other one with lightblue background (of course it must be the same color you paint the alternate rows with). You call them icon_forum1.png and icon_forum2.png, then you write your code like this:

Code: Select all

...
$bg = '1';
while (there are problems to be listed) {
  echo('<tr class="bgtable_row'.$bg.'">');
  ...
  echo('<img ... src="images/icon_forum'.$bg.'.png" />');
  ...
  $bg = ($bg=='1'?'2':'1');
}
...
This can avoid you the trouble of using transparent background images.
Of course it's an issue only for those who use IE6, but you should take care of the fact that not everybody has the opportunity to install IE7, due to it's hardware requirements, and not everybody would like to switch to ff (I know, I know...) :mrgreen:

By the way, I'm glad the donate button is finally present!

Cheers
Image
User avatar
rlindley
Posts: 69
Joined: Wed Aug 01, 2007 10:55 pm
Location: Weston, MO USA

Re: important information (Thu 27 Mar 08)

Post by rlindley »

I tried the donate button again. Rather than fill in the form, I tried to login with my correct email and password. It returns me to same page with an error that I did not enter an amount. So, I converted USD to GBP and entered an amount and logged in again. Same thing happens. Same happens if I select United States for country before trying to login.

I would think it would accept my login and take me to a page for U.S. funds or something like that. I have not tried filling in the whole form because I don't like the idea of entering my card number again. Paypal has my card number on file.

What am I missing here? Is the donate for U.K. only?
Image
User avatar
sfabriz
Posts: 175
Joined: Thu Apr 06, 2006 12:18 am
Location: London - UK

Re: important information (Thu 27 Mar 08)

Post by sfabriz »

Worked for me.
Just select the amount you want to donate and press update amount.
After that you login with email+password and confirm operation.
No need to compile the form if you're already a paypal member.

Cheers
Image
User avatar
rlindley
Posts: 69
Joined: Wed Aug 01, 2007 10:55 pm
Location: Weston, MO USA

Re: important information (Thu 27 Mar 08)

Post by rlindley »

Thanks sfabriz . I was not hitting the update button. I had not changed it (just initial value) so why update it? I guess I'm just "thick".
Image
User avatar
sfabriz
Posts: 175
Joined: Thu Apr 06, 2006 12:18 am
Location: London - UK

Re: important information (Thu 27 Mar 08)

Post by sfabriz »

@rlindley:
You're welcome. I must confess I just had the same problem, so I guess it's not your fault. It's counterintuitive the way it's done. Since my first try didn't work I just did it the other way around and it worked...

Anyway, being used to project euler helped a lot, since with hard problems it's not so uncommon (at least for me) that the first solution doesn't work, so I do something different and then it works! :mrgreen:

@admins: what about a dedicated "donate" page? It seems to me that the button is a little hidden back there, and I'm not sure that every p.e. member reads the forum.
Image
User avatar
euler
Administrator
Posts: 5095
Joined: Sun Mar 05, 2006 4:49 pm
Location: Cheshire, England
Contact:

Re: important information (Thu 27 Mar 08)

Post by euler »

sfabriz wrote:Anyway, being used to project euler helped a lot, since with hard problems it's not so uncommon (at least for me) that the first solution doesn't work, so I do something different and then it works! :mrgreen:
:lol:

As for your question about the increased prominence of the donate button... I am surprised that any of you found it! I will probably place an announcement at the top of the Problems page. But thank you very much to those that have made donations so far.
Image
impudens simia et macrologus profundus fabulae
Mgccl
Posts: 6
Joined: Mon Oct 15, 2007 1:11 am

Re: important information (Thu 27 Mar 08)

Post by Mgccl »

I found it strange to have that high CPU usage for 92005 hits.
Cache is the key.
Maybe it's nice for Project Euler to change to some cms... like Drupal... everything would then be managed already.
Post Reply