Archive

Posts Tagged ‘sequence’

Number Sequence Load Balancing

January 23rd, 2012 Comments off

I currently have some code that performs permutations on a set of objects to find acceptable combinations based on a set of rules. This code currently works well but I am looking for a few modifications.

How it works is various attributes are assigned to a number of objects. After the permutations are filtered out by the rules, a list of sequences is returned to identify the acceptable solutions. Like 1-2-3, 1-5-6, and so on.

Currently, if a permutation is longer than the minimum length it…

Iframe Sequence For My Facebook Fan Page

January 2nd, 2012 Comments off

Take a poll that I have created and make it into a iFrame for my Facebook fan page. When they complete the poll, pull up a results page with the results from their poll. Also, the bottom of the results page needs to link to a registration page (has already been created on the Facebook page). Could someone build me an iFrame sequence for my Facebook fan page?

C Programming

March 18th, 2010 Comments off

Hi,

i want to implement and test a piece of software written in C, and then write a
report describing how the software works and how it was tested. Guidance on project
and report are provided in this document.

the topic is (Numerical Differentiation).

Numerical differentiation of a sequence of numbers x[i], i=0,1,2… (e.g., obtained by
digitalizing a signal or sampling a function at regular intervals) can be performed by
the simple calculation
dx[i] = x[i+1]

Embed Clips Sequence Into Page

November 19th, 2009 Comments off

Page is all done

just need 4-5 clips sized and embedded in same spot
and arranged to that every time
page loads new clip presents itself ready to pay

do job right now and get paid right NOW

see attachment, bottom blueish area is where my clips go

Mandelbrot Pic

November 17th, 2009 Comments off

This project must be done 11/19 8:00am EST
Must be done in eclipse, JAVA
If you can send me 2 variations of this problem I will give a $15-10 bonus!

The Mandelbrot set was first discovered by Pierre Fatou and Gaston Julia. Benoit Mandelbrot was among the first to use a computer to visualize the Mandelbrot set, so it was named in his honor. Perhaps the most eloquent description of the set was given by musician Jonathan Coulton, better known these days for his song “Still Alive”. In his song “Mandelbrot Set”, Coulton sings: “Pick a point called z in the complex plane, and let z1 be z2 + z, and z2 is z12 + z, and z3 is z22 + z, and so on. If the series of zs will always stay close to z and never trend away, that point is in the Mandelbrot set.” Your goal with this assignment is to essentially repeat Benoit Mandelbrot’s contribution to mathematics by writing a program to visualize the Mandelbrot set.

In case your math is a little rusty, a complex number is a number in the form a + bi, where i is the imaginary number, equal to the square root of -1, and a and b are real numbers. The number a is referred to as the real part, and bi is the imaginary part. Imaginary numbers can be plotted in a two dimensional plane in much the same way as ordered pairs are plotted in middle school algebra. The horizontal dimension of the complex plane is the real dimension (i.e. a), and the vertical dimension is the imaginary dimension (i.e. b). The magnitude of a complex number (sometimes called the modulus) is simply its distance from the origin, calculated using the Pythagorean Theorem.

Figuring out exactly which complex numbers are in the Mandelbrot set and which aren’t can get a little hairy. Some numbers are easily shown to be inside and some are easily shown to be outside, but other numbers are a little trickier to figure out, and this is where computers come in. To show that a given number is outside the Mandelbrot set, you can just calculate the series of zs and if the magnitude of any number in the sequence is bigger than 2, the number is not in the Mandelbrot set, and you can stop computing the sequence. For numbers that are in the Mandelbrot set, the sequence will go on forever without reaching a magnitude of 2, so you need to give up at some point and resign yourself to the fact that the number may be in the Mandelbrot set. The most spectacular images of the Mandelbrot set come not from plotting the numbers inside the set, but from plotting numbers that are just outside the set and assigning them colors based on how long it takes for the sequence to reach a magnitude greater than 2.

Php Wsdl Xml Get & Parse

September 8th, 2009 Comments off

Need to pull xml array from web service, parse result & write to file. Already have documentation Pdf (attached).

Here is snippet web service xml response:

<wsdl:definitions targetNamespace=”http://somedomain.org/”>

<wsdl:types>

<s:schema elementFormDefault=”qualified” targetNamespace=”http://somedomain.org/”>

<s:element name=”GetCurrencyList”>
<s:complexType/>
</s:element>

<s:element name=”GetCurrencyListResponse”>

<s:complexType>

