Archive

Posts Tagged ‘min’

Display Users Online By Hourly Time Settings (adult Site)

January 9th, 2012 Comments off

Looking for someone to display random user’s online even after they have logged off from my current user database. the random users online is already programmed to display between x min and x max online already. I need someone to set time frams(that i can adjust anytime) on how many user’s to show online at certain times of the day e.g from
12pm to 5pm display min 10 online and max 50 online
5pm to 10pm display min 20 online and max 100 online Etc.. (only and example)

Categories: Adult, MySQL, PHP, Template, Website Tags: , , , , , ,

Record A Webinar With Camtasia Or Screenflow For 90-120 Min

December 12th, 2011 Comments off

I will be hosting a live webinar Wednesday 12/14/11 that will begin at 6pm Pacific Standard Time and end no later than 8pm Pacific Standard Time.

Unfortunately I have a mac and cannot record it at the same time I am doing it for technical reasons.

I need someone to record the webinar in its entirety and send me the final mp4 rendering.

For timezone help: http://www.timeanddate.com/worldclock/converter.html

You would need to sign in as a participant to the webinar and then will be abl…

Need Ad Made Within Next 20 Min

November 1st, 2011 Comments off

Need to make a simple flyer ad within next 20 min.

Forex Ea

September 15th, 2011 Comments off

Trading rules…

1) Open buy trade when custom indicator will show buy arrow. ( buy order at current market price after completion of 15 min arrow candle).

2) Open sell trade when custom indicators will show sell arrow. ( sell order at current market price after completion of 15 min red candle).

the period of indicators: Default

Note: If two or more buy or sell signal will come continuously then trade on every signal with their separate profit target and stop loss.

3) Profit Traget: Close buy/sell at 5 pip profit target on 15 min timeframe.

Stop Loss: 15 pip

4) EA inputs: Lot size, Maximum Lots, Profit Target, Stop Loss, Slippage, maximum spread, Magic Number

EA inputs should be able to change manually.

5) EA must display following information in the top-left corner of the chart: lot size, funds, spread

6) Spread: Maximum 3 pip

7) Timeframe: 15 min, 5 min, 1 min

8) Lot size: starting lot size 0.01 (should be able to change manually according to fund)

9) Maximum Lot Size: 500 standard lots

11) Currency Pair: EURUSD

12) Minimum Fund: $ 6

13) EA should be able to backtest

14) EA should be able to work with ECN 5 decimal broker.

I will use this EA on Hotforex micro account.

15) Stop Loss: If the trade will not reach at target profit and go in loss then close that trade with these two conditions (whichever will be earlier)

if the indicator will show reverse signal then immediate close the trade

or

Stop Loss : 15 pip

16) Money Management: if mm will set “True” then increase lot size 0.01 per $ 15 and if i will set “False” then i will choose manually.

The indicator in both mq4 and ex4 format and the snapshot of indicator in attachment.

Categories: Forex Tags: , , , , , ,

Voiceover For 1 Min Video

August 15th, 2011 Comments off

I need a female english (no accent) voiceover for a 1. min video.

High quality microphone needed for the job.

Animation Video Of 1 Min

August 1st, 2011 Comments off

We want to add a 1. min short educational video to our website.

The animation video is suppose to give a short introduction to the website, plus, briefly tell about the basic concepts/phrases used on the website.

Have a look at these two videos (from Google and Groupon) for inspiration:
http://www.youtube.com/watch?v=8xa9D1kPQNE&feature=relmfu
http://www.youtube.com/watch?v=M2aNMeSFHRo&feature=related

It is something simular to these educational videos we want

Animation length: 1 min
Voiceover should not be included – only sound effects
Delivered formats: AVI, FLV and a link to Youtube video

Best regards,
kobie

Clean A 40 Min Audio

June 27th, 2011 Comments off

Hi, This is an easy job for the right person. I need someone who has time today to do this. This is an easy turnaround job. I don’t expect miracles but I do need to improve this audio. I have other audio projects in the funnel so I need to find a good reliable person. I have a 40 min. speech I gave but the audio quality was not recorded in the best way. I kept moving away from the microphone at times so its soft and then loud. I need it to be equalize it so the volume is constant with good quality and clean it up a bit. Also I do need it done quickly. I don’t need it to be edited. Just mastered about to make the quality sound better. There is an audience background with I want to remain and even highlight a bit. Please don’t bid if you can’t give me a 24hr turnaround (much less preferred)

Categories: Audio Tags: , , , , , ,

An (unsigned) Integer Calculator

June 16th, 2011 Comments off

Write comments in your program, a discussion of what you see (and why), when you run this program (there should be some unexpected results).

Sample Output (no user input required):

INT_MIN=-2147483648
INT_MIN SQUARED=0

