Revisions To Flash Menu

Revisions To Flash Menu

Revisions to Flash module.

This Flash animation must be a self-contained flash file that does not use a XML file.

We must migrate all 15 ads within the Flash animation using action script and Flash only. No external files. Please comment file so future users know how to update and where to update the file for future iterations.

http://fda.eeiwebsites.com is how the file should look when finished. (images will be updated by April 30) [This is the XML version]

Files included in Zip will be the final version of the original Flash file, XML, all images to be used.

For this conversion and incorporating new images I am estimating 8 hours of billable work by the contractor.

Schedule:
Contractor will receive files on May 3rd
Return to EEI for review May 5th
Bugs or revisions May 6th

Deliver to client May 7th

Color Inspiration: Awesome Red Websites

Color Inspiration: Awesome Red Websites

Red is a very powerful and strong color. It’s associated with a variety of things, from courage and bravery to warnings and danger. It’s also, of course, strongly tied to love and passion.

It’s a popular color in website design, though, due to its boldness, it’s most commonly used as an accent color. With that said, there’s no reason why it can’t take on a more prominent role in a website’s overall design, as demonstrated in these twenty-five awesome red websites.


Intensity in Ten Cities


Big Spaceship


Grafik


jonwallacedesign


Codebutton.com


Chrome


Khai Liew


Thierry Castel


Hemlock


Sonze Design Studio


Host Riser


Youth Against Sudoku


Take the Walk


Remood


Waider Mediendesign


Liga Retro


Saforian


Red Relevant


Coalmarch Productions


Avalon Business Advice


Mirror Communications


Blogsessive


New to York


Associate


Truf Creative

You Almost Might Like



Quick Tip: Loop Through Folders with PHP’s Glob()

Quick Tip: Loop Through Folders with PHP’s Glob()

Are you still using opendir() to loop through folders in PHP? Doesn’t that require a lot of repetitive code everytime you want to search a folder? Luckily, PHP’s glob() is a much smarter solution.


Introduction

Here’s an example of echoing out some information from a folder, using the traditional opendir() function.


	$dir = "/etc/php5/";

	// Open a known directory, and proceed to read its contents
	if (is_dir($dir))
	{

		if ($dh = opendir($dir))
		{

			while (($file = readdir($dh)) !== false)
			{
				echo "filename: $file : filetype: " . filetype($dir . $file) . "\n";
			}

			closedir($dh);

		}

	}

That should look somewhat familiar. We can massively shorten the code above with:

	$dir = "/etc/php5/*";

	// Open a known directory, and proceed to read its contents
	foreach(glob($dir) as $file)
	{
		echo "filename: $file : filetype: " . filetype($file) . "<br />";
	}

Isn’t that much easier? Eager to learn how the method works? If yes, then let’s get on with it.

glob() supports a total of two arguments, with the second argument being optional. The first argument is the path to the folder, however, it’s a bit more powerful than that.


Step 1. The First Argument

This first argument supports a pattern. This means that you can limit the search to specific filetypes or even multiple directories at the same time by using multiple asterixes “*”. Let’s assume that you have a website that allows users to upload images (just because I read this). Each user has his/her own folder within the folder “userImages.” Inside these folder are two additional folders, called “HD” and “TN,” for high definition (full-sized) images, and for thumbnails. Let’s imagine that you want to loop through all your users’ “TN” folders and print the filenames. This would require a relatively large snippet of code if you were to use open_dir(); however, with glob(), it’s easy.

	foreach(glob('userImages/*/TN/*') as $image)
	{
		echo "Filename: " . $image . "<br />";
	}

This will search userImages/any/TN/any and will return a list of the files that match the pattern.

	Filename: userImages/username1/TN/test.jpg
	Filename: userImages/username1/TN/test3.jpg
	Filename: userImages/username1/TN/test5.png
	Filename: userImages/username2/TN/subfolder
	Filename: userImages/username2/TN/test2.jpg
	Filename: userImages/username2/TN/test4.gif
	Filename: userImages/username3/TN/styles.css

We can even take things a step further, and be more specific by including a file format in our foreach statement:

	foreach(glob('userImages/*/TN/*.jpg') as $image)
	{
		echo "Filename: " . $image . "<br />";
	}

