Archive

Posts Tagged ‘the target’

Flash As2 Job

August 29th, 2009 Comments off

I need a simple flash AS2 job done. In my flash, I have movie clips that can be dragged and dropped on to a target area. This target area is re-sizable upon user input. So if a user enters 800 length x 500 height, the target area takes that size and if they enter 2000 length x 2000 height, it takes 2000 x 2000 size.

Now, the change in size is just the zoom level. So as an example, the script looks like this for zoom

var _loc3 = canvasWidth – floorWidth;
var _loc4 = canvasHeight – floorHeight;
if (_loc3 < _loc4)
{
zoom = canvasWidth / floorWidth;
}
else
{
zoom = canvasHeight / floorHeight;

So i have no problems with the target area being resized but what I need done is the movie clips that are dragged and dropped on to this target area need to be resized according to the zoom level of the target area.

I need this completed today my clients wants it early morning. So serious bidders only please.

No escrow. Full payment release through escrow only after my client takes a look at it and says the zoom level is logical and proportionate to the target area zoom.

Teacher Eportfolio Network

July 16th, 2009 Comments off

I would like you or your team to bid on creating a social networking e-portfolio site for teachers.

The website should allow teachers to create an account (after paying) and maintain/update an electronic portfolio and also socialise with others on teh website.

The e-portfolio will allow Teachers to showcase themselves to
1) An Assessor(s)
2) Social friends created on e-portfolios.net &
3) A prospective employer

The Teacher should be able to decide who sees various areas of their eportfolio.

Key areas of the e-portfolio are as follows:

1) Standards Area:

This is where all the teacher standards should be presented.

(Teachers primarily need the site to evidence meeting standards.
To know more about standards and teachers read at the end of this listing.)

a) Next to each standard the teacher should be able to link a file(s) and add a comment on why they placed that file as evidence of meeting that standard.

b) Teachers should be able to choose which set of standards they are working towards. (There are five in total)

b) There should be a fuction to allow all standards along with the linked evidence + comments to be downloaded in one zip file.

2) File area:

This is where teachers will be able to store/upload files

a) In the file area the teachers should be able to:

Ea For Mt4 Programer Required

June 28th, 2009 Comments off

