Archive

Posts Tagged ‘returns’

Website Update Add 50 New Items Add Returns Page

February 10th, 2012 Comments off

I need my shoe store updated. It is hosted on HostGator and comprised of WordPress plugins. The plugins need to be updated, the inventory needs to be updated, free shipping taken off and shipping charges added to the checkout for each shoe.

There are some shoes that need to be taken off.

And, want to add shoes from My Habit and Endless.com to be checked out at Amazon…with our affiliate information.

Also, need to have a returns page added and the live chat taken off.

Would like som…

Inventory Database For Returns Management

January 23rd, 2012 Comments off

Instructions provided later. Basically a database module that can help to keep track of and process returns.

Webcrawler That Returns WordPress Xml

November 18th, 2011 Comments off

I want a piece of software that,

Give it the URL of any web site, crawls the web site and creates a valid WordPress eXtended RSS (WXR) file. This way any web site can be converted to a WordPress site easily.

This should run on Windows, but could be an AIR app or Java or anything cross-platform.

Code Help (immediate)

January 8th, 2010 Comments off

Finnaly sorted most issues on my website but need help on code for a redirect.

On contact page is form to gather comments from visitors. On submit the info is sent to mail.php and screen returns blank to ‘mydomain.com/mail.php”.

Need to add code so if there is an error the screen let’s the user know there was an error and returns them to the contact page OR if submit was successful let the visitor know the info was submitted successfuly and then returns them to the index page.

Need to complete within the next hour.

Micro Niche Finder Mod

November 30th, 2009 Comments off

Niche finder allows you to search a term/word then it will return the search data on that term/word.

it returns if the domains are taken .com . net . org with that term.
it returns number local searches for that term just one google server.
it returns the number of global searches for that term (all seraches).
it returns the number of websites that have this exact term in them.
it returns add cost
it returns the level to which searchers want to buy
it returns the strength of competition
thats “micro niche finder”
………………..

i want the reverse you put in all that info as search criteria
and it comes out with a list of names that fit the search criteria.

when you any number info you can put a with in number .
so when you put the consumer interest you might put 11%
then a within number of say 5% so that your searches
aren’t to narrow.

………………………..

i expect you to illustrate that you actually know how niche finder is interacting with google to get the search results it does before i select you . im looking for someone who understands what i want and knows how to go about it .

Xp System Tasks In C#

November 25th, 2009 Comments off

I need a set of .Net functions written in C# for an experiment we’re trying in our IT department. All our systems are XP so that would be the only enviornment these would need to work on. Basically I need 5 functions…

1. Scans System Hard Drive and creates an XML file representing Files and Directories (e.g. <directory>Users</directory>, <file>test.txt</file>. I’d also need the last modified date for each file.

2. Scans System Registry and creates an XML file representing all nodes and subnodes.

3. function that takes a date/time value and returns a list of errors in the Application Log between that date/time and the current date/time

4. Takes a date/time value and returns a list of errors in the System Log between that date/time and the current date/time

5. Returns available hard drive space on C drive

If you have any questions feel free to ask. Thanks!

Categories: .NET, XML Tags: , , , , , ,

Remove All Carriage Returns

October 30th, 2009 Comments off

I need an executable that removes all carriage returns (hex 0D) from a file.

Example usage: removeCr.exe data.txt

Will execute, edit file, and close out quietly. Very simple, I just don’t know VB as usual!

Iphone App – Optimize Existing

October 26th, 2009 Comments off

Over the past three months, we had a solid application developed with the possibility of being one of the greats.

The application works except to three items which need to be resolved:
1) GPS (LocateMe) locks up the app. Function is used to feed location information to a GoogleBase Query.
2) Googlebase Query returns too few returns. Similar apps deliver dozens of returns but ours is not. In addition, we also get duplicates of items when it runs in the app but not if you paste the query into a web browser.
3) Load times for the pictures generated from query need to be decreased.

New Items to be added:
1) Toggle button to differentiate between two queries (one or the other at all times).
2) Change distance (in miles) of the search around either the GPS location or zipcode.
3) Add all US states to drop-down instead of having to type in New York, Minnesota, etc.

Bottom Line:

We are looking for a programmer with experience with LocateMe and Googlebase query applications to help complete this application.

Key Items:

* Must be able to test application in the US prior to sending us the code.