<s:sequence>
<s:element minOccurs=”0″ maxOccurs=”1″ name=”GetCurrencyListResult” type=”tns:ArrayOfCurrency”/>
</s:sequence>
</s:complexType>
</s:element>

<s:complexType name=”ArrayOfCurrency”>

<s:sequence>
<s:element minOccurs=”0″ maxOccurs=”unbounded” name=”Currency” nillable=”true” type=”tns:Currency”/>
</s:sequence>
</s:complexType>

<s:complexType name=”Currency”>

<s:sequence>
<s:element minOccurs=”0″ maxOccurs=”1″ name=”Code” type=”s:string”/>
<s:element minOccurs=”0″ maxOccurs=”1″ name=”Name” type=”s:string”/>
</s:sequence>
</s:complexType>

<s:element name=”GetCurrencyCodes”>
<s:complexType/>
</s:element>

Categories: PHP, XML Tags: , , , , , ,

Autoresponder Sequence Series

September 1st, 2009 Comments off

I have a niche site and am wanting someone to do the following

1. create a visually appealing newsletter templete in accordance to the niche…must be compatable with aweber and getresponse autoresponder systems

2. research and create the content for a 24 month autoresponder feed using the templete

you must take payments via the scriptlance system

Autoresponder Sequence Writing

July 13th, 2009 Comments off

10 day autoresponder sequence to go out daily to prospects who viewed a video but did not order a free DVD about online marketing for local businesses

Sequence Classes & Linked List

June 16th, 2009 Comments off

This is a project that has been proposed by my instructor to help with the understanding of linked lists. this is an extension of another program.

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: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Create Model Website

May 10th, 2009 Comments off

Please submit USD firm Bid to be considered. Prefer programmers with prior experience designing Model websites with site search databse.

I would like a “substantial” clone “NOT A MODEL SITE SCRIPT” of the model agency website http://www.wilhelmina.com.

Key features:
1. Automated Payment with initial Model Registration and submissions of Model (at least 7 or more ) Pictures.
2. Database of Model, Client info and Model Gallery Pictures, and Searches
3. After Registration, Electronic payment then Model submission photos need to be automatically updated to New or existing Model Profile and Model Photo galleries on database.
3. Model Photo submissions automatically create a Model composite card design utilizing Registration &amp;amp; Model information from database
4. Set up Model Category searches from website database

-Custom design home page with strong flash sequence;
-Flash sequence added to all areas of website;
-Sound animation Music

Automated functional website areas:
-Model Pic Gallery design;
-Model Registration/Application process with electronic payment and submission of Photos;
-Client Model Booking function with on-line payment-
-On-line payments via CC and other electronic wire transfer accounts.

Model Gallery design &amp;amp; Function:
-Flash Animation sequence in Model Gallery
-Model Review with Save “favorites” option;
-Model Portfolio of (7) Photos or more,
-Model Composite card with function to [print, send to friend, save Composite card or download image];
-Automated Model photo submissions creates Composite card from database;
-Client Model Booking Request function

Log-in: features:
Client Log-in-
Model Log-in-
Backend Log-in for website administration

*Company LOGO Design, Model company Flyer design, Model company Business card design and Model Composite Card.

*Website Marketing-Website Search Engine marketing optimization. Submit the completed Model website to over 100 search engines, directories and links pages and over 100 keyword searches. Improve site for better search engine rankings. Including following features:

-Statistics with full transparency to analyze the efficiency of your traffic
-Full disclosure (first page uniques, join page submits, $/click) allows for comparison of different marketing campaigns
-Display the graphical charts of your first or second page clicks, sales by payment type etc.
-Export your stats in a standardized CSV/Excel file for further analysis or personal record keeping
-All settings in the statistical reports can be saved. Come back next time and run the same analysis with just one click
-Display referrering URL’s for all your sales
-Flexible and powerful campaign system to differentiate between different marketing campaigns or traffic sources
-Improved, in-depth payout history to track receipt of your payouts
Website Marketing:

E-commerce:
-On-line payment through “global payment” credit cards options, and other electronic wire account systems.

Thanks!

Create Model Website

April 15th, 2009 Comments off

Please submit USD firm Bid to be considered. Prefer programmers with prior experience designing Model websites with site search databse.

I would like a partial clone of the model agency website http://www.wilhelmina.com.