Squaring powers of 10, storing in INT (32 bit)
10 squared = 100
100 squared = 10000
1000 squared = 1000000
10000 squared = 100000000
100000 squared = -2147483648

FLT_MAX=3.4028234663852886e+038
FLT_MAX DOUBLED=1.#INF000000000000e+000

FLT_MIN=1.1754943508222875e-038
FLT_MIN DIVIDED BY 10 =1.1754946310819804e-039

DBL_EPSILON=2.2204460492503131e-016
((2+DBL_EPSILON)+DBL_EPSILON)=2.0000000000000000e+000
(2+(DBL_EPSILON+DBL_EPSILON))=2.0000000000000004e+000

.2 summed 100 times =1.9999999999999961e+001
.2 summed 10000 times =2.0000000000003176e+003

L A B S T E P S

STEP 1: (Unsigned) Integer Calculations (10 points)

(i)
Locate the smallest (negative) integer, INT_MIN, and print it. Then square INT_MIN and print the output.

(ii)
Find the smallest power of 10 that when squared in C++ gives the wrong value. Present output that indicates the power chosen and the incorrect result that C++ calculates.

STEP 2: (Single-Precision) Floating Point Calculations (20 points)

(iii)
Find the largest real value, FLT_MAX, and print it. Then double FLT_MAX and print the resulting value.

(iv)
Find the smallest positive real value, FLT_MIN, and print it. Then divide FLT_MIN by 10 and print the resulting value.

(v)
If e represents double-precision machine epsilon for C++ (DBL_EPSILON), calculate 2 + e + e first by adding the numbers (using a computer) from left to right and then from right to left.

(vi)
Sum (DO NOT MULTIPLY) repeated copies of 0.2:

100 times and print the output to as many digits as possible. Does it equal 20.0?
10,000 times and print the output to as many digits as possible. Does it equal 2000.0?
______________________________________________________________________________________________________________________________________

Here is a list of helpful include files:
#include <iostream>
#include <iomanip>
#include <math.h>
#include <float.h>

Categories: C/C++, Calculator, Math Tags: , , , , , ,

Animation Video Of 1 Min

May 22nd, 2011 Comments off

We want to add a 1. min short educational video to our website.

The animation video is suppose to give a short introduction to the website, plus, briefly tell about the basic concepts/phrases used on the website.

Have a look at these two videos (from Google and Groupon) for inspiration:
http://www.youtube.com/watch?v=8xa9D1kPQNE&feature=relmfu
http://www.youtube.com/watch?v=M2aNMeSFHRo&feature=related

It is something simular to these educational videos we want

Animation length: 1 min
Voiceover should not be included – only sound effects
Delivered formats: AVI, FLV and a link to Youtube video

Best regards,
kobie

Reminder Or Alert On Page 2

May 19th, 2011 Comments off

So the query is set up to show the list of records where the status is equal to ‘Activo’ ok so theres a column date and a column time heres the link http://latinoamericanamourtuary.com/registro/task_manager_cases_list.php user = test pass = test so lets say the case # 20110141 has a task to do that is due on 4/12/2011 at 14:00 so i need that 30 min before the due date an alert show up like a reminder saying, “30 min left to do that task” and then they will click ok or accept and the alert will disappear then 25 min before the due date the alert will show up again saying “25 min left to do the task…” if the deadline reaches to its time lets say it is 14:00 already and they didnt do the task then the alert will show up every two min saying that, two minutes passed to do the task… and so on until they do it, the way it is going to show they did the task is when they edit the record and remove the status “Activo”. then they page will no longer displays the record. now my question is sometimes they are away from the computer lets say the task is at 14:00 but they went to lunch at 13:20 and theyre coming back at 14:20 the page is open when they come back are they going to see a bunch of alerts? or is it going to be a conflict? another think some record are updated from other pages so if there are new record on the page they will not show up until they refresh the page so i was thinking about putting an auto refres every 4 or 6 min. is this going to work? or is there another way to do it?

Categories: Editing, Javascript, PHP Tags: , , , , , ,

Reminder Or Alert On Page

May 18th, 2011 Comments off

So the query is set up to show the list of records where the status is equal to ‘Activo’ ok so theres a column date and a column time heres the link http://latinoamericanamourtuary.com/registro/task_manager_cases_list.php user = test pass = test so lets say the case # 20110141 has a task to do that is due on 4/12/2011 at 14:00 so i need that 30 min before the due date an alert show up like a reminder saying, “30 min left to do that task” and then they will click ok or accept and the alert will disappear then 25 min before the due date the alert will show up again saying “25 min left to do the task…” if the deadline reaches to its time lets say it is 14:00 already and they didnt do the task then the alert will show up every two min saying that, two minutes passed to do the task… and so on until they do it, the way it is going to show they did the task is when they edit the record and remove the status “Activo”. then they page will no longer displays the record. now my question is sometimes they are away from the computer lets say the task is at 14:00 but they went to lunch at 13:20 and theyre coming back at 14:20 the page is open when they come back are they going to see a bunch of alerts? or is it going to be a conflict? another think some record are updated from other pages so if there are new record on the page they will not show up until they refresh the page so i was thinking about putting an auto refres every 4 or 6 min. is this going to work? or is there another way to do it?