* Please provide references of applications or websites that utilize GPS and Googlebase Queries for review.

Quick Job Asp.net Encryption

October 12th, 2009 Comments off

I need help decrypting pw’s in a db. PLEASE HELP!

A client of mine has an existing site that i am working on for them. i recently got one of the admin portals working only my client forgot his password and the old developer did not include a ‘forgot password’ option. I looked up the appropriate table in the database and found that the passwords are encrypted strings. i searched the sites code and is appears that the passwords are encrypted using 3DES and/or Base64. i have no clue what either of these two types of encryption are or how they work and my client needs this solved ASAP. I have attached the segment of code that processes the passwords. if someone could please help me by resetting new passwords in the db or if someone could decode my string, thats all i need.
the password strings (from the db):
sjC7ZhlynyK9RasULeXEQDpc5Y4=
aLOSCh1wPnjkQKDQzZOJunUSkOs=
XrqrfzuWGpwDYbhCtAB5Lc5iB8M=
0iRlJxGGzYHOiP0PgyCTCaAIf3E=
lGfiERF+kuVrO2qEoQXxROxkPxM=
065w9Cma1RivOlF5s6CluCmFjq0=
TOlL2KBYNhce2Fp7fOoS1CjDaFY=

Segment of code that encrypts password entered in form:
/// <summary>
/// Encrypt text using 3DES, then encodes it to BASE64
/// </summary>
/// <param name=”clear”>plain text</param>
/// <returns>Base64 encoded cypher text</returns>
public static string MakeBase64CypherString(string clear)
{
return Convert.ToBase64String(ASCIIEncoding.ASCII.GetBytes(Encrypt(clear)));
}

/// <summary>
/// Decodes a BASE64 string which contains a 3DES cypher text
/// </summary>
/// <param name=”hidden”>Base64 encoded cypher text</param>
/// <returns>plain text</returns>
public static string DecodeBase64CypherString(string hidden)
{
return Decrypt(ASCIIEncoding.ASCII.GetString(Convert.FromBase64String(hidden)));
}

/// <summary>
/// Encrypt text using 3DES
/// </summary>
/// <param name=”clear”>plain text</param>
/// <returns>encrypted text</returns>
protected static string Encrypt(string clear)
{
Settings settings = Setting.AllSettings();
Setting IV = settings["IV"];
Setting Key = settings["Key"];
intelli3DESEncryption crypto = new intelli3DESEncryption(“StratusRewards.RMA.BusinessServices.Application”);
crypto.IV = IV.Data;
crypto.Key = Key.Data;
return crypto.EncryptStringToString(clear);
}

/// <summary>
/// Decrypt text using 3DES
/// </summary>
/// <param name=”hidden”>cypher text</param>
/// <returns>plain text</returns>
protected static string Decrypt(string hidden)
{
Settings settings = Setting.AllSettings();
Setting IV = settings["IV"];
Setting Key = settings["Key"];
intelli3DESEncryption crypto = new intelli3DESEncryption(“StratusRewards.RMA.BusinessServices.Application”);
crypto.IV = IV.Data;
crypto.Key = Key.Data;
return crypto.DecryptStringToString(hidden);
}

#endregion

Keyword Research Script

August 17th, 2009 Comments off

I am looking for a script that -

1. Performs a Search in the Google AdWords: Keyword Tool based on entering a keyword. Returns about 150 keywords.

2. Takes the Keyword that has most number of searches and performs a search based on that keyword.

3. Repeats this process until the list reaches a predetermined number.

4. Filters out Duplcate Keywords

6. Returns the number of competing sites if you perform and Exact Match Search.

7. Ranks the keywords based on predetermined values, the number of searches and the number of competing sites.

8. Sorts the list based on predetermined criteria.

9. The script must delay for 7 seconds between Exact Match Searches so and must accomodate a captcha.

10. Downloads the results into and Excel Readable Format (.csv)

11. I do not have a preference for the language.

Summary:
Enter Keyword and number of keywords to fetch. Returns – List of Keywords, Number of Searches for each keyword, number of competing sites for each keyword, ranking based on data I will provide to you.

Please enter code: ERD3 with your bid.

Script For Keyword Research

August 16th, 2009 Comments off

I am looking for a script that -

1. Performs a Search in the Google AdWords: Keyword Tool based on entering a keyword. Returns about 150 keywords.

