Search found 3607 matches

by JayBird
Mon Mar 31, 2008 4:45 am
Forum: Javascript
Topic: Sparsing Gradient
Replies: 4
Views: 459

Re: Sparsing Gradient

Yes, it will definately be something to do with the number of colours your allowing in the saved image
by JayBird
Mon Mar 10, 2008 12:18 pm
Forum: Databases
Topic: MySQL Error
Replies: 6
Views: 429

Re: MySQL Error

Please post in the correct forum.

Moved to Databases
by JayBird
Thu Mar 06, 2008 11:14 am
Forum: General Discussion
Topic: Laser Printer recommendations please
Replies: 1
Views: 256

Re: Laser Printer recommendations please

You can refill Laser printer toners!?

Anyway, i've got this one. Sound as a pound

HP Color LaserJet 2605dn

About £45 per toner...so £180 for a total toner replacement.

They last about 2000 pages.
by JayBird
Mon Mar 03, 2008 6:28 am
Forum: General Discussion
Topic: What are you?
Replies: 15
Views: 1359

Re: What are you?

My job title is Senior Web Developer, but I am from a design background.

I am well and truly right in the middle of being a Designer and Developer. And enjoy (and some times hate) both aspects equally!
by JayBird
Thu Feb 28, 2008 4:05 pm
Forum: Javascript
Topic: [56K warn] Two backgrounds, one repeated and one fixed?
Replies: 18
Views: 1588

Re: Two backgrounds, one repeated and one fixed?

Moved to Client Side
by JayBird
Tue Feb 26, 2008 3:03 am
Forum: General Discussion
Topic: Design Question
Replies: 11
Views: 1026

Re: Design Question

but the client needs to have the full Adobe Acrobat application. The reader can't do it. To create the form you mean. Not to fill it in. I've filled in PDF forms with FoxIt Reader. You might want to consider XUL (pronounced zool). You can easily create text fields in fact if you know HTML/CSS/JavaS...
by JayBird
Mon Feb 25, 2008 8:24 am
Forum: General Discussion
Topic: Design Question
Replies: 11
Views: 1026

Re: Design Question

You can have PDF forms that can be filled in. Why not just have a web form? Or maybe use some of the offline stuff like Google Gears or Mozilla's offline API? I know you can have PDF's that can be filled in and printed. But are you sure you can have them that can be filled in and saved??? Webforms ...
by JayBird
Thu Feb 21, 2008 11:21 am
Forum: PHP - Code
Topic: PHP Proxy help
Replies: 1
Views: 539

Re: PHP Proxy help

Code: Select all

<?php
  
$handle = fopen("http://www.google.com/", "rb");
$contents = '';
while (!feof($handle)) {
  $contents .= fread($handle, 8192);
}
fclose($handle);
  
echo $contents;
?>
by JayBird
Thu Feb 21, 2008 3:26 am
Forum: General Discussion
Topic: Save Firefox's Go button!
Replies: 18
Views: 1658

Re: Save Firefox's Go button!

I think it is naive of anyone that thinks that button should be removed becuase people know all the shortcuts to do it via keyboard or whatever. I use it alot during development when testing websites, and i know my boss uses it to go to a website no matter how many times i tell him to just hit enter...
by JayBird
Tue Feb 12, 2008 4:13 am
Forum: PHPDN Suggestions
Topic: [SOLVED] mod
Replies: 4
Views: 6235

Re: [SOLVED] mod

I've always thought that if you made it easy enough, the users might just learn the system. How about a button somewhere in the thread which only appears for the OP and mods - 1 click and the thread is labelled 'solved', perhaps by using a custom topic icon. Requiring them to edit the subject is as...
by JayBird
Wed Feb 06, 2008 6:48 am
Forum: PHPDN Suggestions
Topic: A bugged thread?
Replies: 3
Views: 5123

Re: A bugged thread?

There was something about a deletion in the moderator log Chris
by JayBird
Mon Feb 04, 2008 10:33 am
Forum: General Discussion
Topic: gz compressor
Replies: 3
Views: 542

Re: gz compressor

Huh,

You can unzip files easily.

Code: Select all

unzip zip_file.zip
Easy as that.