Categories: Editing, Javascript, PHP Tags: , , , , , ,

Ajax Registration Form 2

May 17th, 2011 Comments off

** IMPORTANT NOTICE ***
I’m not looking for a collection of free scripts with 3 css, or 5 different files for every check, but only one file for checks, one css etc. I’ve already paid $50 to get such files.

I want a registrations form which will do the following validations using jquery:
1.- Username
Checks for min-max characters and checks for duplicate in the database. Min-max characters are controlling of variables $CFG['minuserchars'] and $CFG['maxuserchars']
2.- Email
Checks for valid email and checks for duplicate in the database.
3.- Password
Checks for min-max characters and validate match. Min-max characters are controlling of variables $CFG['minpasschars'] and $CFG['maxpasschars']
4.- Some text inputs.
Checks if empty. One is enought as a demo. I’ll add the others
5.- Droplist (Gender)
Checks if selected value is not the default (Please select),

IMPORTANT: All text messages must be variables as I need to add them in my language file. eg $LANG['duplicateusername'] instead of “Username already exists.

Categories: Ajax, Form, Javascript, jQuery Tags: , , , , , ,

Ajax Registration Form

May 17th, 2011 Comments off

** IMPORTANT NOTICE ***
I’m not looking for a collection of free scripts with 3 css, or 5 different files for every check, but only one file for checks, one css etc. I’ve already paid $50 to get such files.

I want a registrations form which will do the following validations using jquery:
1.- Username
Checks for min-max characters and checks for duplicate in the database. Min-max characters are controlling of variables $CFG['minuserchars'] and $CFG['maxuserchars']
2.- Email
Checks for valid email and checks for duplicate in the database.
3.- Password
Checks for min-max characters and validate match. Min-max characters are controlling of variables $CFG['minpasschars'] and $CFG['maxpasschars']
4.- Some text inputs.
Checks if empty. One is enought as a demo. I’ll add the others
5.- Droplist (Gender)
Checks if selected value is not the default (Please select),

IMPORTANT: All text messages must be variables as I need to add them in my language file. eg $LANG['duplicateusername'] instead of “Username already exists.

Categories: Ajax, Form, Javascript, jQuery Tags: , , , , , ,

Candlesticks Mt4 Ea

May 7th, 2011 Comments off

What I need or require:
A Fully Customizable Expert Advisor (For MT4) based on my Trading Strategies.

I’ll need an EA which is capable to run up to ten instances of candlestick patterns.
Each candlesticks pattern should have their individual Entry and MM settings.
Each independent candle within a candlestick pattern should be fully customizable.

***Note: When I mention ‘OR’ in the following, it means that I’d like to have both options open for me. So, you’ll still need to code all of them into the EA.

Before we begin on the candlesticks settings, let’s start off with some of the General settings this EA should consist of:
- Trading Session: Start and End session in Hours, based on local Broker’s time.
eg, Start Session 10 and End Session 20, would mean Start trading at my MT4 broker’s 10AM and ends at 8PM

- Total Open Trades Allowed: eg, a ’3′ would mean the maximum total trades currently opened is 3, any other entries would not be opened at all.

- General Money Management:
- Position Size opened based on ‘A’% of Account Balance, OR
- Position Size opened based on SL

- Sound Alert whenever an entry condition is met

- Email Alert whenever an entry condition is met

- An option to disallow the EA to open any trades, but keep the “Entry Condition Met” Sound and Email Signals on. In a sense, it will act like an indicator rather than an EA.

The General Settings are done, so now we move on to what a Typical CandleSticks Pattern should consist of, and I’ll need 10 instances of these patterns all customizable:

Instance 1 CandleSticks Pattern:

Part 1
-No of candlesticks This Pattern should consist of:
– 3 (Candle A, B and C. Candle D and E will be turned off), OR
– 4 (Candle A, B, C and D. Candle E will be turned off), OR
– 5 (All candles in this pattern will be turned on).

Each candlesticks should consist of a Min 2 candles and Max 5 candles.

Part 2
The Candle Stick Pattern
Note: Candle A will be the most recent candle, B the second most recent, and so on.

Candle A
Ability to define how the candle looks like:
- Bull or Bear Candle

- Min and Max Length of Candle (High Low)
- Min and Max Length of Candle Body
- Min and Max Length of Upper Shadow
- Min and Max Length of Lower Shadow