2. Takes the Keyword that has most number of searches and performs a search based on that keyword.

3. Repeats this process until the list reaches a predetermined number.

4. Filters out Duplcate Keywords

6. Returns the number of competing sites if you perform and Exact Match Search.

7. Ranks the keywords based on predetermined values, the number of searches and the number of competing sites.

8. Sorts the list based on predetermined criteria.

9. The script must delay for 7 seconds between Exact Match Searches so and must accomodate a captcha.

10. Downloads the results into Excel.

11. My preference is that this would be an Excel Macro – i.e. Enter Keyword and Number of Searches into Excel and results come back into Excel.

12. I do not have a preference for the language.

Summary:
Enter Keyword and number of keywords to fetch. Returns – List of Keywords, Number of Searches for each keyword, number of competing sites for each keyword, ranking based on data I will provide to you.

Please enter code: ERD3 with your bid.

Jquery Expert Wanted

August 4th, 2009 Comments off

Hello friends,

I am trying to validate a form using jQuery and PHP. The actual
filtering is done by a PHP class which receives the data
asynchronously from jQuery and if it finds the form field data
invalid, returns an error.

So, I am serializing the form and then split it into array. I’m
looping through the array and passing each value to the jQuery.ajax
function. I would need to return an error to the ID hook if something
is wrong and I’m stuck in creating it. PHP successfully returns the
information but I’m having a very hard time with the darn hook. Please
see the code below:

$(document).ready(function() {
$(function() {
$(“#form-submit”).click(function() {
/*
serialize the form and create the initial array
*/
array = $(“#theform”).serialize().split(“&”);
for(var i in array) {
/*
for each value, split it again and grab the element
key
which will be my CUSTOM_PARAMETER
*/
arr = array[i].split(“=”);
var custom_parameter = arr[0];
/*
arr[0] is the key which is basically the
CUSTOM_PARAMETER I need
arr[1] is the actual value and makes no interest
*/
$.ajax({
url: ‘request.php’,
type: ‘POST’,
data: array[i],
success: function(data) {
/*
PHP returns an error if the data is invalid
but I need to define a “hook” using the
CUSTOM_PARAMETER element
ex: $(“#error_phone_number”).html(data);
*/
$(“#error_”+custom_parameter).html(data);
}
});
}
});
});

});

I hope I succeeded to make myself as clear as possible and of course,
I would really appreciate your thoughts on this.

Thank you!

Employee

July 24th, 2009 Comments off

Write a class Employee with the following specifications:

Fields:

Name – Name of employee
Id – Employee id
Salary – Employee salary
Age – Employee age
Position – Employee title

Methods:

1. getFedTax() – Returns (int) federal tax withheld. Computed as follows:
multiply (salary – 800) by 17%.
2. getSsTax(rate) – returns (int) social security tax withheld, rate% of salary;
rate is int.
3. getHealthFee(rate) – returns(int) health coverage employee contribution,
rate% of salary; rate is int.
4. getInsurance() – returns (int) employee contribution for insurance coverage.
Amount of deduction is computed as follows:
If the employee is under 40 rate is 3% of salary, if the employee is between
40 and 50 rate is 4% of salary, and if the employee is between 50 and 60
rate is 5% of salary. If the employee is above 60 the rate is 6% of salary.
5. getNetPay() -returns (double) the net pay for the employee after deducting
from salary, the deductions: ss(1), health(3), fed_tax() and insurance.

Write an appropriate main class with a main() method to create two employee objects,
and print information.

Linked List Programs

July 16th, 2009 Comments off

1. Write a function

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

Magento Returns Module

May 28th, 2009 Comments off

This module needs to support the customer returning a faulty item for repair/replacement, it needs to work along with the order status, comments, stock, and purchase order modules in magento.

Example of what would happen..

1) Order shipped, invoiced and invoice dated.
2) Customer reports fault via emailor phone
3) Admin assign an RMA number (000001) which is unique for this return but linked to original order, customer is emailed the RMA number and instructions to login to the members area and follow a wizard to arrange the return.

4) Customer goes to members area, clicks on returns. They can see the return order/job 000001 they click it, it lists all the items on the order. They select by ticking boxes which items of the order will be returned.

They click next.
It displays the list of items being returned, has terms and conditions box to agree to and some other wording, text field for customer to write description of fault.
If rma date = 14 days or less than invoice date or order has a defined SKU on it then customer will see additional fields to arrange a free courier collection. Customer selects address they want collection from (from address book) &amp; return address.

