Skip to main content

Picture Yourself Where You Want To Be

I recently received this marketing communication from LinkedIn, featuring a YouTube video. The video shows children talking about what they want to be when they grow up, and they are juxtaposed against images of successful professionals doing those things. The message is that you can follow your dreams and succeed. It's cute.

LinkedIn marketing communication promoting
http://imagine.linkedin.com

The website accompanying the campaign goes on to explain how some of the professionals featured in the video use LinkedIn to do their current jobs. For example, a chief merchandising officer uses it to discover vendors for unique items. And that's it: end of communication.

What I find interesting is that LinkedIn isn't set up very well for people trying to "follow their dreams". I've worked hard to grow my capabilities. I average two hours per day studying work-related topics to expand my reach. For my career, the signal-to-noise ratio on LinkedIn is mostly noise.

I get lots of contacts from tech recruiters based on my current and previous job titles. The pitch is often a form letter inviting me to take the same job title or an equivalent position. Some recruiters pitch positions where I would take a large pay cut, a more junior title and relocate at my own expense across the country to a more expensive area. I really like my current position, so my next one definitely won't be a lateral move!

"Technology recruiting is broken, and LinkedIn is positioned to fix it." 

Leveraging the enormous volume of career and skills data, LinkedIn could build a model that predicts how people progress in their careers. With such a model, the system can predict the most-likely career outcomes for each user. Based on feedback from the user, and on changes to the user's profile and network over time, the predictive model could be continuously adjusted.

For professionals using the site, this means the system can provide meaningful guidance about career options and how to build necessary skills for success. This could tie in with LinkedIn's recent focus on building informative content by pointing users to relevant articles, topics and groups. This capability would engage users between their job transitions, which is traditionally difficult for career sites:

"Users disengage when not actively looking for a job: most career sites are useless during stable employment."

On the recruiting side, a data-driven approach moves recruiters away from simplistic keyword-based searches that dominate current practices on LinkedIn. Some skills are easier to learn than others. For a strong software engineer, improving communication skills is hard but learning a new programming language is not. Recruiters often misjudge critical success factors for openings they represent.

LinkedIn can help recruiters understand which skill profiles can transition into the skill profiles the employer is looking for. This gives focus for recruiters and improves the resulting in-mail quality for the rest of us.

This marketing communication plays on the idea that LinkedIn enables its users to follow their dreams. By building the right data models, this vision could come closer to reality.

Comments

Popular posts from this blog

ReactJS, NPM and Maven

I'm just starting to get into working with ReactJS, Facebook's open source rendering framework. My project uses SpringBoot for annotation-driven dependency injection and MVC. I thought it would be great if I could use a bit of ReactJS to enhance the application. If you're looking for a basic conceptual intro, I recommend ReactJS for Stupid People and of course the official documentation  is quite good. In full disclosure, I still have no idea how to do "flux" yet. As an experienced Java backend developer, I'm pretty decent at hacking Maven builds - which is precisely what this blog post is going to be about. First, a word about how React likes to be built. Like many front-end tools, there is a toolkit for the node package manager (NPM). From the command prompt, one might run npm install -g react-tools  which installs the jsx command. The  jsx  command provides the ability to transform JSX syntax into ordinary JavaScript, which is precisely what I want...

Cryptic Facebook Message

Facebook OAuth2 is a feature I frequently integrate, but sometimes its error messages can be downright opaque. In particular I keep on forgetting to associate my Facebook account on applications where Sandbox Mode is enabled. The error message in this case is the following: Sorry, this feature isn't available right now: An error occurred while processing this request. Please try again later. This message is super cryptic, since what I usually need to do is to register my account as a tester or admin on the Facebook application page. If you get this error message here are the steps to fix it: As an application administrator, go to the OAuth2 configuration page for the application in Facebook. Add the Facebook account as an admin or tester on the "edit roles" screen. This will send an application request to that account. As the added account, accept the application request to become an admin or tester. At this point the Facebook login should work for the accou...

Generating a Self-Signed SSL Certificate

I recently switched some web services to use SSL, and I was surprised that I couldn't find a good non-interactive script to generate the files needed for Jetty and other Java containers. After working my way through writing the script, I have decided to share my approach. This script generates a SSL subdirectory of whatever folder it lives in, and to that directory it adds a password file, certificate and a Java-friendly PKCS12 version of the certificate. And then I have my Maven build process copy the generated files into the base of my classes directory. The embedded Jetty instance needed an input stream of the PKCS12 file and the contents of the password file to create a SSL connector. Reading from the classpath can be a bit tricky - I should post about that later. From past experience, I think Nginx also requires the certificate file when configuring SSL.