- Opened lower to Candle B’s O/H/L/C: Yes/No/Doesn’t Matter
- Opened lower to Candle C’s O/H/L/C: Yes/No/Doesn’t Matter
- Opened lower to Candle D’s O/H/L/C: Yes/No/Doesn’t Matter
- Opened lower to Candle E’s O/H/L/C: Yes/No/Doesn’t Matter

- Opened higher to Candle B’s O/H/L/C: Yes/No/Doesn’t Matter
- Opened higher to Candle C’s O/H/L/C: Yes/No/Doesn’t Matter
- Opened higher to Candle D’s O/H/L/C: Yes/No/Doesn’t Matter
- Opened higher to Candle E’s O/H/L/C: Yes/No/Doesn’t Matter

- Closed lower to Candle B’s O/H/L/C: Yes/No/Doesn’t Matter
- Closed lower to Candle C’s O/H/L/C: Yes/No/Doesn’t Matter
- Closed lower to Candle D’s O/H/L/C: Yes/No/Doesn’t Matter
- Closed lower to Candle E’s O/H/L/C: Yes/No/Doesn’t Matter

- Closed higher to Candle B’s O/H/L/C: Yes/No/Doesn’t Matter
- Closed higher to Candle C’s O/H/L/C: Yes/No/Doesn’t Matter
- Closed higher to Candle D’s O/H/L/C: Yes/No/Doesn’t Matter
- Closed higher to Candle E’s O/H/L/C: Yes/No/Doesn’t Matter

Candle B
- Bull or Bear Candle

- Min and Max Length of Candle (High Low)
- Min and Max Length of Candle Body
- Min and Max Length of Upper Shadow
- Min and Max Length of Lower Shadow

- Opened lower to Candle C’s O/H/L/C: Yes/No/Doesn’t Matter
- Opened lower to Candle D’s O/H/L/C: Yes/No/Doesn’t Matter
- Opened lower to Candle E’s O/H/L/C: Yes/No/Doesn’t Matter

- Opened higher to Candle C’s O/H/L/C: Yes/No/Doesn’t Matter
- Opened higher to Candle D’s O/H/L/C: Yes/No/Doesn’t Matter
- Opened higher to Candle E’s O/H/L/C: Yes/No/Doesn’t Matter

- Closed lower to Candle C’s O/H/L/C: Yes/No/Doesn’t Matter
- Closed lower to Candle D’s O/H/L/C: Yes/No/Doesn’t Matter
- Closed lower to Candle E’s O/H/L/C: Yes/No/Doesn’t Matter

- Closed higher to Candle C’s O/H/L/C: Yes/No/Doesn’t Matter
- Closed higher to Candle D’s O/H/L/C: Yes/No/Doesn’t Matter
- Closed higher to Candle E’s O/H/L/C: Yes/No/Doesn’t Matter

Candle C
- Bull or Bear Candle

- Min and Max Length of Candle (High Low)
- Min and Max Length of Candle Body
- Min and Max Length of Upper Shadow
- Min and Max Length of Lower Shadow

- Opened lower to Candle D’s O/H/L/C: Yes/No/Doesn’t Matter
- Opened lower to Candle E’s O/H/L/C: Yes/No/Doesn’t Matter

- Opened higher to Candle D’s O/H/L/C: Yes/No/Doesn’t Matter
- Opened higher to Candle E’s O/H/L/C: Yes/No/Doesn’t Matter

- Closed lower to Candle D’s O/H/L/C: Yes/No/Doesn’t Matter
- Closed lower to Candle E’s O/H/L/C: Yes/No/Doesn’t Matter

- Closed higher to Candle D’s O/H/L/C: Yes/No/Doesn’t Matter
- Closed higher to Candle E’s O/H/L/C: Yes/No/Doesn’t Matter

Candle D
- Bull or Bear Candle

- Min and Max Length of Candle (High Low)
- Min and Max Length of Candle Body
- Min and Max Length of Upper Shadow
- Min and Max Length of Lower Shadow

- Opened lower to Candle E’s O/H/L/C: Yes/No/Doesn’t Matter

- Opened higher to Candle E’s O/H/L/C: Yes/No/Doesn’t Matter

- Closed lower to Candle E: Yes/No/Doesn’t Matter

- Closed higher to Candle E’s O/H/L/C: Yes/No/Doesn’t Matter

Candle E
- Bull or Bear Candle

- Min and Max Length of Candle (High Low)
- Min and Max Length of Candle Body
- Min and Max Length of Upper Shadow
- Min and Max Length of Lower Shadow

