<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: DivineFavour</title>
    <description>The latest articles on DEV Community by DivineFavour (@favor).</description>
    <link>https://dev.to/favor</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F723133%2Fc4ddc1a9-4854-4c73-95b8-5d43455c74d7.png</url>
      <title>DEV Community: DivineFavour</title>
      <link>https://dev.to/favor</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/favor"/>
    <language>en</language>
    <item>
      <title>LinkDB: A complete dataset of public LinkedIn Profiles (and companies 😉)</title>
      <dc:creator>DivineFavour</dc:creator>
      <pubDate>Mon, 10 Oct 2022 17:07:00 +0000</pubDate>
      <link>https://dev.to/favor/linkdb-a-complete-dataset-of-public-linkedin-profiles-and-companies--39l6</link>
      <guid>https://dev.to/favor/linkdb-a-complete-dataset-of-public-linkedin-profiles-and-companies--39l6</guid>
      <description>&lt;p&gt;Hello everyone!!!!!! It's been so long 🥲 (almost a year) since I wrote and I am back!! I'll be writing more i'll try my best to write once a week or two ❤️. Want more info on the caption? Continue reading! 😊&lt;/p&gt;

&lt;p&gt;As a Javascript developer or a developer in general, we're always looking for new projects to bump up our resume. Something new, exciting and has never been implemented before (that might turn to a startup 😂😂). Something to make you stand out from the crowd while recruiters are looking through your resume, well if you just learnt about API's and are looking for awesome data to plug into your app, you're very lucky to be reading this post 😉. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--kAfkORdm--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fu97xafbudrc3y9trmub.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--kAfkORdm--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fu97xafbudrc3y9trmub.png" alt="LinkDB" width="800" height="457"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://nubela.co/proxycurl/linkdb"&gt;LinkDB&lt;/a&gt; is an awesome platform that'll provide you with millions of public LinkedIn profiles and companies for a small fee. If you're looking for test data, they will provide you with 10,000 random Canadian, Israel, Singapore, US, Brazilian or Indian profiles. They would also give you (for free) 10,000 random US, Singapore or Swedish company profiles. So gather round my developer friends, I'm not done 😉. For a paid version, you'd get: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Company Profile Endpoint&lt;/li&gt;
&lt;li&gt;Company Lookup Endpoint&lt;/li&gt;
&lt;li&gt;Company Lookup Endpoint&lt;/li&gt;
&lt;li&gt;Employee Count Endpoint&lt;/li&gt;
&lt;li&gt;Employee Listing Endpoint&lt;/li&gt;
&lt;li&gt;Work Email Lookup Endpoint&lt;/li&gt;
&lt;li&gt;Reverse Work Email Lookup Endpoint&lt;/li&gt;
&lt;li&gt;Personal Contact Number Lookup Endpoint&lt;/li&gt;
&lt;li&gt;Personal Email Lookup Endpoint&lt;/li&gt;
&lt;li&gt;Disposable Email Endpoint&lt;/li&gt;
&lt;li&gt;Jobs Listing Endpoint&lt;/li&gt;
&lt;li&gt;Job Profile Endpoint&lt;/li&gt;
&lt;li&gt;Personal Profile Endpoint&lt;/li&gt;
&lt;li&gt;Personal Lookup Endpoint&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;and more... Check &lt;a href="https://nubela.co/proxycurl/pricing"&gt;here&lt;/a&gt; for the full pricing details. For my developer friends, the free version is okay for any app of your choice, 10,000 looks enough 🌝. If you need more(planning to turn your app to a startup 😂😂), you can upgrade and get access to millions of LinkedIn profiles around the world ✨.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Who is LinkDB for??&lt;/strong&gt;
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Companies who has received Venture Capital of at least USD1M&lt;/li&gt;
&lt;li&gt;Companies with more than 50 US/EU employees&lt;/li&gt;
&lt;li&gt;Companies located in a country with a strong rule of law&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Some queries you can perform with LinkDB:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Get all software engineers in San Francisco
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;SELECT
    id,
    parsed_data-&amp;gt;&amp;gt;'first_name' AS first_name,
    parsed_data-&amp;gt;'last_name' AS last_name,
    jsonb_path_query_first(parsed_data, '$.experiences[*] ? (@.ends_at == null &amp;amp;&amp;amp; @.title == "Software Engineer" &amp;amp;&amp;amp; @.location == "San Francisco").title') AS title
FROM profile
WHERE to_tsvector('simple', parsed_data) @@ plainto_tsquery('simple', 'Software Engineer San Francisco') -- general full text search
  AND parsed_data @&amp;gt; '{"experiences": [{"ends_at": null, "title": "Software Engineer", "location": "San Francisco"}]}' -- confirm

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Find all employees working at Apple
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;SELECT
    id,
    parsed_data-&amp;gt;&amp;gt;'first_name' AS first_name,
    parsed_data-&amp;gt;'last_name' AS last_name,
    jsonb_path_query_first(parsed_data, '$.experiences[*] ? (@.ends_at == null &amp;amp;&amp;amp; @.company_linkedin_profile_url == "https://www.linkedin.com/company/apple/").title') AS title
