Location: Miami, United States
Member since: May 2011
We are a team of professionals experienced (dieam.com) on PHP, Ajax, HTML5, CSS3, Android and working with social networks such as Facebook and Twitter....
[read more]
5.0
Jan 14, 2013
“ Well done Jorge! I will write new tasks soon!Well done Jorge! I will write new tasks soon! ”
Dec 27, 2012
“ Great communication, timely work and quality outcome!Great communication, timely work and quality outcome! ”
Nov 28, 2012
“ He has been one the best resources I have worked with so far. Promptly responses, quality work and ensures he understands the requirements, he is not afraid to ask for clarifications. I am definitely hiring him again.He has been one the best resources I have worked with so far. Promptly responses, quality work and ensures he understands the requirements, he is not afraid to ask for clarifications. I am definitely hiring him again. ”
Nov 21, 2012
“ Gran trabajo realizado por Jorge y su equipo. Ha superado mis expectativas con creces y lo recomiendo 100%. Es una persona muy formal, atenta y muy inteligente que entiende rpidamente lo que necesitas.Great work by Jorge and his team. He has exceeded my expectations by far and I recommend him 100%. He is a very formal, attentive and very intelligent.Gran trabajo realizado por Jorge y su equipo. Ha superado mis expectativas con creces y lo recomiendo 100%. Es una persona muy formal, atenta y muy inteligente que entiende rpidamente lo que necesitas.Great work by Jorge and his team. He has exceeded my expectations by far and I recommend him 100%. He is a very formal, attentive and very intelligent. ”
Nov 8, 2012
“ Jorge is a Rock Star! He picked up the project, went to work and knocked it out as requested and in a timely manner. Communication was excellent and the overall experience was GREAT! I will definitely use Jorge in the future.Jorge is a Rock Star! He picked up the project, went to work and knocked it out as requested and in a timely manner. Communication was excellent and the overall experience was GREAT! I will definitely use Jorge in the future. ”
Nov 7, 2012
“ I was looking for this script since months ago, crawled all the web, asked directly to the software programmers..I was desperate. Nothing at all came out. I"m luck I found this man. Hired, waited a few hours, job done. Quick and efficient.I was looking for this script since months ago, crawled all the web, asked directly to the software programmers..I was desperate. Nothing at all came out. I"m luck I found this man. Hired, waited a few hours, job done. Quick and efficient. ”
Nov 6, 2012
“ HE is the best !!! If you have any sort of problem Just Hire him and consider it as DONEHE is the best !!! If you have any sort of problem Just Hire him and consider it as DONE ”
- Auto update users table as previously discussed- Pull in the current price of the instrument to align with the timestamp of the tweet- Provide a web user interface that allows for quick input/categorizing of tweets in the databaseBasically I need a list of tweets that have not been categorized, starting with the most recent, displayed on a web page. I need basic info about the tweet, like the timestamp, @username, and if there is a link or image link it needs to be clickable.Next to each tweet I need some options for quick categorization, so that I can quickly scan dozens of tweets and take action on them.Category will be "Bull" and "Bear" to start with.Next to category is "Important Price" which is a input box where I can type in a price, example 1410.25. Store this as a new column with the tweet "importantprice".For each tweet this will be done.Now as for pulling in the current market price of the instrument to align with each tweet, there is an existing database on this server called "scquotes". There is a table within this database called "ES". This table coordinates with the hashtag $ES_F on twitter, which is what I am focusing on to begin with.Here is a sample:mysql> select * from scquotes.ES order by timestamp desc limit 1;+-----+---------+---------+---------+---------+--------+---------------------+| key | open | high | low | close | volume | timestamp |+-----+---------+---------+---------+---------+--------+---------------------+| 1 | 1404.75 | 1405.00 | 1404.75 | 1405.00 | 49 | 2012-12-03 22:56:23 |+-----+---------+---------+---------+---------+--------+---------------------+1 row in set (0.04 sec)All we care about is the "close" column. The timestamps are basically 1 entry per minute. Timestamps are Eastern timezone. I would like everything displayed as Eastern timezone.So what I want to do is know the ES close price at the time of the tweet. You can set the timestamp to Y-m-d H:i:s and search +/- 1 minute which will be close enough, or however you want to do it.This close price needs to be stored with the tweet as a new column "marketprice".So let"s say I organize 50 tweets and label some as Bull and some as Bear. The app will automatically create the marketprice entry by pulling scquotes.ES.close column and associating it with the tweet (please also make sure this price gets displayed next to the tweet when I am categorizing it). I will then manually read the tweet and look for important price data and input a price into the "importantprice" column.So now I have 50 tweets categorized with this info. What we want to do next is, for each tweet, show the range of price (scquotes.ES.close) from the timestamp the tweet was created until the close hits or exceeds the "importantprice" column. I would need to see a timestamp as well of when that happened.You can set a 24 hour expiration window, in other words, if the price doesn"t hit or exceed "importantprice" within 24 hours, then you can stop scanning. We could mark it as "Failed" (maybe a "result" column).Example:Tweet 1 - Category: Bull, Important price: 1420.25. Market price at time of tweet: 1410.00, 2012-12-03 09:31:00.Since category is bull, scan scquotes.ES.close with timestamp > tweetcreationdate until the close price >= importantprice (price moved up higher, hitting our important price target). Show me the timestamp of when the importantprice was hit.Example 2:Tweet 2 - Category: Bear, Important price: 1390.75. Market price at time of tweet: 1410.00, 2012-12-03 09:31:00.Since category is bear, scan scquotes.ES.close with timestamp > tweetcreationdate until the price hits or exceeds (in this case, exceeds means lower since bear) the important price, and show the timestamp.I also need some way of keeping score, so basically which Twitter @username"s have the best results (price hit before 24h timeout/expire). So maybe a "score" result page with each twitter name listed.- Auto update users table as previously discussed- Pull in the current price of the instrument to align with the timestamp of the tweet- Provide a web user interface that allows for quick input/categorizing of tweets in the databaseBasically I need a list of tweets that have not been categorized, starting with the most recent, displayed on a web page. I need basic info about the tweet, like the timestamp, @username, and if there is a link or image link it needs to be clickable.Next to each tweet I need some options for quick categorization, so that I can quickly scan dozens of tweets and take action on them.Category will be "Bull" and "Bear" to start with.Next to category is "Important Price" which is a input box where I can type in a price, example 1410.25. Store this as a new column with the tweet "importantprice".For each tweet this will be done.Now as for pulling in the current market price of the instrument to align with each tweet, there is an existing database on this server called "scquotes". There is a table within this database called "ES". This table coordinates with the hashtag $ES_F on twitter, which is what I am focusing on to begin with.Here is a sample:mysql> select * from scquotes.ES order by timestamp desc limit 1;+-----+---------+---------+---------+---------+--------+---------------------+| key | open | high | low | close | volume | timestamp |+-----+---------+---------+---------+---------+--------+---------------------+| 1 | 1404.75 | 1405.00 | 1404.75 | 1405.00 | 49 | 2012-12-03 22:56:23 |+-----+---------+---------+---------+---------+--------+---------------------+1 row in set (0.04 sec)All we care about is the "close" column. The timestamps are basically 1 entry per minute. Timestamps are Eastern timezone. I would like everything displayed as Eastern timezone.So what I want to do is know the ES close price at the time of the tweet. You can set the timestamp to Y-m-d H:i:s and search +/- 1 minute which will be close enough, or however you want to do it.This close price needs to be stored with the tweet as a new column "marketprice".So let"s say I organize 50 tweets and label some as Bull and some as Bear. The app will automatically create the marketprice entry by pulling scquotes.ES.close column and associating it with the tweet (please also make sure this price gets displayed next to the tweet when I am categorizing it). I will then manually read the tweet and look for important price data and input a price into the "importantprice" column.So now I have 50 tweets categorized with this info. What we want to do next is, for each tweet, show the range of price (scquotes.ES.close) from the timestamp the tweet was created until the close hits or exceeds the "importantprice" column. I would need to see a timestamp as well of when that happened.You can set a 24 hour expiration window, in other words, if the price doesn"t hit or exceed "importantprice" within 24 hours, then you can stop scanning. We could mark it as "Failed" (maybe a "result" column).Example:Tweet 1 - Category: Bull, Important price: 1420.25. Market price at time of tweet: 1410.00, 2012-12-03 09:31:00.Since category is bull, scan scquotes.ES.close with timestamp > tweetcreationdate until the close price >= importantprice (price moved up higher, hitting our important price target). Show me the timestamp of when the importantprice was hit.Example 2:Tweet 2 - Category: Bear, Important price: 1390.75. Market price at time of tweet: 1410.00, 2012-12-03 09:31:00.Since category is bear, scan scquotes.ES.close with timestamp > tweetcreationdate until the price hits or exceeds (in this case, exceeds means lower since bear) the important price, and show the timestamp.I also need some way of keeping score, so basically which Twitter @username"s have the best results (price hit before 24h timeout/expire). So maybe a "score" result page with each twitter name listed.
[This is a Private Project. You must be logged in to view the Project Description][This is a Private Project. You must be logged in to view the Project Description]
I"d like to make some little improvements to the "kunena latest" joomla modue you already helped me with.1) it seems not to refresh with real latest posts, like it cashes or something2) it seems to not always honor the "show only from these categories or exclude these categories" option3) I"d like to choose whether to order the posts by "last reply" date or by "topic start date".4) maintain the columns layout customizationI"d like to make some little improvements to the "kunena latest" joomla modue you already helped me with.1) it seems not to refresh with real latest posts, like it cashes or something2) it seems to not always honor the "show only from these categories or exclude these categories" option3) I"d like to choose whether to order the posts by "last reply" date or by "topic start date".4) maintain the columns layout customization
I need a bridge between vBulletin and GoToWebinar"s REST API.Use the attachment as the header info to include in the PHP file so you can pull vBulletin info.Information I found on the API, but I"ve never gotten around to writing the bridge myself:https://developer.citrixonline.com/api/gotowebinar-rest-api/apimethod/create-registranthttp://stackoverflow.com/questions/9273576/gotowebinar-api-phphttp://stackoverflow.com/questions/11298477/register-user-through-api-to-gotowebinar?rq=1I want to use the "Create Registrant" process. The required fields are first name, last name, and email address.Use $vbulletin->userinfo["username"] for both the first and last name.Use $vbulletin->userinfo["email"] for the email.I want to define the GoToWebinar event ID from the query string so I can easily change it between events. I think that will be the only parameter on the query string.Check that $vbulletin->userinfo["email"] is not blank. If it is blank, throw an error telling the user to update their profile here:http://www.bigmiketrading.com/profile.php?do=editpasswordI will call this PHP from an image like "register now", and on click it goes to this php. I will use jquery to display the output, so we want the output to be kept very simple such as "Registration successful, information sent to <email address>" or "You are already registered, check <email address> for an email from GoToWebinar".Let me know if something else needs answered.I need a bridge between vBulletin and GoToWebinar"s REST API.Use the attachment as the header info to include in the PHP file so you can pull vBulletin info.Information I found on the API, but I"ve never gotten around to writing the bridge myself:https://developer.citrixonline.com/api/gotowebinar-rest-api/apimethod/create-registranthttp://stackoverflow.com/questions/9273576/gotowebinar-api-phphttp://stackoverflow.com/questions/11298477/register-user-through-api-to-gotowebinar?rq=1I want to use the "Create Registrant" process. The required fields are first name, last name, and email address.Use $vbulletin->userinfo["username"] for both the first and last name.Use $vbulletin->userinfo["email"] for the email.I want to define the GoToWebinar event ID from the query string so I can easily change it between events. I think that will be the only parameter on the query string.Check that $vbulletin->userinfo["email"] is not blank. If it is blank, throw an error telling the user to update their profile here:http://www.bigmiketrading.com/profile.php?do=editpasswordI will call this PHP from an image like "register now", and on click it goes to this php. I will use jquery to display the output, so we want the output to be kept very simple such as "Registration successful, information sent to <email address>" or "You are already registered, check <email address> for an email from GoToWebinar".Let me know if something else needs answered.
1) I would like to put my buyers and freelancers into two different privacy groups. This means, that freelancer profiles can be visited by the public. And buyer profiles can only be seen by registered members. It would be great to have both groups completely separated! 2) Remove the escrow payment system. This should be easily done because the new joombri version offers this option. I will send you the new version so that you can use it to make the changes. I don´t need the whole "finance" part at all! But the option to rate users must remain! 3) Fix a bug at the freelancer registration form. I had to disable the ajax check for username / email address. It showed an error message at firefox and chrome: "Session ist abgelaufen oder Cookies sind auf dem eingesetzten Browser nicht eingeschaltet. Bitte diese Seite erneut laden und die Speicherung von Cookies im Browser erlauben." Translation: Session expired... Please fix it so that I can activate the ajax check again. Freelancer had no chance to register with this error message. That´s why I had to remove the check.. 4) Reactivate the "skills" part for freelancers. This means that freelancers can pick their special category skills during registration (and later in their profile). And when a new project is posted matching the selected skill, the freelancer should get an email notification. (This is already included at the joombri software) What do you think it will cost? And how long will it take?1) I would like to put my buyers and freelancers into two different privacy groups. This means, that freelancer profiles can be visited by the public. And buyer profiles can only be seen by registered members. It would be great to have both groups completely separated! 2) Remove the escrow payment system. This should be easily done because the new joombri version offers this option. I will send you the new version so that you can use it to make the changes. I don´t need the whole "finance" part at all! But the option to rate users must remain! 3) Fix a bug at the freelancer registration form. I had to disable the ajax check for username / email address. It showed an error message at firefox and chrome: "Session ist abgelaufen oder Cookies sind auf dem eingesetzten Browser nicht eingeschaltet. Bitte diese Seite erneut laden und die Speicherung von Cookies im Browser erlauben." Translation: Session expired... Please fix it so that I can activate the ajax check again. Freelancer had no chance to register with this error message. That´s why I had to remove the check.. 4) Reactivate the "skills" part for freelancers. This means that freelancers can pick their special category skills during registration (and later in their profile). And when a new project is posted matching the selected skill, the freelancer should get an email notification. (This is already included at the joombri software) What do you think it will cost? And how long will it take?
Custom Project Nov 16 2012 11:30:48Custom Project Nov 16 2012 11:30:48
I need to create a site targeted to rental homes, goods and services, a website in Portuguese and English because it will be accessed in Brazil.this site will be created with intuited people and companies who want to rent their property on my website, paying a monthly fee for advertising.The desiner site have a reference to follow this pattern.www.aluguetemporada.com.br, however this site is only for rental properties! we want to expand the categories and rent all kinds of things.please I need a good price!thank youKevinI need to create a site targeted to rental homes, goods and services, a website in Portuguese and English because it will be accessed in Brazil.this site will be created with intuited people and companies who want to rent their property on my website, paying a monthly fee for advertising.The desiner site have a reference to follow this pattern.www.aluguetemporada.com.br, however this site is only for rental properties! we want to expand the categories and rent all kinds of things.please I need a good price!thank youKevin
hi i need a script like phppennyauction.comcontact me :grpmit2(at)gmail.comhi i need a script like phppennyauction.comcontact me :grpmit2(at)gmail.com
Seria instalar la versin de Opencart "v1.5.2.1" para que sea compatible con los siguientes extensioneshttp://www.opencart.com/index.php?route=extension/extension/info&extension_id=3023&filter_search=XMLhttp://www.opencart.com/index.php?route=extension/extension/info&extension_id=3214&filter_search=%20sitemaphttp://www.opencart.com/index.php?route=extension/extension/info&extension_id=4653&filter_search=seo%20pack&page=2http://www.opencart.com/index.php?route=extension/extension/info&extension_id=2564&filter_search=dineromailhttp://www.opencart.com/index.php?route=extension/extension/info&extension_id=3037y tambien tengo un problema con la moneda quiero agregar las precios en dolares y que mi cliente cuando entre a la web lo vea en Pesos MX y ovio como te anexo cambiar opencart a espaol y un ejemplo de como quiero que modifiquen el diseo para que quede como esta web http://pcel.comSeria instalar la versin de Opencart "v1.5.2.1" para que sea compatible con los siguientes extensioneshttp://www.opencart.com/index.php?route=extension/extension/info&extension_id=3023&filter_search=XMLhttp://www.opencart.com/index.php?route=extension/extension/info&extension_id=3214&filter_search=%20sitemaphttp://www.opencart.com/index.php?route=extension/extension/info&extension_id=4653&filter_search=seo%20pack&page=2http://www.opencart.com/index.php?route=extension/extension/info&extension_id=2564&filter_search=dineromailhttp://www.opencart.com/index.php?route=extension/extension/info&extension_id=3037y tambien tengo un problema con la moneda quiero agregar las precios en dolares y que mi cliente cuando entre a la web lo vea en Pesos MX y ovio como te anexo cambiar opencart a espaol y un ejemplo de como quiero que modifiquen el diseo para que quede como esta web http://pcel.com
| content | aux0 | aux1 | aux2 | aux3 | aux4 | aux5 | aux6 | aux7 | aux8 | aux9 |
|---|
| content | aux0 | aux1 | aux2 | aux3 | aux4 | aux5 | aux6 | aux7 | aux8 | aux9 |
|---|
We are a team of professionals experienced (dieam.com) on PHP, Ajax, HTML5, CSS3, Android and working with social networks such as Facebook and Twitter.
The user has not yet uploaded a resume.
As you use Freelancer.com to complete work, you'll earn badges which appear on your profile.
Elite Badges are very difficult to obtain, obtainable by only our most dedicated users.
Pro Badges are somewhat uncommon but still obtainable with little effort.
Standard Badges are common and easy to obtain.
Freelancer.com (formerly GetAFreelancer, Scriptlance and vWorker/Rentacoder) is the world's largest freelancing, outsourcing and crowdsourcing marketplace for small business. Hire freelancers to work in software, writing, data entry and design right through to engineering and the sciences, sales and marketing, and accounting & legal services.
Find freelance jobs and make money online! We have freelance coders, writers, programmers, designers, marketers and more. Getting the best web design, custom programming, professional writing or affordable marketing has never been easier!
© Copyright 2013 Freelancer Technology Pty Limited (ACN 142 189 759)
Freelancer ® is a registered Trademark of Freelancer Technology Pty Limited (ACN 142 189 759)