Part 3
Entry Condition
- When the Candle Pattern is completed upon the closed of Candle A (most recent candle), initiate one of the following options:
– Buy, OR
– Sell, OR
– Buy order placed on Candle ‘X’ High or Low, with the option of + or – ‘N’ Pips, OR
– Sell order placed on Candle ‘X’ High or Low, with the option of + or – ‘N’ Pips.
* Candle ‘X’ refers to the selection of Candle A, B, C, D or E
* ‘N’ Pips refers to the amount of Pips as a margin added or subtracted to Candle ‘X’ High/Low. For instance, if Candle ‘X’ has a high of 1.5000, and the predetermined ‘N’ is +5, then the Buy Order shall be placed as 1.5005.

Part 4
Money Management – Should be independent for each individual candlestick pattern.
The following should be placed the instant a trade has been placed/executed:

Stop Loss
- Stop Loss in Pips, eg. 50 pips, OR
- Stop Loss = Candle ‘X’ High or Low, with the option of + or – ‘N’ Pips, but up to a Maximum of ‘M’ Pips

Take Profit
- TP in Pips, eg. 50 pips, OR
- TP = Candle ‘X’ High or Low, with the option of + or – ‘N’ Pips, but up to a Maximum of ‘M’ Pips

Set SL to BE
- When position has a floating profit of ‘Y’ Pips, Set SL to BE +/- ‘Z’ Pips
* If ‘Y’ Pips is set to 20, that means when the position reaches 20 pip profit, “Set SL to BE will be executed”.
* ‘Z’ Pips: I’d love to have the option to set SL to BE with a bit of profit margin. For example, If BE point for a Buy position is 1.5000, and ‘Z’ is set at +5, when Set SL to BE is executed, the new SL will be set to 1.5005.

Specific expertise that I am seeking:
If you have read and understand what this EA is up to, and already have a concrete idea on how to get it done… Then I’m depending on you!

Timeframe for delivery:
Max 4 Weeks, but You are the expert. You tell me :)

Finally:
I am no EA Expert nor a decent Programmer. I tried to state ‘exactly’ what I wanted with the EA in what I thought is a logical sequence. Tell me what you can do, what you can’t and what is impossible even in the year 2011.

If you think you have something better to add to this, Great! Let us discuss about it.

Thank you!

Reminder Or Alert On Page

May 6th, 2011 Comments off

So the query is set up to show the list of records where the status is equal to ‘Activo’ ok so theres a column date and a column time heres the link http://latinoamericanamourtuary.com/registro/task_manager_cases_list.php user = test pass = test so lets say the case # 20110141 has a task to do that is due on 4/12/2011 at 14:00 so i need that 30 min before the due date an alert show up like a reminder saying, “30 min left to do that task” and then they will click ok or accept and the alert will disappear then 25 min before the due date the alert will show up again saying “25 min left to do the task…” if the deadline reaches to its time lets say it is 14:00 already and they didnt do the task then the alert will show up every two min saying that, two minutes passed to do the task… and so on until they do it, the way it is going to show they did the task is when they edit the record and remove the status “Activo”. then they page will no longer displays the record. now my question is sometimes they are away from the computer lets say the task is at 14:00 but they went to lunch at 13:20 and theyre coming back at 14:20 the page is open when they come back are they going to see a bunch of alerts? or is it going to be a conflict? another think some record are updated from other pages so if there are new record on the page they will not show up until they refresh the page so i was thinking about putting an auto refres every 4 or 6 min. is this going to work? or is there another way to do it?

Categories: Editing, PHP Tags: , , , , , ,

Youtube 1 Min Promo

April 27th, 2011 Comments off

Looking for a simple 1 min. promo video about Zanzibar Island similar to the one on my homepage: www.climbkili.com

Short 5 Min Approx Web Video

March 18th, 2010 Comments off

Hi

I need a short 5 minute approx. online video creating. The audio voice-over and scripts will be provided, so a video needs creating with slides, could be powerpoint style slides.

This is an easy job for anybody who is creative and knows what they’re doing.

Examples that I want the video to look like:
http://affiliatemillionaire.com/
http://www.theviralsecret.com/
http://www.listcontrolsite.com/posts/buy-list-control

All details will be provided on your PMB.

Thanks
James

Categories: Multimedia Tags: , , , , , ,

Joomla Expert

March 17th, 2010 Comments off

Hello coders

i am looking for joomla expert to move site from one server to another server i have all the files and DB back u just need to upload and make it working in 30 min time frame

Budget : $10

Payment : paypal after completion

you need to have skype strictly to get this project

you should be ready in next 30 min and finis the same in 30 min

only people agree can bid rest will be ignored …am going to choose in next 15 min

happy bidding

Graphic Video Design

February 16th, 2010 Comments off

Hello, who would be kind enough to create a video of the duration of 7-8 minutes at most.
Explaining what sort of a MLM work with graphs defined all packed in a video about 7-8 minutes.

