<?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: Jason Oboti</title>
    <description>The latest articles on DEV Community by Jason Oboti (@jasonoboti).</description>
    <link>https://dev.to/jasonoboti</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%2F906174%2F3c1b8249-958e-4a2d-8b5d-779cd70be64b.jpeg</url>
      <title>DEV Community: Jason Oboti</title>
      <link>https://dev.to/jasonoboti</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jasonoboti"/>
    <language>en</language>
    <item>
      <title>Create a password generator with Vanilla JS, Html and css</title>
      <dc:creator>Jason Oboti</dc:creator>
      <pubDate>Thu, 18 Aug 2022 00:52:22 +0000</pubDate>
      <link>https://dev.to/jasonoboti/create-a-password-generator-with-vanilla-js-html-and-css-1oc1</link>
      <guid>https://dev.to/jasonoboti/create-a-password-generator-with-vanilla-js-html-and-css-1oc1</guid>
      <description>&lt;p&gt;&lt;strong&gt;Note worthy 📝&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;This article assumes that you already know basic &lt;a href="https://www.w3schools.com/html/default.asp"&gt;html&lt;/a&gt;, &lt;a href="https://www.w3schools.com/css/default.asp"&gt;Css&lt;/a&gt; and &lt;a href="https://www.w3schools.com/js/default.asp"&gt;Javascript&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Let's Start&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;First open up your favorite code editor...I use Vs code, you could use any that your familiar with&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Create a folder with the project name which we would call &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;code&gt;password-generator&lt;/code&gt;.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Open the folder and create the &lt;code&gt;index.html&lt;/code&gt; file for our markup.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Using the emmet key of &lt;code&gt;shift key + !&lt;/code&gt; you would get something like this&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en"&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;meta charset="UTF-8"&amp;gt;
    &amp;lt;meta http-equiv="X-UA-Compatible" content="IE=edge"&amp;gt;
    &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&amp;gt;
    &amp;lt;title&amp;gt;Document&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;

&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In the body tag create the skeleton of the page that looks like this&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    &amp;lt;div class="container"&amp;gt;
      &amp;lt;h2&amp;gt;Password Generator&amp;lt;/h2&amp;gt;
      &amp;lt;div class="result-container"&amp;gt;
        &amp;lt;span id="result"&amp;gt;&amp;lt;/span&amp;gt;
        &amp;lt;button class="btn" id="clipboard"&amp;gt;
          &amp;lt;i class="far fa-clipboard"&amp;gt;&amp;lt;/i&amp;gt;
        &amp;lt;/button&amp;gt;
      &amp;lt;/div&amp;gt;
      &amp;lt;div class="settings"&amp;gt;
        &amp;lt;div class="setting"&amp;gt;
          &amp;lt;label&amp;gt;Password length&amp;lt;/label&amp;gt;
          &amp;lt;input type="number" id="length" min="4" max="20" value="20" /&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="setting"&amp;gt;
          &amp;lt;label&amp;gt;Include uppercase letters&amp;lt;/label&amp;gt;
          &amp;lt;input type="checkbox" id="uppercase" checked /&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="setting"&amp;gt;
          &amp;lt;label&amp;gt;Include lowercase letters&amp;lt;/label&amp;gt;
          &amp;lt;input type="checkbox" id="lowercase" checked /&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="setting"&amp;gt;
          &amp;lt;label&amp;gt;Include numbers&amp;lt;/label&amp;gt;
          &amp;lt;input type="checkbox" id="numbers" checked /&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="setting"&amp;gt;
          &amp;lt;label&amp;gt;Include symbols&amp;lt;/label&amp;gt;
          &amp;lt;input type="checkbox" id="symbols" checked /&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
      &amp;lt;button class="btn btn-large" id="generate"&amp;gt;Generate password&amp;lt;/button&amp;gt;
    &amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Then we move to the CSS for styling&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Create a new file and name it &lt;code&gt;style.css&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Now link the CSS file to the html page by attaching &lt;code&gt;&amp;lt;link rel="stylesheet" href="style.css" /&amp;gt;&lt;/code&gt; in the &lt;code&gt;&amp;lt;head&amp;gt; tag&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;we would set Our CSS box and body properties now&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;* {
    box-sizing: border-box;
}