FROM profile
WHERE to_tsvector('simple', parsed_data) @@ plainto_tsquery('simple', 'https://www.linkedin.com/company/apple/')
  AND parsed_data @&amp;gt; '{"experiences": [{"ends_at": null, "company_linkedin_profile_url": "https://www.linkedin.com/company/apple/"}]}'
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;And many more! Click &lt;a href="https://nubela.co/proxycurl/linkdb"&gt;here&lt;/a&gt; for more info. &lt;/p&gt;

&lt;p&gt;And that's it for today! I hope this article was helpful if it was not, I'm sorry to let you down but I'll try better next time. Until I write again, ❤️ Divine.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>project</category>
      <category>programming</category>
    </item>
    <item>
      <title>How to make a stunning README for your Github profile.</title>
      <dc:creator>DivineFavour</dc:creator>
      <pubDate>Tue, 26 Oct 2021 20:58:57 +0000</pubDate>
      <link>https://dev.to/favor/how-to-make-a-stunning-readme-for-your-github-profile-5e8g</link>
      <guid>https://dev.to/favor/how-to-make-a-stunning-readme-for-your-github-profile-5e8g</guid>
      <description>&lt;p&gt;Hi everyone 👋&lt;br&gt;
I've not been writing for some time due to the preparations I've been making for the new school session. So, let's jump right into our story 👇&lt;/p&gt;

&lt;p&gt;...From time to time, when you visit people's Github profiles, you may find amazing animations, pictures and fancy texts. All these are included in the new Github profile READMEs. In this article I'll show you how to make yours as stunning as theirs 😸&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fawmdk1e5ye5kqc2ys9k2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fawmdk1e5ye5kqc2ys9k2.png" alt="My Github Profile"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://github.com/nmasi322/" rel="noopener noreferrer"&gt;https://github.com/nmasi322/&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Creating your README file
&lt;/h2&gt;

&lt;p&gt;To create your README Github profile got to  &lt;a href="https://github.com/new" rel="noopener noreferrer"&gt;https://github.com/new&lt;/a&gt; and create a new repository. Name the repository with your username in that case, mine would be nmasi322/nmasi322 Now it's typed in, you will receive a message telling you about this secret/special repository.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4rxa369chzbgaqvk9tga.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4rxa369chzbgaqvk9tga.png" alt="Creating a new repository"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This is all you need to do here. With that said, you can include any other files like code, pictures, GIFs etc.&lt;/p&gt;

&lt;h2&gt;
  
  
  Making it stand out
&lt;/h2&gt;

&lt;p&gt;You now have your personal README profile, and you could just add your mail, social media links and toss it out for the world to see but guess what? YOUR PROFILE IS VERY BOOORRRIIINNNGGGG 😴💤. It's so boring that recruiters might just skip your profile, but I can help you style this profile in a few minutes. Just follow the steps below.👇&lt;/p&gt;

&lt;h3&gt;
  
  
  Your header
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;You can create a beautiful header at &lt;a href="https://xscoder.com/ths/?ref=producthunt" rel="noopener noreferrer"&gt;https://xscoder.com/ths/?ref=producthunt&lt;/a&gt;, which is where I created mine, or just have your writeup there.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9ypmzzxi19t1gz13c8wt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9ypmzzxi19t1gz13c8wt.png" alt="My header Image"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Next, you should have a little introduction of yourself and what you do or love to do 👩‍💻&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy0a5om45m5fk2vfaid8d.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy0a5om45m5fk2vfaid8d.png" alt="A little intro of myself"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You can then add your social media link through which people can contact you. You can do it when editing your README file below. Press ctrl + k or command + k on your computer to show the link option. The title goes in the square brackets [], while the link goes in the parenthesis ().&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbul4744zncuve90etzly.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbul4744zncuve90etzly.png" alt="Adding your social media links"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Next is your different skills. Feel free to show the different skills which you have acquired in your field 🦚&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzbypwu7lrz1dadmbon3p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzbypwu7lrz1dadmbon3p.png" alt="Skills section"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Then, you can add your extra-curricular activities in the next section. I added my recent blogs in this section.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzw346ztq80x4vxyuisq0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzw346ztq80x4vxyuisq0.png" alt="Extra-curricular activities"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;And finally you can add the special Github Profile Stats by pasting the link below in your README file.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![My GitHub Stats](https://github-readme-stats.vercel.app/api/?username=YOUR_USERNAME&amp;amp;count_private=true&amp;amp;theme=react&amp;amp;showicons=true)]()

[![My GitHub Language Stats](https://github-readme-stats.vercel.app/api/top-langs/?username=YOUR_USERNAME&amp;amp;langs_count=5&amp;amp;theme=react)]()

[![My Contribution Stats](https://github-contribution-stats.vercel.app/api/?username=YOUR_USERNAME)](https://github.com/YOUR_USERNAME/github-contribution-stats/)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Replace YOUR_USERNAME with your Github profile username. You can pin your repositories below your README file and this is how you do it.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;At the top right corner of your profile, click "Your Profile"&lt;/li&gt;
&lt;li&gt;Move down to "Customize your pins"&lt;/li&gt;
&lt;li&gt;Click on the pins you wish to pin to your profile and voila! Your awesome profile is now complete. Don't forget to regularly create repos or projects and upload them to your Github account.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I hope this article was helpful if it was not, I'm sorry to let you down but I'll try better next time. Until I write again, ❤️ Divine.&lt;/p&gt;

</description>
      <category>programming</category>
      <category>webdev</category>
      <category>tutorial</category>
      <category>github</category>
    </item>
  </channel>
</rss>
