Skip to main content

Linkedin is about to start its freelancing marketplace

 Here is a piece of good news for the freelancing community. Linkedin has decided to start its freelancing marketplace. This news is coming as a breath of fresh air for those aspiring to be a freelance or those already on the platforms like Upwork or fiver and struggling a lot to get a client due to the oversaturated marketplace condition, especially after the pandemic. One might ask why this is a big deal? As there are already hundreds of freelancing marketplace on the internet. What makes LinkedIn special is its unique advantage of being the number one professional network which holds recruiters, VPs and CEOs of fortune 500 companies and MNCs. So it is expected that in the future, LinkedIn will be the market leader in the freelancing marketplace, and those who come early will get advanced with the wave. So as a freelancer, you should today go to LinkedIn and start setting up your service page and wait for the next two to three months when LinkedIn will officially start its operation. 


But till then what you should do?

You should start posting on LinkedIn, begin interacting with other professionals so that when LinkedIn will be operating, you get the initial pushup to be noticed and get hired.



💁What is a service page?


You must be thinking about what a service page is and how to set it up? The service page in LinkedIn is similar to what we know as 'GIG' in the fiver world. On the service page, you should mention what service you will provide, how a client should reach you and where you have located things like that.



⛏How to set up?


So as we have learnt what a service page is now, let's start setting up one. 


To set up a service page in Linkedin as of today, you need to send a request to the below Linkedin group -

https://www.linkedin.com/groups/8871270/


Don't worry about this group; it is primarily owned and managed by LinkedIn employees. So once you send a request to this group, it takes around 24 hours to get the approval. 


Once your request is approved, you will see an "Open to" button below your profile picture and next to the "Add section " button. 


This "Open to " button will help you to create your service page. 



The next step is straightforward. You click on "Open to", you will see two options - "showcase services you offer.." and "hiring." 







You should next click on "showcase services you offer.." and wolah !



you land on a page that will ask you to select the services you provide, where you have located, and how to connect. 



That's it, next; you publish it. Congratulations💥💫, you have successfully created a LinkedIn service page.


Comments

Popular posts from this blog

How to downsize a 4K clip in adobe premiere pro

Have you ever tried to import a 4k footage into a 1080p 25 sequence in adobe premiere?  let's imagine how does it look? First, the moment you drop this clip into your 1080p sequence, you get a message like the below -  Yes, At first, this does look frightening but let's ignore this for some time and click on the  "keep existing settings" button. but when you see your editing monitor, you end up having a view like below -  where you can clearly see a difference between source monitor and sequence monitor. in the sequence, the monitor image is not properly fitted; many parts are left out due to the fact that you wanted to fit a large image 4K (3840X2160) into a full HD sequence which is 1920X1080 .  So what is the solution? the solution here is to downgrade the footage . to do downgrading-  1) Please go to the timeline  2)  Select the footage, 3)  Right-click and select " Set to Frame Size " And that's it, your clip is resized and fully visible...

How to split a java list?

In this post, we will explore one easy way to spill a big list into few smaller sublists. Though we have many third-party libraries that help us accomplish this very same task, many times we can't go for those third-party libraries due to the constraint of our product security in that case we end up writing our own logic to split that huge list into smaller sub-lists. And this is also a very common interview question that aspirants come across. though we will be using java to implement this logic I think the language here is not a barrier for those who wish to implement this same logic in java scripts or C# or objective C. So my request to them is to please go through the logic it is a simple and elegant way to split a big list. So, here is the java code to split a big list into a smaller sublist of fixed size - public List<List<String>> partitionList(List<String> list, int partitionNumber) { int listSize = list.size(); int m = listSize / partitionNumber; if (list...