Looking For Copywriter To Rewrite Sales Copies

Hello,

I’m looking for person who could rewrite 9 sales copies and create one from the beginning. One sales copy must be not less then 500 words.

To the winner will be provided all 9 sales copies that need to rewrite. Need that they would pass copy scape also that would be submitted given keywords.

Looking forward for the reasonable bids.

Thank you!
A.

Software To Make Screenshots 2

Hi all,

A client of us needs a software that can make screenshots and send them to a server from where he can control through an interface the incoming thumbnail screenshots and also pause them on the remote computer, to see if noone is using his computer.

There are some more features this program should be able to do, like when it starts, time interval etc.

Waiting for your detailed explanation and recommended ways of which code you are using for the software and programming language f…

Software To Make Screenshots 2

Hi all,

A client of us needs a software that can make screenshots and send them to a server from where he can control through an interface the incoming thumbnail screenshots and also pause them on the remote computer, to see if noone is using his computer.

There are some more features this program should be able to do, like when it starts, time interval etc.

Waiting for your detailed explanation and recommended ways of which code you are using for the software and programming language f…

HTML 5 Canvas Tutorial – Drop Shadows

While working on the Pulse graphics engine I’m learning all kinds of new techniques and tid bits about Canvas. One of the latest things I’ve been playing around with and working on is creating shadows. This is actually pretty easy with the JavaScript drawing api available for canvas. It actually just takes a few properties set on the canvas context.

Before jumping into the code there are a couple of items to note. First, you can selectively apply a shadow by using the save and restore methods on the context. Second, for performance reasons make sure to draw shadows as infrequently as you can. Now let’s jump into the code.

function bodyloaded() { // Attached to body’s onload event

  var canvas = document.getElementById(‘myCanvas’); // Grabs the canvas element
  var ctx = canvas.getContext(‘2d’); // Grabs the canvas context

  ctx.save(); // Save the state of the context
  ctx.fillStyle = ‘#4433FC’; // Sets the fill color
  ctx.shadowOffsetX = 2; // Sets the shadow offset x, positive number is right
  ctx.shadowOffsetY = 2; // Sets the shadow offset y, positive number is down
  ctx.shadowBlur = 4; // Sets the shadow blur size
  ctx.shadowColor = ‘rgba(0, 0, 0, 0.6)’; // Sets the shadow color
  ctx.beginPath(); // Starts a shape path
  ctx.arc(150, 150, 75, 0, 2 * Math.PI, false); // Draws a circle
  ctx.fill(); // Fills the path
  ctx.restore(); // Restore the state of the context

  ctx.fillStyle = ‘#DE33FC’; // Sets the fill color
  ctx.beginPath(); // Starts a shape path
  ctx.arc(350, 350, 60, 0, 2 * Math.PI, false); // Draws a circle
  ctx.fill(); // Fills the path
}

That’ll spit out something like the following.

Looking at the code it starts out by grabbing the canvas and then the context from the canvas. In order to apply the drop shadow to only a part of the canvas we have to use the save and restore functions on the context. The next thing done is to set the appropriate properties on the canvas context.

  • shadowOffsetX – the horizontal offset for the drop shadow
  • shadowOffsetY – the vertical offset for the drop shadow
  • shadowBlur – the size of the blur of the drop shadow
  • shadowColor – the color of the drop shadow

At a minimum the shadowBlur and shadowColor properties have to be set in order for the shadow to be used. The color can be set with any of the formats available for fill style or stroke color. I’d recommend using the ‘rgba’ format so you can set the alpha on the color.

That wraps it up for this tutorial. Make sure to check out some of other canvas tutorials here on the site. If you have any questions or comments, feel free to leave them below.

If you’re looking for more information on HTML5 Canvas. Check out these great books:

Private Poker Club Website

We need a private poker membership club developed that shows excitement and events happening on the private login section, frontend public viewing is not as “exposed” to what members see once logged into the website.

-Need full administration backend cms, member control.
-Poker Tournament results linked to member profiles. All full list of poker tournament history shown for members.

If you want me to pic your bid, I give priority to someone who can show me sample mockups or good quality…

Social / Dating Network Website Based On Buddypress

Hello everyone,

i found out that big sites are already using buddypress as base for their projects. We want to make a new site for an older site that we have www.encontros.pt.

All these features should be possible with buddypress:

– Logo designing
– Home Page layout designing
– User registration
– User login
– Members Profile
– Profile Image
– Profile Wall like FB Wall
– On the Wall you can let comments, a short message, links, etc.
– Actions (Send Message, Match, Send Wi…

Social / Dating Network Website Based On Buddypress

Hello everyone,

i found out that big sites are already using buddypress as base for their projects. We want to make a new site for an older site that we have www.encontros.pt.

All these features should be possible with buddypress:

– Logo designing
– Home Page layout designing
– User registration
– User login
– Members Profile
– Profile Image
– Profile Wall like FB Wall
– On the Wall you can let comments, a short message, links, etc.
– Actions (Send Message, Match, Send Wi…

Social / Dating Network Website Based On Buddypress

Hello everyone,

i found out that big sites are already using buddypress as base for their projects. We want to make a new site for an older site that we have www.encontros.pt.

All these features should be possible with buddypress:

– Logo designing
– Home Page layout designing
– User registration
– User login
– Members Profile
– Profile Image
– Profile Wall like FB Wall
– On the Wall you can let comments, a short message, links, etc.
– Actions (Send Message, Match, Send Wi…