Skip to main content

Freelancer.com has turned into a scam site

How I got scammed 3 times by Freelancer.com

Freelancer.com, the most popular platform for freelancing has now turned into a scam machine. I am not talking about employers/freelancers running away but instead the staff of freelancer.com is involved. 

I have recently lost $600 and I will explain how (the points I will mention below has happened to me 3 times in last 1 year):

  1. Project awarded -> milestones paid (lets say $300) -> everything good
  2. I withdraw my money after few days
  3. Suddenly in the morning I see that $300 are locked from my account mentioning security reasons
  4. I contact freelancer.com support they say that employer you worked for has some problem in their account verification and we have asked them to verify so your amount will be unlocked once they are verified
  5. I wait 3–4 days. No updates. My employer mentioned that they have submitted the required information and support has given them 48 hours to resolve the issue.
  6. I contact support again and they say that your employer needs some correction and answer few things
  7. Wait few days. No updates -> Employer's account closed
  8. I lost $300 just because someone else has problem in their account

When I raised the issue that why freelancer platform do not verify accounts before any payment is made they simply refuse to answer and make lame excuses like we are sorry and bid on projects that have identity verified badge.

Comments

Popular posts from this blog

Multithreaded C# TCP server to handle multiple clients

I decided to write a minimal multithreaded TCP based server as a blog post. Following class can serve as a skeleton for any small or large scale multithreaded TCP socket server. It do not contain much error handling , it is only to give an idea that how multithreaded server works and how it can process multiple clients using threading. using System; using System.Text; using System.Net; using System.Net.Sockets; using System.Threading; using System.Collections.Generic; namespace RandomStuffMine { public class MTServer {     public int Port{get;set;}     public Socket ServerSocket{get;set;}     private List<Client> Clients=new List<Client>();     private bool runServer=true;     public MTServer(int port)     {         Port=port;         ServerSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);     }   ...

Decoding JPEG image file using libavcodec

I got a chance to work on a video encoding application that decodes series of jpeg files and convert them into ogg theora video file. I used the infamous libavcodec library that is used in FFMPEG . I decided to write blog posts explaining how I decode jpeg images and convert them into ogg video file. This is the first part and in this I will explain how to decode jpeg images using libavcodec. To learn how to write decoded images as a ogg video file please read http://random-stuff-mine.blogspot.com/2017/07/encoding-raw-images-to-ogg-theora-video.html Before reading this blog post you must be aware of using and setting up libavcodec. I highly recommend this tutorial to get basics of using libavcodec http://www.ffmpeg.org/doxygen/0.6/api-example_8c-source.html Allocating input format context We will first allocate input format for reading the file. We will use avformat_open_input function that will allocate AVFormatContext structure passed to it , the function detects input typ...

Encoding raw images to Ogg Theora video using libavcodec

In one of the blog posts we learned how to decode jpeg images using libavcodec. This is the second part of that post. In this we will learn how to encode decoded images (raw images) to theora and write them in ogg video file. In the end of the first part we saved our raw image in raw_data variable and its length in raw_data_size variable. Lets assume that we packaged all our decoding code in one function called "decode_jpeg_image" which has following signature int decode_jpeg_image(char *filename,int file_name_size,uint8_t *raw_data,int *raw_data_size) filename = name of jpeg file to decode file_name_size = length of jpeg file's name raw_data = contains decoded raw image on return raw_data_size = contains length of raw_data on return Now let's start working on how to encode this image in raw_data to theora and write that image to ogg video file. Finding Theora encoder We first have to find encoder for THEORA which is represented by AVCodec structure. He...