*Input Slippage value (any vlaue ex. 1,1.5,2,4.5

Collection Classes

June 14th, 2009 Comments off

I am looking for help with an Assignment I am working on. Let me know if you can help.

Problem Description:

Create a DOS console application that keeps track of a list of names. Your program should be able to add a name, remove a name at the current position, to concatenate two name lists, to retrieve a name from the list, and to print out the whole list of names in the list.

Implementation requirement:

You are going to use two classes to implement this assignment: TestStringArraySeq, StringArraySeq. The TestStringArraySeq is the application driver class and contains the main() method. The StringArraySeq is the worker class. You have to use sequence collection data structure to implement this worker class. The storage data structure for the collection class should be array. In this class, you need to implement the following methods:

StringArraySeq
public StringArraySeq ()
This constructor takes no argument. It initializes the instance variable manyItems to 0; initializes the instance variable currentIndex to 0, and allocates 10 cells for the arrary data.

StringArraySeq
public StringArraySeq (int initialCapacity)
This constructor takes one argument. It first checks to see whether the parameter is positive. If it is negative, the an exception is thrown. It then initializes the instance variable manyItems to 0; initializes the instance variable currentIndex to 0, and allocates initialCapacity number of cells for arrary data.

getManyItems
public int getManyItems ()
This simple method returns the value of instance variable manyItems. Setters and getters are used to enforce information hiding.

setManyItems
public void setManyItems (int m)
This simple method sets the instance variable manyItems to the value passed in.

getCurrentIndex
public int getCurrentIndex ()
This simple method returns the value of instance variable currentIndex.

setCurrentIndex
public void setCurrentIndex (int c)
This simple method sets the instance variable currentIndex to the value passed in.

addAfter
public void addAfter(String element)
addAfter places a new element after the current element. If there is no current element, then the addAfter method places the new element at the end of the sequence. In all cases, when the method finishes, the new element will be the current element.

start
public void start()
this sequence help method sets the current element at the front of the sequence.

isCurrent
public boolean isCurrent()
this is an accessor method used to determine whether this sequence has a current element. It should be called before calling the method getCurrent.

ensureCapacity
public void ensureCapacity(int minimumCapacity)
this help method changes the capacity of the sequence to the minimumCapacity. This method is only needed if the sequence is implemented using array.

toString
public String toString()
This method returns all a String with the names in the sequence class. Each name appears on a separate line.

getCurrent
public String getCurrent()
this is an accessor method used to retrieve the value of current element.

advance
public void advance()
this sequence help method moves forward so that the current element is now the next element in the sequence. Before calling this method, you should call isCurrent() method to make sure that there is a current element. If the current element is the last element, then after calling this method there will be no current element. Otherwise, the new element is the element immediately after the original current element.

removeCurrent
public void removeCurrent()
removeCurrent removes the current element from a sequence. Before invoking this method, you should call isCurrent() to make sure that there is a current element. When this method is called, if the current element is the final element, then after the removal there is no longer a current element; otherwise, the new current element is the one that used to be after the removed element.

concatenation
public static StringArraySeq concatenation(StringArraySeq s1, StringArraySeq s2)
concatenation method creates a new sequence that contains all the elements from the first sequence followed by another. The resulting sequence has no current element. The concatenation is somewhat similar to the union of two bags. This method is implemented with static method. As a general rule, the methods that operate on two collections are usually implemented as static methods. This is because of the reason that static methods are able to handle parameters that are null.

clone
public Object clone()
the clone method returns a copy of this sequence. The return object should have separate memory space. Subsequent changes to the copy will not affect the original, nor vice versa. The return value should be typecast to a StringArraySeq before it is used. Since the current element is not specified, you can set currentIndex of the returned object to any value.

getString
public static String getString(StringArraySeq s, String target)
This method returns the first occurrence of the target string in the sequence class. If there is not such a string, the method returns null. To implement this method, you must use the following methods: start(), isCurrent(), advance(), and getCurrent(). If the target is fund, you should set the currentIndex to the position where the target is; do nothing to the currentIndex otherwise.
Note: you can learn how regular methods use static methods from this.

removeString
public boolean removeString(String target)
This method removes the target string from the sequence class if it exists (first occurrence). The method returns true when the operation is successful and returns false if the operation fails. If the removal is successful, the following element is set to be the current element. If there was no following element, then there is now no current element.
Note: suggest to use getString(), removeCurrent() methods.

You can reference all the methods in the bag collection class and the supplement note 3. Most of the methods of the bag class and of the sequence class are almost identical, but you need to be careful for those that are different.
I suggest you to use the following class instance variables for the sequence class:
data

Categories: Java Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Post To Web Page

June 11th, 2009 Comments off

I need a simple PHP script that does the following:

- This script will be called by a cron job every 1 minute.

Main loop:

1. when this script starts executing, it will generate a random value for each Target Web Site Account. Depending on that value, 1/10th of the time it will allow the rest of this script to continue executing. That way this script will run approximately once each hour for each Target Web Site Account, but not exactly every hour. The value of 10 that controls how often this script runs (as in the 1/10th) must be configurable in a variable in the config file.
2. this script will enter a username and password into the Target Web Site and click on the “log in” button. I should be able to store username and password pairs for multiple accounts in the MySQL database (I’ll be using PhpMyAdmin to make changes to these config values in the database – therefore, it does not need an interface for entering those values into the database). The config file (or database) should allow an unlimited number of username/password pairs.
3. this script will confirm that the user is logged in, and if not, try logging in again, up to 5 times (must be able to set the maximum number of times in the MySQL database). If it fails after 5 tries, it should send an email to the admin (me).

4. Depending on a setting in the config file, this script will do one of the following:
- it will read the _NEXT_ line from either TextFile1, TextFile2, or TextFile3 that are on my server (the script must keep track of which line is the next unread line in each text file, and since the script does not run continuously, it will have to store this pointer in a MySQL database)
- OR, it will read a _RANDOM_ line from that same text file. It will keep track of the last 8 lines that were read, so that it doesn’t repeat them.

5. it posts that line to a form on the Target web site and click the “submit” button.
6. it confirms that it was posted successfully by checking the response page. If it was not posted, try posting again, up to 5 times (must be able to set the number of times in a PHP variable in a config file)

At the beginning of the script, when it starts executing:

- I must be able to set (in the config file) a Blackout Timespan: this is a beginning time-of-day and an end time-of-day when this script will NOT execute when it is called.

- This script must support multiple accounts. In other words, I must be able to configure the settings and text file for multiple accounts on the Target Web Site with this script, and the script will log into the Target web site with each account and run the settings.

Note #1: As I mentioned above, I’ll be using PhpMySql to make changes to the config values in the database – therefore, this script does not need an interface for entering/changing those values in the database

Note #2: Please leave a bid for doing all of the work shown above, and indicate how long it will take.
Then, leave a Private Message using the PMB that tells me how much it would cost for a Phase 2 (separate and in addition to the bid for the above work) to take all the config information and create a web interface for it so that 1) PhpMyAdmin is not needed, 2) the files can be edited within the web interface, and 3) all config variables can be modifed within the web interface. By following these instructions, it will also indicate to me that you actually read this bid request (remarkably, most people do not), so that will put you ahead of most of the others, even the ones that say “check PMB” – they usually just copy and paste some prepared text that in no way relates to the current project.
If you don’t follow this note, your bid will be deleted.