I estimate the best deals Why should I make 4-5 different videos.

The videos must have a professional slip between a concept and another.

1) Spot video (1 min.)
2) Products video i will offer (2-3 min.)
3) Video on points bonus like (2-3 min.)
4) Video where will be an explain of MLM structure (7-10min.)

Thanks.

P.S: THE PRICE BUDGET IS FOR SINGLE VIDEO.

Audio Transcription

January 27th, 2010 Comments off

I need someone to transcribe the audio commentary for six short video tutorials into plain text files.

The videos have the following duration:

06:01 minutes
06:49 min
12:35 min
09:36 min
08:44 min
06:38 min

There is one American commentator for all tutorials speaking english at normal pace.

I will provide URLs for the videos to the winning bidder.

Delivery: I need this project completed and delivered within 48 hours of accepting your bid.

Transcripts are to be supplied as seperate plain text files on completion.

Transcribe 53 Min Mp3

January 14th, 2010 Comments off

I need someone to transcribe a 53 min mp3 into text.

Weatherstar Jr. Emulator

December 7th, 2009 Comments off

Hi,

I’m looking for someone who can develop a small project; a ‘WeatherSTAR Jr.’ emulator. If you don’t know what a “WeatherSTAR Jr.” is go to www.en.wikipedia.org/wiki/Weather_Star_Jr

Basically what I want is a program that obtains the latest weather information from the national weather service and shows the data in a local forecast the way the real Jr. did. I would like the configuration to be similar to the ‘WeatherSTAR 4000′ Emulator at www.taiganet.com, in which you can enter various locations and the program will obtain the weather conditions, choose different ‘flavors’, and add music.

I would like this programs setup to be as the following:

(When the program is clicked, this setup window should come up so the user can setup the program for their area)
_________________________________________________________
LOCAL DATA
+City: (enter city here)
+Display Name: (enter city name that will display in emulator)
+State: (enter state abbreviation here)
+ASOS ID: (enter ASOS id here)
+NWS Zone #: (enter nws zone # here [ex: 010])

REGIONAL DATA
+Add City (up to 7)
++City Name: (enter city here)
++Display Name: (enter city name that will display in emulator)
++State: (enter state abbreviation here)
++ASOS ID: (enter ASOS id here)

FLAVORS & PLAYLISTS
+Spring
++Add Song…
+++Choose Flavor: D, E, H, K, L, M
+Summer
++Add Song…
+++Choose Flavor: D, E, H, K, L, M
+Fall
++Add Song…
+++Choose Flavor: D, E, H, K, L, M
+Winter
++Add Song…
+++Choose Flavor: D, E, H, K, L, M
+Holiday
++Add Song…
+++Choose Flavor: D, E, H, K, L, M

MESSAGE CRAWL
+Add message (up to 25)

ADDITIONAL SETTINGS
+Run emulator on start [check]
+Enable looping [check]
+Weather Warnings [check]

SAVE ALL SETTINGS

RUN LOCAL FORECAST
___________________________________________________________
…FLAVORS & PLAYLISTS…
I want the user to be able to select a season, and select up to 100 mp3 music files from their computer for each individual season. When a song is selected the user will also be required to select a ‘flavor’ for the song. When the emulator runs, I want it to play a random song based on the season, and run the flavor that the user set for the song. Here is a detailed list of the screens and flavors I want to be included:

-D (1 min.): Latest Observations (10 sec.), Almanac (10 sec.), 36 Hour Forecast (30 sec.), Regional Conditions (10 sec.)

-E (1 min.): 36 Hour Forecast (30 sec.), Extended Forecast (20 sec.), Latest Observations (10 sec.)

-H (1 min.): 36 Hour Forecast (30 sec.), Regional Forecast (10 sec.), Almanac (10 sec.), Latest Observations (10 sec.)

-K (1 min. 30 sec.): Current Conditions (10 sec.), Almanac (10 sec.), Regional Forecast (10 sec.), 36 Hour Forecast (30 sec.), Extended Forecast (20 sec.), Latest Observations (10 sec.)

-L (2 min.): Current Conditions (10 sec.), Latest Observations (10 sec.), Regional Conditions (10 sec.), Regional Forecast (10 sec.), Almanac (10 sec.), 36 Hour Forecast (30 sec.), Extended Forecast (20 sec.)

-M (2 min.): Current Conditions (10 sec.), 36 Hour Forecast (30 sec.), Extended Forecast (20 sec.), Travel Cities Forecast (1 min.)

…MESSAGE CRAWL…
The user should be able to type up to 25 messages that scroll on the bottom

…ADDITIONAL SETTINGS…
-”Run emulator on start”: If the user has this box checked then the emulator should start the local forecast immeadiately without going to the setup window.

