Skip to main content

Paid to Review

Ronnie, over at ronniesblog.net has talked about PayPerPost. and I agree that it is an interesting idea but as Ronnie says I don't like how you have to put the product in a given light. If I don't like the product I don't want to give it a good review. Thats not to say that I would be mean and harsh but if I don't feel I can recommend something then I don't want to recommend it just because someone is paying me to.

Then I found SponsoredReviews.com this is something that I will look into. This is right from thier info page:

"You write the review in your own tone, and can be as critical as needed. Constructive criticism is encouraged, but rude or hateful reviews will be declined."


See this is the way to attracted a good readership. Write what needs to be said about the product but don't go overboard. No one likes to see something bashed.

Comments

Popular posts from this blog

Home Office Remodel Phase II: Pt 2 Electrical

Well, the electrical portion is all done. Lessons learned. Let's see, Always use junction boxes when tieing lines together. Be sure to buy extra wire nuts, you are bound to lose a box until you a finished when it magically reappears, same goes for electrical tape, two rolls minimum even if you only need 6 inches. Well here is the part that you have all been waiting for I know. Be sure to click the images for a better picture. Here is what is left of that tangled mess between the floor joists. Here is the outlet for under the desk. So stay tuned, more DIY is coming soon. The next section is Phase III: Phone

Create a SHA1 hash of a string

This function will take a string and return the hashed value using System.Security.Cryptography; public static string GetSha1(string value) { var data = Encoding.ASCII.GetBytes(value); var hashData = new SHA1Managed().ComputeHash(data); var hash = string.Empty; foreach (var b in hashData) hash += b.ToString("X2"); return hash; } Thanks to Lars-Erik