body {
    background-image: linear-gradient(110deg, #f01313, rgb(97, 167, 18));
    color: #fff;
    display: flex;
    font-family: 'Varela Round', sans-serif;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    min-height: 100vh;
    overflow: hidden;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;&lt;p&gt;I used a linear gradient, you could play around wirh the colors tho.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Set the &lt;code&gt;p&lt;/code&gt;, &lt;code&gt;h&lt;/code&gt; and &lt;code&gt;input&lt;/code&gt; tags to your preferred style&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;p {
    margin: 5px 0;
}

h2 {
    margin: 10px 0 20px;
    text-align: center;
}

input[type=checkbox] {
    margin-right: 0;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now the rest of the styling&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.container {
    background-image: linear-gradient(110deg, rgb(58, 18, 167), #d74242);
    box-shadow: 0px 5px 10px rgba(227, 212, 212, 0.338);
    padding: 20px;
    width: 350px;
    max-width: 100%;
}

.result-container {
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 12px 10px;
    height: 50px;
    width: 100%;
}

.result-container #result {
    word-wrap: break-word;
    max-width: calc(100% - 40px);
}

.result-container .btn {
    font-size: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    width: 40px;
}

.btn {
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    padding: 8px 12px;
    background-color: #4a244a;
}

.btn-large {
    display: block;
    width: 100%;
}

.setting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

@media screen and (max-width: 400px) {
    .result-container {
        font-size: 14px;
    }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;We are done with the styling... initiate more design ides were possible&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now we move to the Javascript&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Create a file named &lt;code&gt;app.js&lt;/code&gt; and link it to the html at the bottom of the page in between the closing &lt;code&gt;&amp;lt;/body&amp;gt;&lt;/code&gt; and &lt;code&gt;&amp;lt;/html&amp;gt;&lt;/code&gt; tags, like:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;script src="main.js"&amp;gt;&amp;lt;/script&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;In the &lt;code&gt;app.js&lt;/code&gt; file, we first manipulate the DOM by getting the elements by the Id names in the html:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const resultEl = document.getElementById('result');
const lengthEl = document.getElementById('length');
const uppercaseEl = document.getElementById('uppercase');
const lowercaseEl = document.getElementById('lowercase');
const numbersEl = document.getElementById('numbers');
const symbolsEl = document.getElementById('symbols');
const generateEl = document.getElementById('generate');
const clipboard = document.getElementById('clipboard');
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now we have to make the styled page to be a working active page&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const randomFunc = {
    lower: getRandomLower,
    upper: getRandomUpper,
    number: getRandomNumber,
    symbol: getRandomSymbol
}

clipboard.addEventListener('click', () =&amp;gt; {
    const textarea = document.createElement('textarea');
    const password = resultEl.innerText;

    if(!password) { return; }

    textarea.value = password;
    document.body.appendChild(textarea);
    textarea.select();
    document.execCommand('copy');
    textarea.remove();
    alert('Password copied to clipboard');
});

generate.addEventListener('click', () =&amp;gt; {
    const length = +lengthEl.value;
    const hasLower = lowercaseEl.checked;
    const hasUpper = uppercaseEl.checked;
    const hasNumber = numbersEl.checked;
    const hasSymbol = symbolsEl.checked;

    resultEl.innerText = generatePassword(hasLower, hasUpper, hasNumber, hasSymbol, length);
});

function generatePassword(lower, upper, number, symbol, length) {
    let generatedPassword = '';
    const typesCount = lower + upper + number + symbol;
    const typesArr = [{lower}, {upper}, {number}, {symbol}].filter(item =&amp;gt; Object.values(item)[0]);

    // Doesn't have a selected type
    if(typesCount === 0) {
        return '';
    }

    // create a loop
    for(let i=0; i&amp;lt;length; i+=typesCount) {
        typesArr.forEach(type =&amp;gt; {
            const funcName = Object.keys(type)[0];
            generatedPassword += randomFunc[funcName]();
        });
    }

    const finalPassword = generatedPassword.slice(0, length);

    return finalPassword;
}

function getRandomLower() {
    return String.fromCharCode(Math.floor(Math.random() * 26) + 97);
}

function getRandomUpper() {
    return String.fromCharCode(Math.floor(Math.random() * 26) + 65);
}

function getRandomNumber() {
    return +String.fromCharCode(Math.floor(Math.random() * 10) + 48);
}

function getRandomSymbol() {
    const symbols = '!@#$%^&amp;amp;*(){}[]=&amp;lt;&amp;gt;/,.'
    return symbols[Math.floor(Math.random() * symbols.length)];
}

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

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;First we create Event listeners for the clipboard and buttons... wait I forgot to attach the font awesome code for the clipboard.&lt;br&gt;
Here it is &amp;lt;script&lt;br&gt;
src="&lt;a href="https://kit.fontawesome.com/db3fa2690b.js"&gt;https://kit.fontawesome.com/db3fa2690b.js&lt;/a&gt;"&lt;br&gt;
crossorigin="anonymous"&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;  to be attached before or after the other &lt;code&gt;&amp;lt;script&amp;gt;&lt;/code&gt; tag in the html&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Now the clipboard&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;clipboard.addEventListener('click', () =&amp;gt; {
    const textarea = document.createElement('textarea');
    const password = resultEl.innerText;

    if(!password) { return; }

    textarea.value = password;
    document.body.appendChild(textarea);
    textarea.select();
    document.execCommand('copy');
    textarea.remove();
    alert('Password copied to clipboard');
});
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then we add Event listeners to the generate button, here we created a &lt;code&gt;const&lt;/code&gt; variable with the value that &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Checks the length of the password&lt;/li&gt;
&lt;li&gt;Put a check mark on the &lt;code&gt;lowercaseEl&lt;/code&gt;, &lt;code&gt;uppercaseEl&lt;/code&gt;, &lt;code&gt;numbersEl&lt;/code&gt;, &lt;code&gt;symbolsEl&lt;/code&gt; elements with a value of &lt;code&gt;checked&lt;/code&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;generate.addEventListener('click', () =&amp;gt; {
    const length = +lengthEl.value;
    const hasLower = lowercaseEl.checked;
    const hasUpper = uppercaseEl.checked;
    const hasNumber = numbersEl.checked;
    const hasSymbol = symbolsEl.checked;

    resultEl.innerText = generatePassword(hasLower, hasUpper, hasNumber, hasSymbol, length);
});
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Now we write a function that generates random password
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;function generatePassword(lower, upper, number, symbol, length) {
    let generatedPassword = '';
    const typesCount = lower + upper + number + symbol;
    const typesArr = [{lower}, {upper}, {number}, {symbol}].filter(item =&amp;gt; Object.values(item)[0]);

    // Doesn't have a selected type
    if(typesCount === 0) {
        return '';
    }

    // create a loop
    for(let i=0; i&amp;lt;length; i+=typesCount) {
        typesArr.forEach(type =&amp;gt; {
            const funcName = Object.keys(type)[0];
            generatedPassword += randomFunc[funcName]();
        });
    }

    const finalPassword = generatedPassword.slice(0, length);

    return finalPassword;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now create random numbers from the character code encoding&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;function getRandomLower() {
    return String.fromCharCode(Math.floor(Math.random() * 26) + 97);
}

function getRandomUpper() {
    return String.fromCharCode(Math.floor(Math.random() * 26) + 65);
}

function getRandomNumber() {
    return +String.fromCharCode(Math.floor(Math.random() * 10) + 48);
}

function getRandomSymbol() {
    const symbols = '!@#$%^&amp;amp;*(){}[]=&amp;lt;&amp;gt;/,.'
    return symbols[Math.floor(Math.random() * symbols.length)];
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;We have to get back to the top now and create a new variable object that stores the random function
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const randomFunc = {
    lower: getRandomLower,
    upper: getRandomUpper,
    number: getRandomNumber,
    symbol: getRandomSymbol
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Hurray 🥳&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Now we've successfully built a password generator... this is one of my first projects in my coding journey
So I decided to share it here &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Check out the source on GitHub: &lt;a href="https://github.com/JasonOboti/Password-Generator"&gt;https://github.com/JasonOboti/Password-Generator&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;If you followed along you should have something like this&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--OOpWBAC1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/n1r3ejtbvtqu43n55mj5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--OOpWBAC1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/n1r3ejtbvtqu43n55mj5.png" alt="Image description" width="880" height="587"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>beginners</category>
      <category>tutorial</category>
      <category>html</category>
    </item>
    <item>
      <title>Make $50 in 24 Hours Autopilot</title>
      <dc:creator>Jason Oboti</dc:creator>
      <pubDate>Tue, 09 Aug 2022 23:31:32 +0000</pubDate>
      <link>https://dev.to/jasonoboti/make-50-in-24-hours-autopilot-2pji</link>
      <guid>https://dev.to/jasonoboti/make-50-in-24-hours-autopilot-2pji</guid>
      <description>&lt;p&gt;Make $50 in 24 Hours Autopilot &lt;/p&gt;

&lt;p&gt;Thank you for reading this ebook. You've made a great  decision doing so. With this ebook in your hands, you pretty  much already have money in your bank. Why? Because in the  next few minutes, I will show you EXACTLY how to make $50 (you  can level it up to $500) within 24 hours easily. This can be  repeated over and over again as many times as you want. &lt;br&gt;
Now, this is not another one of those “get rich quick” ebooks that  promises you to become a millionaire overnight, nor is it a guide  to building a six-figure business. What this ebook WILL teach you&lt;br&gt;&lt;br&gt;
is how to make some extra bucks on the side the easy and lazy  way, which you can use to buy a new gadget, pay off some debt,  or eat out at a nice restaurant.&lt;br&gt;
Follow each step EXACTLY and I guarantee you will earn $50 or  more within 24 hours or less. I did. My 12-year-old son did. Why  couldn't you? &lt;br&gt;
What you need: &lt;br&gt;
− A computer &lt;br&gt;
− An internet connection &lt;br&gt;
− Paypal account or Bitcoin wallet &lt;br&gt;
Step 1: &lt;br&gt;
First visit [&lt;a href="https://pointsprizes.com/r/3385166"&gt;https://pointsprizes.com/r/3385166&lt;/a&gt;] and sign up. &lt;br&gt;
In this site you can earn points and earn money with your points I  will show you how to earn points easy and withdrawal your first  $20 in next 4 hours {autopilot} just need a little effort for setup&lt;/p&gt;

&lt;p&gt;Step 2: &lt;br&gt;
You will be redirected to a page similar to the one below. Click  “Use Coupons” &lt;br&gt;
Then enter this coupon codes and click on redeem &lt;/p&gt;

&lt;p&gt;Here is coupons:  POINTSPRIZES25 &lt;br&gt;
RANKER25 &lt;br&gt;
DELTA100 &lt;br&gt;
FEARLESS50 &lt;br&gt;
ICE50 &lt;br&gt;
KINGY25 &lt;br&gt;
FACEPAGE1920 &lt;br&gt;
MRSHARPZO50 &lt;br&gt;
MIGHTYSALEH25 &lt;br&gt;
SHADOW25 &lt;br&gt;
REDDITSUB345 &lt;br&gt;
BEERMONEY3573 &lt;br&gt;
FACEGROUP900 &lt;br&gt;
GOOGCOM294 &lt;br&gt;
QUANTECH3000 &lt;br&gt;
TWEETR562 &lt;br&gt;
POINTYNEWYEAR50 &lt;br&gt;
MARVELOUSEXCLUSIVE10 COMET50 &lt;br&gt;
DELTA50&lt;/p&gt;

&lt;p&gt;LACUNA75 &lt;br&gt;
MIGHTYSALEH100 &lt;br&gt;
HELPCENTER10 &lt;br&gt;
TRUSTSPOT25 &lt;br&gt;
DOGHOUSE1337 &lt;br&gt;
EMZ100 &lt;br&gt;
Now you earned easy 500 points with this coupons  You need 3000 points to withdrawal $20&lt;br&gt;&lt;br&gt;
Follow me to earn more points : ) &lt;br&gt;
Step 3: &lt;br&gt;
Then go to referral links and copy one of referral links have x3  bonus  &lt;/p&gt;

&lt;p&gt;Step 4: &lt;br&gt;
Go to the link below to download the editable version of this  eBook. &lt;br&gt;
&lt;a href="https://tinyurl.com/mahdidmc231"&gt;https://tinyurl.com/mahdidmc231&lt;/a&gt;&lt;br&gt;
Replace [ENTER YOUR LINK] with the link you copied in site.  Save the document. &lt;br&gt;
Step 8: &lt;br&gt;
Go to &lt;a href="http://www.pdfonline.com/convert-pdf/"&gt;http://www.pdfonline.com/convert-pdf/&lt;/a&gt; and convert the  saved document to PDF. &lt;br&gt;
Step 9: &lt;br&gt;
Share the PDF everywhere! I'd recommend sharing it on internet  marketing forums. Below is a list of forums to share the PDF on: &lt;br&gt;
&lt;a href="http://warriorforum.com"&gt;http://warriorforum.com&lt;/a&gt; &lt;br&gt;
&lt;a href="http://www.ukbusinessforums.co.uk/forums/"&gt;http://www.ukbusinessforums.co.uk/forums/&lt;/a&gt; &lt;br&gt;
&lt;a href="http://www.blackhatworld.com/"&gt;http://www.blackhatworld.com/&lt;/a&gt; &lt;br&gt;
&lt;a href="https://forums.digitalpoint.com/"&gt;https://forums.digitalpoint.com/&lt;/a&gt; &lt;br&gt;
&lt;a href="http://www.webmasterworld.com/"&gt;http://www.webmasterworld.com/&lt;/a&gt; &lt;br&gt;
&lt;a href="http://www.wickedfire.com/"&gt;http://www.wickedfire.com/&lt;/a&gt; &lt;br&gt;
&lt;a href="http://www.v7n.com/forums/"&gt;http://www.v7n.com/forums/&lt;/a&gt; &lt;br&gt;
&lt;a href="http://forums.seochat.com/"&gt;http://forums.seochat.com/&lt;/a&gt; &lt;br&gt;
&lt;a href="http://www.affilorama.com/forum/"&gt;http://www.affilorama.com/forum/&lt;/a&gt; &lt;br&gt;
&lt;a href="http://www.cpaelites.com/"&gt;http://www.cpaelites.com/&lt;/a&gt;&lt;br&gt;
&lt;a href="http://www.affiliatefix.com/"&gt;http://www.affiliatefix.com/&lt;/a&gt; &lt;br&gt;
For more points, share the PDF with your friends as well. Very  soon, they will share it with their friends too! &lt;br&gt;
You will earn 10% of your referrals earning : ) &lt;br&gt;
Step 10: &lt;br&gt;
Now sit back, relax and watch as your points roll in!&lt;br&gt;&lt;br&gt;
Once you have over 3000 points, cash out by clicking Claim Prizes  and select anything you want . &lt;br&gt;
Bam! Easiest $20 ever!&lt;br&gt;&lt;br&gt;
The Best Way To Earn faster Is To Enter Surveys/Giveaways (WHICH DON'T TAKE  LONG AT ALL. I'VE NEVER HAD A SURVEY THAT HAS TAKEN MORE THAN 5  MINUTES) &lt;br&gt;
I took it a step further, shared the PDF to 100+ websites and  managed to earn around $500+ in less than 24 hours! &lt;br&gt;
So, what are you waiting for? TAKE ACTION NOW! &lt;br&gt;
To your success, &lt;br&gt;
Michael Hill &lt;br&gt;
Internet Marketing Expert&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