-”Enable looping”: If the user has this box checked then the local forecast should continue to loop without going back to the setup window.

-”Weather Warnings”
When checked the local forecast will display severe weather warnings and advisories when the nws sends them out.

…SAVE SETTINGS…
When this is clicked the program will validate that all data entered is valid and save the settings.

…RUN LOCAL FORECAST…
Once the settings have been saved this can be clicked and the local forecast will run in 800×600.
——————————————————————–

Now for the display it should be exactly like the real Jr. Just look at the links below to see videos of the real Jr. to base the display on. I have the backgrounds and the fonts already made for you so all you would need to do is position it correctly.

Here are some links you may want to check out for video clips and information of the real Jr:
-http://www.youtube.com (search “Weatherstar Jr.”)
-http://twcclassics.com/video/local-forecast/weatherstar-jr/
-http://twctoday.com/jr3000flavors.html

This is just a general idea of what I want the program to be like, and when you are chosen I will provide you with full details and any questions you may have.

Thank You.

Transcribe 13 Min. Audio

November 18th, 2009 Comments off

I have a 13 minute visualization audio in English that needs transcribing. Simple project.

Flash Animation 3 Min Tutorial

October 20th, 2009 Comments off

Hello:
We’re looking to create a 3 minute tutorial for the homepage of our website. A good example of one is on doba.com. Click the “Learn how Doba works” tutorial.

We will want to change the wording, images, etc. but something of this nature and feel like this will be great. Will need to design icons, etc.

Thank you

Social Media 1 Min Videos

October 20th, 2009 Comments off

Hi, I own a company that helps businesses develop a social media marketing plan. I would like 2 videos that sell why companies should be using twitter, facebook, youtube, etc.

Please see these videos as examples of exactly what I am looking for:
http://wildhorseperformancemarketing.com/
http://wildhorseperformancemarketing.com/blog/

I am looking for someone who can make the stats more powerful…at the endof the video I will want MY logo to come up…I will provide you my logo.

Thanks,
Mark

WordPress 10 Min Word.

October 17th, 2009 Comments off

Vslider plugin is instaled and all settings are ready. I need some1 who need to make it visible on homepage. please some1 with good knowledge couze it may causes problem with another plugin.

Categories: PHP, Wordpress Tags: , , ,

Transcription 60 Min Interview

September 28th, 2009 Comments off

I need a 60 minute interview 1:1 (English) transcribed

Ten (10) Min Job Daily For 1yr

September 14th, 2009 Comments off

Hello,

I’m in search of about 100+ people who will have to do a VERY VERY easy task.I must say that this project can be done by a kid also..LOL

Anyways,

What you have to do is:-

Just goto a website (i will provide) login with an id and remain there for 10-15mins…After that you can logout

THATS IT!!!

The website is confidential and for your information, thats not a scam site, niether any adult or any prohibited site.

ITs a long-term work for dedicated people.

PM me “I’m interested” and let me know if you can do this daily.

Payment will be : 0.025$ daily ( if you have more than one PC than you can multiply the earnings).

Payment will be released every week.

Good Luck.

P.S : Remember i need atleast 100+ people so don’t hesitate to contact.

Flash Start-time / Stop-stime

September 12th, 2009 Comments off

Hi
I use this
http://www.tufat.com/s_multi_flash_video_component.htm
But I need to add one feature and it’s to start and to stop video on specific time.
That player is xml handle so I need simply to add start-time and stop-time from xml.
Per sample I have video with lenght = 5 min
I want to play on min = 00:00:02:00 and to start on min = 00:00:3:20

If you have flash video player with that features I accept too.
Thanks.

Categories: Flash Tags: , , , , , ,

Excel Macro Unix Date Conv

August 29th, 2009 Comments off

Need an Excel Macro(s) written that will:

First, when Excel is opened will let us load a CSV file that allows the simple running of the needed macros.

1. Take the existing UNIX Date/Time Field: 2009-08-03 15:40:42 and split it into two different fields (Start Date and Start Time)and applies that change to all data in that column. Eastern Standard time if possible.

2. A macro that will ask the start time (this is for the listing time of an auction in the future) and the number of minutes auctions should be spaced apart and the row numbers affected. Once answered, the macro will make the first auction “Start Time” for the rows selected the time identified and will then make the next “Start Time” x min after the first. Objective is that if there are 5 or 500 items to list for auction that we have control on time spacing them apart. We need control over affected rows as we may wish to make the first 20 auctions 5 min apart and the second 20 10 min apart.