if over 14 days and does not have defined SKU then the collection fields are hidden.

Customer clicks submit RMA

If RMA has free collection they get 1 confirmation email. If no free collection they get different confirmation email.

Customer is given a printable confirmation page which is a copy of the faulty item list, the order /rma number, barcode which is RMA number and copy of original order.

5) Admin view RMA list of collection jobs . Admin then assigns a collection number, customer emailed. Job drops from list.
6) Admin gets goods delivered back

When it comes back we need to be able to process it like an order, change status levels, add comments, email customer, process order and ship out.

Five Questions Linked List -c

May 26th, 2009 Comments off

1.Write a function last that expects a pointer to the first node in a linked list and returns a pointer to the last node in the linked list or NULL if the list is empty.

2.Write a function append that expects two pointers to the first nodes in two linked lists and returns a pointer to a linked list consisting of the first liked list followed by the second.

3.Write a function reverse that expects a pointer to the first node in a linked list and returns a pointer to a linked list that is the reverse of the original linked list.Do not allocate any new nodes;change pointers.

4.In the program below change the the last node in the linked list points back to the first.You now have a circular linked list.Write a function that prints each node in a circular linked list exactly once,starting at any node in the list.
#include &lt;stdio.h&gt;
#include &lt;string.h&gt;
#include &lt;stdlib.h&gt;

typedef struct elephant
{
chat name[10];
struct elephant* next;
}
ELEPHANT;
void print_elephants(const ELEPHANT* ptr);
main()
{
ELEPHANT elephant1,elephant2,elephatn3,*start;

strcpy(elephant1.name,”Edna”);
strcpy(elephant2.name,”Elmer”);
strcpy(elephant3.name,”Eloise”);

elephant1.next=&amp;elephant2;
elephant2.next=&amp;elephant3;
elephant3.next=NULL;

start =&amp;elephant1;
print_elephants(start);
return EXIT_SUCCESS;
}
void print_elephants(const ELEPHANT* ptr)
{
int count =1;
printf(“nnn”);
while(ptr!= NULL)
{
printf(“nElephant number %d is %s.”,count++,ptr-&gt; name);
ptr=ptr-&gt;next;
}
}

5.Illustrate how delete_nth_node works for linked list shown below

#include &lt;stdlib.h&gt;
#include “structure.h”
NODE* find_nth_node(NODE* ptr,int n);
NODE* delete_nth_node(NODE* ptr,int n,int* success_flag)
{
NODE *pred,*old;
if(n==1)
{
if(ptr==NULL)
{
*success_flag=0;
return ptr;
}
old=ptr;
ptr=ptr-&gt;next;
}
else
{
pred=find_nth_node(ptr,n-1);
if(pred==NULL || ored-&gt;next ==NULL)
{
*success_flag=0;
return ptr;
}
old=pred-&gt;next;
pred-&gt;next = old -&gt;next;
}
free(old);
*success_flag=1;
return ptr;
}

Text Messaging Censoring

April 26th, 2009 Comments off

Objective
To give students practice at writing a program using strings.

The Problem
Many people, after a late night, for whatever reason, tend to send emails or text messages that they shouldn

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

Black Jack C++ Help

April 2nd, 2009 Comments off

Background

For this assignment, you complete a program to play the game of “Twenty-one” (also called “Blackjack”).

The general idea of Twenty-one is as follows. There are two players, the customer and the dealer. The dealer deals a card face down to the customer, then a card face up to herself (the up-card), then another card to the customer and another card to herself, both face down. In most cases, the customer may then ask for more cards, one at a time. The dealer does the same, and the hand is resolved. The object of the game is to be dealt a set of cards whose total value is as close to 21 as possible without going over.

Cards are dealt from a deck of 52. There are four cards in the deck with value 2, four with value 3, and so on up to value 9; there are sixteen cards with value 10 (four 10′s and twelve face cards: four jacks, four queens, and four kings); and there are four cards (“aces”) whose value may be either 1 or 11 depending on the value of a player’s remaining cards. For both players, an ace counts 11 unless the hand total is more than 21, in which case it counts 1.

For our purposes, the actual play of the game proceeds as follows. Each player receives two cards as described above. If the dealer’s cards total 21

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