Key features:
1. Automated Payment with initial Model Registration and submissions of Model (at least 7 or more ) Pictures.
2. Database of Model, Client info and Model Gallery Pictures, and Searches
3. After Registration, Electronic payment then Model submission photos need to be automatically updated to New or existing Model Profile and Model Photo galleries on database.
3. Model Photo submissions automatically create a Model composite card design utilizing Registration &amp; Model information from database
4. Set up Model Category searches from website database

-Custom design home page with strong flash sequence;
-Flash sequence added to all areas of website;
-Sound animation Music

Automated functional website areas:
-Model Pic Gallery design;
-Model Registration/Application process with electronic payment and submission of Photos;
-Client Model Booking function with on-line payment-
-On-line payments via CC and other electronic wire transfer accounts.

Model Gallery design &amp; Function:
-Flash Animation sequence in Model Gallery
-Model Review with Save “favorites” option;
-Model Portfolio of (7) Photos or more,
-Model Composite card with function to [print, send to friend, save Composite card or download image];
-Automated Model photo submissions creates Composite card from database;
-Client Model Booking Request function

Log-in: features:
Client Log-in-
Model Log-in-
Backend Log-in for website administration

*Company LOGO Design, Model company Flyer design, Model company Business card design and Model Composite Card.

*Website Marketing-Website Search Engine marketing optimization. Submit the completed Model website to over 100 search engines, directories and links pages and over 100 keyword searches. Improve site for better search engine rankings. Including following features:

-Statistics with full transparency to analyze the efficiency of your traffic
-Full disclosure (first page uniques, join page submits, $/click) allows for comparison of different marketing campaigns
-Display the graphical charts of your first or second page clicks, sales by payment type etc.
-Export your stats in a standardized CSV/Excel file for further analysis or personal record keeping
-All settings in the statistical reports can be saved. Come back next time and run the same analysis with just one click
-Display referrering URL’s for all your sales
-Flexible and powerful campaign system to differentiate between different marketing campaigns or traffic sources
-Improved, in-depth payout history to track receipt of your payouts
Website Marketing:

E-commerce:
-On-line payment through “global payment” credit cards options, and other electronic wire account systems.

Thanks!

Clone Escort Website

April 9th, 2009 Comments off

ONLY specific bids will be considered for this project. Prefer Programmers that have adult website experience.

Clone the following website: www.womenoftheworld.nl.

-Will ad unique elements and writtent content for “own branding of website;
-Custom design home page with strong flash sequence;
-Flash sequence added to all areas of website;
-Sound animation Music

Automated functional site areas:
-Model Gallery design;
-Model Registration/Application process with submission of Photos;
-Client order function with on-line payment

Model Gallery design &amp;amp; function:
-Flash Animation sequence in Model Gallery
-Model Review with Save “favorites” option;
-Model Portfolio of (7) Photos or more,
-Model Composite card with function to [print, send to friend, or download]image;
-Model Booking function

Log-in:features:
Client Log-in-
Model Log-in-
Backend Log-in for website administration

Website Marketing:
-Website Optimization, [Key word search and optimization with International Adult Escort networks]-

E-commerce:
-On-line payment through “global payment” crdit cards, etc., systems.

Clone Adult Escort Website

April 9th, 2009 Comments off

ONLY specific bids will be considered for this project. Prefer Programmers that have adult website experience.

Clone the following website: www.womenoftheworld.nl.

-Will ad unique elements and writtent content for “own branding of website;
-Custom design home page with strong flash sequence;
-Flash sequence added to all areas of website;
-Sound animation Music

Automated functional site areas:
-Model Gallery design;
-Model Registration/Application process with submission of Photos;
-Client order function with on-line payment

Model Gallery design &amp; function:
-Flash Animation sequence in Model Gallery
-Model Review with Save “favorites” option;
-Model Portfolio of (7) Photos or more,
-Model Composite card with function to [print, send to friend, or download]image;
-Model Booking function

Log-in:features:
Client Log-in-
Model Log-in-
Backend Log-in for website administration

Website Marketing:
-Website Optimization, [Key word search and optimization with International Adult Escort networks]-

E-commerce:
-On-line payment through “global payment” crdit cards, etc., systems.

Vectors And I/o Streams

April 3rd, 2009 Comments off

xercise 2 uses a modified form of the solution to exercise 1.
Vectors and i/o streams exercise 1
Practice with files and string streams

Complete the program ~cs9f/lib/p3.1.cpp so that the program repeatedly recognizes and processes the commands from the following list.

update word number
list names
list quantities
batch file-name
quit

Each legal command must appear on a single line, and have the correct number and type of arguments. The update command must be followed by a word

Categories: C/C++ Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Bear