3. Final Macro will re-create the Unix Time Date Field but containing the new “Start Date and Start Time”, in the same location as the original field and delete the individual fields (Start Date and Start Time)as no longer needed. At the same time it will modify another UNIX field (also containing the same formatted data but will be set to 48 hours after the data in the “start date” and “start time”. No need to convert this data out of UNIX unless necessary.

4. A simple macro to create a CSV file

Happy to clarify any questions.

David

PS.

Transcribe 3 Min Video

August 21st, 2009 Comments off

Transcribe this video

http://link.brightcove.com/services/player/bcpid9141634001?bctid=34693572001

Typing Up 50 Min. Speach Rec.

August 21st, 2009 Comments off

Hi,
I need a normal 2 person conversation, recorded in WMA, typed into a word (text) file.
This is a typing job, not programming.
The length of the recording is ca. 50min., the pace of the conversation is normal to slow speech in English.
The audio file is 35MB in size and of good understandable qualit, with one speaker being very clear and the other slightly distorted (particularly in the first few minutes) with a little mid England accent.(I realy don’t think the accent should be a problem.)
The file will be made available though a rapidshare link.
Spelling needs to be of cause correct.
Today is the 21th Aug., I would need this done in 1-2 days, ideally 1 day.

Regards,
Pajam

Categories: Writing Tags: , , , , , ,

Typing Up 50 Min. Speach Rec.

August 20th, 2009 Comments off

Hi,
I need a normal 2 person conversation, recorded in WMA, typed into a word (text) file.
This is a typing job, not programming.
The length of the recording is ca. 50min., the pace of the conversation is normal to slow speech in English. The audio file is 35MB in size and of good understandable quality.
Spelling needs to be of cause correct.
Today is the 20th Aug., I would need this done in the next 2-3 days.

Regards,
Pajam

Categories: Writing Tags: , , , , ,

Quick Ajax Form Script – 5 Min

August 18th, 2009 Comments off

I need to be able to Submit A Form Without Page Refresh.

Current setup:

I have two php files. The first one collects the users name and email. Then they submit the form and are brought to php file 2 where they are given a username and password.

I need this to be all done by ajax. So I need to be able to output the results of php file 2.

Very simple, Please PM Questions.

Six Min Video Or Power Point

August 12th, 2009 Comments off

I have audio (about 6 min)for a sales page and I need a video created for it. It can be either avi or powerpoint or preferrably a combination of both. It is for a sales page for a “get out of debt” project so the video must have a financial theme to it.

I would like the video to highlight and focus on the benefits stated on the audio with pictures, images, video, words and bullet points as appropriate. Please make it upbeat with images of happines, stress free, wealth, money, no debt, family, free time etc.

Please state previous projects (preferrable show) so that I may see your work. You may also PM me with any questions.

You may hear the audio at the following link:

http://audiopostcard-007.com/Y.asp?10706623X1166

Presentation Video /1.5 Min

August 11th, 2009 Comments off

Hi we need a 2 min intro video similar to this one: http://www.youtube.com/watch?v=KNqPbfUk5v0

For our website: http://url-ok.com/2c7060

The subjet: How to make money with your camera…
I will provide text and our company logo

Time: 1.5 min

We do not have a huge budget please try to help as much as you can! thanks a lot.

If you do a good job we will need a 2nd one for our other website:)

Thanks

Transcribe A 5 Min. Audio File

August 7th, 2009 Comments off

Hello,

I’m looking for someone to accurately transcribe (in Microsoft Word) a sound file that’s about 5 minutes long.

The sound file is of a man speaking clearly at a regular speed.

The transcription must be precise.

The project must be completed within 48 hours of bid acceptance.

It’s an easy job, easy money =)

General Transcription 95 Min

August 7th, 2009 Comments off

Hello,

We looking some MT or GT WORK.

MT capacity 100 mins
General Transcription Work 150 to 200 mins

Just looking for good rates and tat with nice payment schedule.
Team of 10, 07 years experience.

Devgan
Hyd – India

All HBT facility available 24 hrs.

Godaddy Hosting Help (10 Min)

July 30th, 2009 Comments off

Hi guys,

I messes up my godaddy hosting.All files uploaded, but the site does not go online. The domain and the hosting is not linked properly.There might be some nameserver issue as well.

It must be a 10-20 min job for the right guy.Please only bid if u have account with godaddy,so knows the interface, and u are good at troubleshooting.

I need it quick, be quick with bidding.
MSN is a must for this project.

Thanks.

Project – 10 Min Animation

July 26th, 2009 Comments off

I would like a person to recreate an animation.
The length and style of the animation is very similar to the link below.

http://www.crisisofcredit.com/

The software used to create the animation should be as simple and easy to use as possible.

Please list what software you would use, I will need the source files of the animation after the project is completed.

I would also need a 1 page instruction guide on how to edit the animation.

Before bidding:
Please show links to your previous work.
Please list the types of software used to create to animation (I will have to buy a copy)

Thanks

Bear