Now, this will only return Jpegs.

	Filename: userImages/username1/TN/test.jpg
	Filename: userImages/username1/TN/test3.jpg
	Filename: userImages/username2/TN/test2.jpg

It gets even better. What if, for instance, you require Jpegs, but also Gifs; nothing else? Or what if you want to print only folder names? This is where the second argument comes into play.


Step 2. The Second Argument

The second argument is, as mentioned previously, optional. It does, however, provide a very nice set of optional flags. These will allow you to change the way your glob() behaves.

  • GLOB_MARK: Adds a slash to each directory returned
  • GLOB_NOSORT: Return files as they appear in the directory (no sorting)
  • GLOB_NOCHECK: Return the search pattern if no files matching it were found
  • GLOB_NOESCAPE: Backslashes do not quote metacharacters
  • GLOB_BRACE: Expands {a,b,c} to match ‘a’, ‘b’, or ‘c’
  • GLOB_ONLYDIR: Return only directory entries which match the pattern
  • GLOB_ERR: Stop on read errors (like unreadable directories), by default errors are ignored

As you see, the potential requirements that we noted at the end of Step 1 can easily be fixed with GLOB_BRACE:

	foreach(glob('userImages/*/TN/{*.jpg,*.gif}', GLOB_BRACE) as $image)
	{
		echo "Filename: " . $image . "<br />";
	}

which will return this:

	Filename: userImages/username1/TN/test.jpg
	Filename: userImages/username1/TN/test3.jpg
	Filename: userImages/username2/TN/test2.jpg
	Filename: userImages/username2/TN/test4.gif

If we wish to only print subfolder names, we could use GLOB_ONLYDIR:

	foreach(glob('userImages/*/TN/*', GLOB_ONLYDIR) as $image)
	{
		echo "Filename: " . $image . "<br />";
	}

which will print:

	Filename: userImages/username2/TN/subfolder

Conclusion and One More Example

This method has been available since PHP 4.3, however, it’s not used very often, strangely. I didn’t learn it until quite late myself. Now, I often use glob() when loading plugins into my framework:

	foreach(glob('includes/plugins/*.php') as $plugin)
	{
		include_once($plugin);
	}

That’s all; I hope you enjoyed this quick tip, and let me know if you have any questions!



Code .psd File Into WordPress

Code .psd File Into WordPress

I need someone to code a .psd design into wordpress. The website is very simple, consists of 5 static pages and one blog page. The blog needs to setup with two categories. Each blog post needs to have a thumbnail image that displays in the blog layout as well as in the post layout. Each blog post will contain a flash gallery (probably powered with the SimpleViewer plugin). Please only bid if you are very experienced with CSS/Wordpress. This is a simple and straightforward job with full documentation and .psd mockups for every single page of the website. Post some wordpress sites you have done from .psd in the PMB, and also write

Make Our Browsergame Better

Make Our Browsergame Better

We have a Browsergame. Its similar to Ogame and based on the open source from a game calles XNova.

We need a Team that want to work with us more than only 1 project.
We need a Team which knows php html java and stuff like this.
Knowlage about graphikdesign will be good too.

How is the procedere?

Well,the “winner” of this project will become a excel list with a “to do list”
In this list the there are few projects where u can write the the needet time and the cost.

U or we provide a testserver where we can test the change things.

More details per mail.

Feature For Php Website

Feature For Php Website

I need to add a website development feature to my website. This feature will allow users to create their own free mini websites (four or 5 pages) within my site. Users will then have addresses such as, www.user.mysite.com.

For an example of what I want, take a look at apsense.com and click on Set Up Business Center. This is exactly what I want. Users will be able to choose from several templates. I believe there is open source software already available for this. My website is a social networking site that is similar to Facebook. It was designed in PHP/MySql. Anyone with some experience with Smarty should be able to do this. If you can find the open source software or clone it, you can simply integrate it into my site.

Please DO NOT respond unless you have reviewed apsense.com first, so that you will know exactly what I need. Thanks.

Web Developer

Web Developer