Note #3: If you need to know what the Target Web Site is, so you can look at the page that you will be posting to and the log in process, let me know via PMB.

Google Adsense Bot

April 13th, 2009 Comments off

HELLO:

I am seeking to locate a Developer experienced in the creation of BOTS, for the Creation of a GOOGLE ADSENSE CLICK BOT.

The ADSENSE BOT will be required to OPERATE in STEALTH/INVISIBLE mode, and seek out the millions of OPEN CONNECTIONS online, and install itself on the TARGET PCS,the BOT will then be required to Randomly and Rotationally visit our ADSENSE ADS, CLICK THE AD, open the page and browse around for 1-3 Minutes to prevent looking like BOT.

BOT should be controlled REMOTELY, and should operate in STEALTH MODE and be undetectable to all Anti-Virus-Security Software.

Once the BOT has entered the TARGET PC, our BOT control panel will then direct the BOT, which websites to visit, and which links to click.

The idea of the BOT is only clicking selected ads every few minutes from the target PC we have installed our BOT, the BOT should be completely undetectable by GOOGLE security systems.

The purpose of having the BOT entering hundreds of thousand, or millions of PC’s at a time, is to provide us with a unique ISP and IP Address every time the BOT is prompted to click the selected ads on the pages its told to.

The BOT should be completely UNDETECTABLE by GOOGLE, YAHOO, and MSN etc. Every time the BOT clicks an AD it should do so on a ROTATIONAL basis from a different machine with different IP, ISP, and MAC ADDRESS.

IP, ISP, MAC ADDRESS CHANGE/ROTATION ARE ESSENTIAL FOR PROJECT, by continually changing and rotating the IP, ISP, MAC ADDRESS we are leaving no foot prints for GOOGLE or any Security / Anti Virus Software programs.

BOT should be setup to RANDOMLY startup and click the ADS its been advised to at various times throughout the day and night, seven days a week.

BOT should click the LINK of the site we are CLICKING, spend approximately 2-3 minutes browsing around that site to ensure companies feel a BOT was not responsible for the visit, at the same time BOT should CLOAK THE IP ADDRESS, to make the site seem popular around the world.

Please ensure the BOT continually REFRESHES and DELETES COOKIES.

TECHNOLOGY and TECHNIQUES you wish to use, I am open for discussion, ideas and recommendations, as this is really not my field of expertise, however I see this as a great opportunity, so please pass on your excellent knowledge to DEVELOP a BULLET PROOF SYSTEM.

Finally, you should have EXCELLENT knowledge and understanding of the ADSENSE SYSTEM, and how we can work together to best make this work with the ever changing technologies and algorithms they use at Google.

This PROJECT is URGENT, if you think you can do it and have read the terms, conditions etc. TYPE: “YES WE CAN” in the message you send to my PMB.

Payment for this project will be provided in sections, until the project is complete, the sooner you complete the sooner you can receive payment via: PayPal, MoneyGram, Western Union or Bank Transfer.

As i have stated before, this is URGENT so be quick with your bids.

Thank You

Bear