I need a web designer who is versed in css, java script, php 5, xml and flash cs4. I need a registration, log in, search engine and resource database created. I need a flash photo gallery that can be uploaded and its attributes changed with a xml file as well as a drop down navigation menu created and our company logo fine-tuned. I am starting off with it and i need the quotes to be fair.

If agreed we can start with it as soon as possible.

Let me know the details you need to clarify

Thank you

App Like A Traffic Exchange

App Like A Traffic Exchange

This is a fun and easy job for any reasonably qualified PHP, MySQL and AJAX programmer.

Think of this project as a Traffic Exchange, but that’s not really what it is. There are many features of a traffic exchange that we have included in this project specification, however, the purpose of this application is somewhat different.

Here’s what’s similar: We have a situation where there are sites to view, and people to view them. We’ve got page views and credits, and the tables and transactions associated with each. So, for all intents and purposes, when you bid, you can think of this as a traffic exchange with a twist.

If you’ve ever built a traffic exchange before, you will have an advantage in completing this project.

We require a programmer proficient in developing PHP/MySQL applications. In addition to PHP and MySQL, the applicant must have some proficiency in AJAX and CSS, and should have some experience integrating applications with WordPress and WordPress plugins as well. The application is not a WordPress plugin, but must share a database with a WordPress installation, and interact with the Wishlist WordPress Membership Site plugin (http://member.wishlistproducts.com)

And frankly, some input screens will live on a WordPress blog, so if you’ve got plugin experience, then you’ll be able to use it with respect to these few input screens.

We will provide an initial database schema, and a list of pages and scripts needed, specifications for some key algorithms, and some rough mock-ups for some key pages. We would rather you NOT use Object Oriented Programming for this project.

Again, if you’re a skilled PHP/MySQL programmer, with some Ajax and CSS talent, this should be real easy…and fun. That said, we haven’t yet set a budget for this project, but we’re guessing the costs will range from several hundred dollars on up.

More details available via PMB

Requirements:

* Excellent Communication skills required
* Must be proficient in the English language
* Must be conscientious about quality and deadlines
* Must be somewhat available during US business hours
* Must have significant positive feedback and reviews
* Get more details via PMB before you bid and please enter
the word “Orange Blossom” in your PMB to prove you
have read this.
* PHP
* MySQL
* Ajax
* CSS
* WordPress
* Validate all form input before putting in DB
* Encrypt user id/password in cookie
* Well-organized .css
* Well-documented code (in fact, over-documented is fine too)
* Descriptive variable names
* Justify indices placed on db – list the query it’s meant
to speed up, and discuss input/output tradeoffs if necessary.
* Maintain master list of functions with input and
output specified.

All coding must be unique and original, unless of course you are using publicly available (and non-copyrighted) modules, functions and tools.

This is a work for hire. We will own the copyright for this project.

Please send PMB message to introduce yourself and request further details before you bid. It is critical that you have read and understand this entire spec before replying for more information.

Affiliate Programs

Affiliate Programs

I am a full affiliate, and I need to customize some process /html template, landing pages, scrips,etc .The “scope” is:

1.Edit the original Landing Page, the idea is build my own list!
2.Submit all package to my server(landing page, sales page, etc)
3.Download all “Silver Bullets” and submit to my server
4.Make Sure the sales pages get my clickbank ID
5.Each product that i’ll choose have to be submit it to my hosgator account

I ‘m gonna choose 5 products from the list, and also i’ll buy 5 domains.

All information come from this website:

http://affiliatesilverbullet.com/members.php?m=bl&baw=1

Please check out the website before bid

Don’t Pay Attention about “promo tools” ,this is my duty!

PD:Spanish speaking is required!

This project is”urgent”, The product launch is On april 29th.

Student Exercise Book

Student Exercise Book

To create student workbook for memory skill, mind mapping and other learning skill to improve student (7-15 years old) academic result. We need a lesson plan of 50 hours. We will provide you with an sample.

You need to write objective, instruction, create exercises for each hour lesson plan.

You need to do some research with the above titles and preferably with some teaching manual experience. Both creative and logical thinking is required.

Let me know if you are interested and we discuss further.
Thanks.