Design a site like this with WordPress.com
Get started

PASSWORD GENERATOR TOOL…

Page Title

@charset “UTF-8”;
body {
min-height: 100vh;
padding-top: 100px;
background: linear-gradient(20deg, #b2085a 0%, #52149e 51%, #089bd1 95%);
font-family: “Kanit”, sans-serif;
font-weight: 300;
}

.instructions {
font-size: 0.9rem;
text-align: left;
}

h1, h2, h3, h4, h5, h6 {
font-weight: 500;
margin: 0;
}

.title-wrapper {
background: #af5095;
padding: 2px 10px;
color: white;
}

h1 {
font-size: 1.1rem;
}

.inner-wrapper {
padding: 20px;
}

.wrapper {
overflow: hidden;
margin: auto;
width: 90%;
max-width: 380px;
background: white;
border-radius: 5px;
box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-flow: column wrap;
}
.wrapper .password-wrapper {
position: relative;
border: 2px solid lightgray;
color: gray;
padding: 2px 2px 2px 8px;
border-radius: 5px;
text-align: left;
display: -webkit-box;
display: flex;
-webkit-box-pack: justify;
justify-content: space-between;
}
.wrapper .password-wrapper .alert {
position: absolute;
padding: 0 5px;
border-radius: 2px;
width: 21ch;
height: 89%;
left: 2px;
top: -100%;
width: 96%;
text-align: center;
color: #333;
opacity: 0;
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.wrapper .password-wrapper .alert.success {
background: rgba(88, 216, 191, 0.9);
opacity: 1;
}
.wrapper .password-wrapper .alert.fail {
background: rgba(188, 90, 118, 0.9);
color: white;
opacity: 1;
}
.wrapper .password-wrapper .copy {
height: 100%;
width: 50px;
background: #af5095;
border: 0;
color: white;
border-radius: 2px;
padding: 8px;
cursor: pointer;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.wrapper .password-wrapper .copy:hover {
background: #b762a0;
}
.wrapper .controls {
text-align: left;
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-flow: column wrap;
}
.wrapper .controls .control {
padding: 3px;
border-bottom: 1px solid lightgray;
width: 100%;
margin: 2px;
}
.wrapper .controls .generate {
width: 100%;
border: 0;
color: white;
background: #af5095;
border-radius: 3px;
height: 25px;
margin-top: 10px;
-webkit-transition: all 0.3s ease;
transition: all 0.3s ease;
}
.wrapper .controls .generate:hover {
background: #b762a0;
}

#length-box {
width: 100%;
}
#length-box input {
width: 100%;
}

input[type=”checkbox”] {
visibility: hidden;
}

label.check-label {
position: relative;
}
label.check-label:before {
content: “”;
height: 1rem;
width: 1rem;
left: -24px;
top: 0;
border: 0.5px solid lightgray;
position: absolute;
background: transparent;
-webkit-transition: all 0.3s cubic-bezier(0, 0.82, 1, 1.81);
transition: all 0.3s cubic-bezier(0, 0.82, 1, 1.81);
}

input[type=”checkbox”]:checked + label.check-label:before {
content: “?”;
font-family: “FontAwesome”;
font-size: 0.8rem;
color: #58d8bf;
text-align: center;
background: #d4f5ef;
-webkit-transition: all 0.3s cubic-bezier(0, 0.82, 1, 1.81);
transition: all 0.3s cubic-bezier(0, 0.82, 1, 1.81);
}

Password Generator

—-

Copy

Select your options and click the “generate” button. Your passord will appear above.

Password Length

Use lowercase letters

Use uppercase letters

Use numbers

Use special characters

Generate!

https://cdn.jsdelivr.net/npm/clipboard@1/dist/clipboard.min.js

var clipboard = new Clipboard(‘.copy’);
var lowercase = “abcdefghijklmnopqrstuvwxyz”,
uppercase = “ABCDEFGHIJKLMNOPQRSTUVWXYZ”,
numbers = “0123456789”,
punctuation = “!@#$%^&*()_+~`|}{[]:;?><,./-=",
lowercaseInput = document.getElementById("lowercase"),
uppercaseInput = document.getElementById("uppercase"),
punctuationInput = document.getElementById("punctuation"),
numbersInput = document.getElementById("numbers"),
lengthInput = document.getElementById("length"),
passwordFeild = document.getElementById("password-here"),
generateButton = document.getElementById("generate"),
copyButton = document.getElementById("copy"),
plength,
userPassword,
passwordCharSet;

function generate() {
userPassword = "";
passwordCharSet = "";
if (lowercaseInput.checked) {
passwordCharSet += lowercase;
}
if (uppercaseInput.checked) {
passwordCharSet += uppercase;
}
if (punctuationInput.checked) {
passwordCharSet += punctuation;
}
if (numbersInput.checked) {
passwordCharSet += numbers;
}
plength = Number(lengthInput.value);

for (let i = 0; i < plength; i++) {
userPassword += passwordCharSet.charAt(
Math.floor(Math.random() * passwordCharSet.length)
);
}
if (userPassword == "") {
let alertbox = document.getElementById('alert');
alertbox.innerHTML = "Please select an option before generating"
alertbox.classList.add('fail');
setTimeout(function(){
alertbox.classList.remove('fail');
}, 3000);
} else {
passwordFeild.innerHTML = userPassword;
}
copyButton.setAttribute("data-clipboard-text", userPassword)
}
generateButton.addEventListener("click", generate);

clipboard.on('success', function(e) {
console.info('Action:', e.action);
console.info('Text:', e.text);
console.info('Trigger:', e.trigger);
let alertbox = document.getElementById('alert');
alertbox.innerHTML = "Copied!"
alertbox.classList.add('success');
setTimeout(function(){
alertbox.classList.remove('success');
}, 3000);

e.clearSelection();
});

clipboard.on('error', function(e) {
console.error('Action:', e.action);
console.error('Trigger:', e.trigger);
let alertbox = document.getElementById('alert');
alertbox.innerHTML = "Try select the text to copy"
alertbox.classList.add('fail');
setTimeout(function(){
alertbox.classList.remove('fail');
}, 3000);
});

KEYWORD RESEARCH TOOL…….

Your browser does not support iframes.

A To Z Keyword Research Online

Search engines are programs that find, organize, and display information on the Internet. They are used to find websites, images, videos, articles, and other types of data. The most popular search engine is Google, and all the searches are based on keywords.
Keyword Research Tool is an online Keyword Research Tool that helps you find keywords that you can use to optimize your website for search engines, keyword finder tool is a useful resource for anyone who is trying to determine the most common words on a website. Keyword finder tools will list the top words that appear on a website, as well as how many times those words appear. In some cases, Keyword Research Tool also offers suggestions for related keywords that can be used to expand a website’s reach.
A keyword finder tool is a computer program that scans text and returns all of the words that are included in a given list of keywords. Keyword finder tools are useful for marketers, writers, and businesses to conduct market research.

Magical Success Formula…

Magical Success Formula

Are you looking for the secret or magical success formula?

Do you think it’s a well-guarded, password-protected

valuable locked away in some private vault? Good news! In

this article I open wide the door to the success formula

vault.

Here’s The Secret…

The secret to success is having a strong vision and the

perseverance and determination to overcome whatever

obstacles get in your way, along with the courage to make a

difference. Not what you wanted to hear? Read on.

When Amadeo Peter Giannini (better known as A.P.) was only

7, his father died in a fight over one dollar. Times got

real hard. Eventually A.P.’s mother married a man in the

produce business. At age 14 A.P. quit school to work with

his stepfather. By 19 he was a partner in their thriving

enterprise. It was here that A.P. built his reputation for

integrity and honesty. At 31 years of age he had all the

money he needed or wanted, and announced his retirement.

At 32, A.P’s real career started when he was asked to join

the board of the Columbus Savings & Loan society. It wasn’t

long before A.P found himself at odds with the other

directors. He wanted the bank to loan money to hard-working

immigrants, but at that time banks catered only to business

men and the wealthy. His ideas of loaning money to the

working class were scoffed at.

But A.P. was determined to make a difference for immigrants

too – he had the vision, the perseverance and determination.

He raised $150,000, and bought a converted saloon across the

street from the Columbus S&L. A. P. kept the bartender on as

an assistant teller, and opened the Bank of Italy. It was

here he began to make a difference – to devise his real

success formula.

It was considered improper and uncouth, but A.P. began

ringing doorbells and talking to everyone he could about his

bank. He advertised. He kept the bank open longer hours and

on weekends to fit into working people’s schedules. Business

boomed. He knew he was beginning to make a difference.

But making money wasn’t A.P.’s sole measurement of success.

He believed he could make a difference by making other

people’s dreams come true, too. He helped the California

Wine Industry get started. He bankrolled Hollywood when they

were trying to make movies popular. When Walt Disney ran $2

million dollars over budget on Snow White, he stepped in

with a loan.

A.P.’s story exemplifies the secret to success — a strong

vision, the perseverance and determination to overcome

obstacles thrown your way and the courage to make a

difference, even in the face of opposition.

OK, I Gave Away The Secret — Now Here’s The Success Formula Integrity combined with “giving back” is the real success

formula. This was A.P.’s personal success formula. What

began in 1904 as the Bank of Italy is now the Bank of

America — the world’s largest bank.

And what about A.P.? Did he die a billionaire?

When he passed away at age 79, A.P.’s estate was worth less

than $500,000. This was purely by choice. A.P. looked down

on great wealth. He believed it would make him lose touch

with the people he wanted to serve. He worked without pay

for years. One year he was given a surprise $1.5 million

bonus and promptly gave it to the University of California.

It’s a winning success formula — integrity plus “giving

back.”

There’s One More Thing –

By every standard, Amadeo Peter Giannini was a success. But

his true measure of success was to make a difference every

day of his life. I hope that will be your measuring stick as

well. To achieve success, you’ve got to have a strong

vision, and the perseverance and determination to overcome

the obstacles that will come your way, permeated with

integrity. Adding to that, give back to your community –

make a difference and you’ll be successful indeed!

Planning of Success…

Here are some general start-up tips for a successful home business.

The first tip is a word of caution. It’s easy to think that because your home business can bypass the lease or construction aspects of starting a business, and the overhead costs of furnishing, maintenance, landscaping, utilities and so forth, that you can skip over some other processes to. That attitude, rather than heading someone down the road to a successful home business, could lead to financial business disaster.

An entrepreneurial spirit and a great idea are terrific assets for a successful home business. Other things are important too, however.

Market research and careful planning are of paramount important to the success of a home business, as they are for any business. A business plan is a must. It must include details on the products and services the firm will offer, the type of business equipment and the cost of it that will be needed in the coming five years. It should also include information on the competition in the designated market area. This information should include ways that the new home business will be successful in competing – how it is unique and how it is an improvement over what else is out there in the same industry.

A successful home business is one that is set up as the right legal entity. One of the first things new home based entrepreneurs should do is learn the legal consequences and liabilities of the various business types, as well as the tax consequences of each. A home business might be more successful as a partnership than sole proprietorship, for example, if additional cash flow is needed, or the entrepreneur is deficient in a crucial home business skill such as advertising, marketing or accounting, for example. An accountant can advise on the various options such as limited liability corporations, S corporations, standard corporations, limited partnerships and so forth.

Unless a successful home business is going to include walk in customers homeowner’s or renters insurance should provide adequate financial protection against theft or natural disaster. Of course, as equipment and furnishings are added, the insurance would need to increase. If clients were to come to the home office location, liability insurance would protect the firm from the financial devastating situation of customer injury.

A successful home business is one that is well planned and well funded. There is no such thing as too much preparation

This free course teaches many many successful concepts. I think this was an excellent course. That all should check it out. It shows what so many people miss when learning about marketing. In the course the writer spoke of how important that apositive attitude is. This is so very true. Many many people want to make money online. THey want to have their own internet business. So they join as affiliates in a program or they find a product that they think is pretty good.Then with their excitement they last for 1 to 6 weeks,depending on the programs sales letter that got them in to start with. But when it comes time for them to actually start putting forward the effort, they start doubting, first in themself then in the program or product.So many people fail because they panic and say” Oh what do I do now?”All you need to do is remember, you bought it right? Do you buy dumb things or ideas? You just need to get started. One foot in front of the other, or in this case one ad after another. It was put in front of you right? You bought. Another thing you can’t expect to be a success over night. Any business out there will tell you it takes time to get your name and your product out there in front of people. The last thing you want to do is to subconsciously sabotage yourself. If you start planting a bunch of negetives in your mind you will work your way right to them. It is strange how people can make it so easy to fail when they could make it just as easy to succeed. A successful person gets up one more time than they have been knocked down. My favorite one is that it’s better to shoot for the moon and miss, than to shoot for the gutter and hit. So if you really want to be succesful.. don’t let the negetive people or thoughts get in your way. Be positive, be active and be patient. Just get it done!

Success is Attitude Too….

This free course teaches many many successful concepts. I think this was an excellent course. That all should check it out. It shows what so many people miss when learning about marketing.

In the course the writer spoke of how important that apositive attitude is. This is so very true. Many many people want to make money online. THey want to have their own internet business. So they join as affiliates in a

program or they find a product that they think is pretty good.Then with their excitement they last for 1 to 6 weeks,depending on the programs sales letter that got them in to start with.

But when it comes time for them to actually start putting forward the effort, they start doubting, first in themself then in the program or product.So many people fail because they panic and say” Oh what do I do now?”All you

need to do is remember, you bought it right? Do you buy dumb things or ideas?

You just need to get started. One foot in front of the other, or in this case one ad after another. It was put in front of you right? You bought. Another thing you can’t expect to be a success over night. Any business out there

will tell you it takes time to get your name and your product out there in front of people.

The last thing you want to do is to subconsciously sabotage yourself. If you start planting a bunch of negetives in your mind you will work your way right to them.

It is strange how people can make it so easy to fail when they could make it just as easy to succeed. A successful person gets up one more time than they have been knocked down. My favorite one is that it’s better to shoot for the moon and miss, than to shoot for the gutter and hit.

So if you really want to be succesful.. don’t let the

negetive people or thoughts get in your way.

Be positive, be active and be patient. Just get it done!

Success Lessons From Baseball Enthusiasm And Excitement Can Make The Difference…

I remember, about 35 years ago, reading two books by Frank Bettger, the baseball player, about how enthusiasm made all the difference in his life. His books made a difference in my life at the time and are still well worth reading and re-reading.

Probably the most famous of his books is “How I raised myself from failure to success in selling”. Frank died in 1981 but his books and priceless ideas live on.

In 1907, he played baseball for Johnstown in Pennsylvania for $175 dollars a month. He was young and ambitious but was fired for being lazy. He was not really lazy but had been trying to control his nervousness by being laid back.

His manager told him: “Whatever you do after you leave here, for heaven’s sake, wake yourself up and put some life and enthusiasm into your work.”

Frank went to Chester, Pennsylvania where he played baseball for only $25 a month. Frank commented: “Well, I couldn’t feel very enthusiastic on that kind of money but I began to act enthusiastic.”

After a few days he was given a trial at New Haven, Connecticut. No one knew him in that league so he decided to establish a reputation for enthusiasm. Once established, he would be forced to live up to his own reputation:

“From the minute I appeared on the field I acted like a man electrified. I acted as though I were alive with a million batteries.”

Frank threw the ball hard and fast around the diamond and ran like a madman to score for his team. All this was on a hot day when the thermometer was 100 degrees. The act he was putting on worked like magic.

His nervousness now worked for him by fueling his energy. His enthusiasm affected the other players on the field and they, too, became enthusiastic. He felt better during the game and after it than ever before.

Next day, the New Haven newspaper wrote: “This new player, Bettger, has a barrel of enthusiasm. He inspired our boys. They not only won the game but looked better than any time this season.”

The papers began calling him “Pep” Bettger, the life of the team. Enthusiasm increased his income in ten days from $25 a month to $185 a month. This was a 700% increase.

Bettger insists that he earned the income not for his ability which was the same as before but for his enthusiasm alone. He could not catch or hit better than before. Two years later he was playing 3rd base for the St Louis Cardinals.

Another two years later, he injured his arm and was forced out of baseball. Two years after this, he ended up selling life insurance. He was a miserable failure at this until he went to a public speaking course run by the great Dale Carnegie. Carnegie, like his first manager, told him to be more enthusiastic.

Carnegie then went on to give a talk on enthusiasm to his class. He became so excited that he threw a chair against a wall and broke one of its legs. All this reminded Frank of his early experiences in the baseball world.

“That night, I decided to stay in the insurance business and put the same enthusiasm into selling that I had put into baseball.”

During his first sales pitch after this decision, he became so excited that he pounded his fist. He could hardly believe it when his customer listened intently and then bought the insurance policy. He does not equate enthusiasm with fist pounding but “if fist pounding is what you need to arouse yourself inside, then I am overwhelmingly for it. I know this: When I force myself to act enthusiastic I soon feel enthusiastic.”

Frank went on to become a great salesman and a man who has inspired many other salesmen and ordinary citizens to live their lives with enthusiasm.

A salesman who is enthusiastic can outsell a non enthusiastic salesman who has much greater knowledge. The enthusiastic person is like a magnet. He or she attracts and inspires others to do what they thought was beyond them.

You can acquire enthusiasm simply and quickly by forcing yourself to act enthusiastically. It also helps to re-read your favourite inspiring passages daily.

Frank, himself, was inspired by a great quote from Walter Chrysler. When Chrysler was asked to give the secret of success, he listed qualities such as ‘ability, capacity, and energy’ but added that the real secret was ‘enthusiasm.’

“Yes, more than enthusiasm,” said Chrysler, “I would say ‘excitement’. I like to see men get excited. When they get excited, they get customers excited and we get business.”

Enthusiasm can make a huge difference. We could all benefit by being enthusiastic about something that we currently find boring. We could be amazed at how excited we become and how skilful we become. We could also notice that the fire of our enthusiasm soon spreads to other people.

We could end up in the ‘major leagues’ of whatever we become enthusiastic about and we could have more friends, more fun and more money!

How Do I Manifest My Desires…


If you are asking the question how do I manifest, then read this. Learning to manifest your desires is similar to learning

to swim.

So how is swimming similar to manifesting?

Both manifesting and swimming requires total trust, i.e. letting go. In the case of manifesting, you need to let go

of your need to control the outcome and trust that you shall receive that which you seek.

In the case of swimming you trust that you will not drown.

Everyon*e who has learned to swim will tell you that fear causes you to sink. Lack of fear allows you to float. And

even if you go down it will be temporary and you’ll soon bob back to the surface.

It is the same with trying to manifest your desires. It should be practically fait accompli (It’s already done). Accept your desires as alrea*dy having been fulfilled. If you have any doubts whatsoever, that this is not so, you will fail to attract your desires.

You can fool people, but you cannot fool the Universe. Every thought, feeling or doubt, no matter how slight is vibrated out to the Universe.

I only learned to swim now recently and it was while in the pool that I realized the parallels between swimming and manifesting.

I was baffled by the fact that I had difficulty keeping my hea*d above water, while experienced swimmers didn’t have such a problem. They would swim effortlessly while I struggled.

That was until my instructor said this: “The reason you sink is because you don’t trust the water to keep you up. You’re afraid that if you let go, you’ll go down.”

And then it hit me. It is the same with manifesting your desires!

No trust, no manifestation.

It’s only when you totally and unequivocally trust that your desires are as good as having alrea*dy been delivered, that the manifestation will appear.

The proof of your total trust is when you express your gratitude and already start celebrating, in spite of your present reality which may be the exact opposite of what you profess.

However, just as it is with swimming, getting to that point doesn’t happen overnight. We first have to let go of our fears which is a product of our past experiences

Until we choose to change and do things differently, we will continue to get the things we’ve always gotten.

So in short the answer to the question, how do I manifest, is to just trust.

Trust that the Universe/God wants what’s best for you and is fully capable to supply what you want.

Trust that if you follow the laws of attraction and of manifestation, you shall certainly have everything you want.

Trust that just as the water lifts you up and lets you float, the Universe shall keep your head above the tides of life, irrespective of how fearful things may seem right now.

Breaking The Habit Overcoming Your Shyness…

Do you often feel uneasy in social settings? Do large gathering of people make you want to retreat back to the safety and solitude of your home? Do you often break out in a sweat or get nervous when at a large function? If any of these sounds familiar you probably are one of the many people who suffer from social anxiety disorder. The good news is with time, counseling and practice you can join the ranks of the hundreds of thousands of people who are breaking the habit and re-introducing themselves to social settings with ease.

Many of us yearn to be able to get up in front of large crowds of people and be in the spotlight. We see others around us who are at ease with being the center of attention and the respect they earn for doing so. Yet when it comes time for us to take the stage or be the center of attention we often feel ill or uneasy about the entire situation. While some may think of this as purely a habit that has no consequences except for our embarrassment, the truth of the matter is people who are uneasy about themselves or react badly in social gatherings tend to be passed over in life for promotions, advancement and just being a “part of the group”.

There are a number of methods and simple at-home exercises you can do to help you overcome your anxiety and re-join the crowds and social activities you may have had to give up out of fear. A number of online support groups as well as local support resources provide the information and help many people need to regain control of their fears and stare them down.

If you believe you may be suffering from this disorder start by reaching out for help either online or locally. You don’t need to be afraid of interacting with society – there are those out there who can help you.

Plan your Success…

“Now, Work Your Plan”

Early in my career, I was told, “Most people have a business plan, but the problem is they don’t work their plan.” The same may be said of New Year resolutions. How many promises did you make to yourself and on how many of them will you follow through?

One major problem is sometimes too many goals are set. Another issue may be the one goal is so dramatic it would consume all of your time to achieve. In fact, it may be so huge, it becomes overwhelming. At this stage, not only will you not work on this idea, but the state of overwhelm will prevent you from achieving your other simpler goals.

For example, if you wanted to get known nationwide this year, you would have to undertake major public relations strides to accomplish this. It would entail speaking everywhere you could, demonstrating your expertise, contacting as much of the media as possible and the continuation of being seen and heard in every manner known to mankind.

At the same time, you still have all of the other avenues of your business to contend with as the CEO of your own company. How do you combat this dilemma?

In my mind, I equated a large year-long project with a one-a-day vitamin. My suggestion is to break down the public relations strategies into do-able tasks. First, outline absolutely everything you can think of that will need to be tried and completed for you to feel 100% successful. Then prioritize the steps in order of what will take the longest to complete.

Begin with the most difficult and time-consuming tasks first. The reasoning here is two-fold. First, you have the most excitement the beginning of the year, as in, “I’m really going to do it this time!” So it will be easier to tackle the difficult assignment now. Second, if you begin a long project at the end of the year, you may not complete it on time and you will feel you have let yourself down.

Now that you know which task to begin, complete at minimum, one step of it each day dependent upon how much time you can devote to the project. This is where I liken the process to the one-a-day vitamin.

One task a day devoted to your highest priority will give you renewed energy to keep on going! You will feel excitement coming your way and the adrenalin will be flowing. Your project will become easier and more joyful each day as you complete a task.

As you become accustomed to the daily routine of working on your big project, it will be easier to squeeze in a couple of the smaller tasks too. Within several months, you begin to feel as if you are making strides in getting known and the other areas of your business are growing too. In fact, as all areas of your business build together, new business will come your way with far less effort.

When you work strategically, the worry diminishes and the smiles return to your face. At the same time, be certain to help those who need your area of expertise or who want to follow in your footsteps. Your new demeanor will attract new clients as you are happy, confident and apparently successful. You will also build repeat business, referrals and testimonials – all essential ingredients for success.

Every few months you will be able to see and measure you progress. Mid-year, you should be feeling fairly popular. By the end of the year, you will have succeeded and be known nationwide!

Additional ideas to build business:

– The end of each week review each day’s accomplishment

– On Friday devise a plan for the daily tasks for the following week

– As the difficult tasks complete, incorporate the simpler ones

– Increase your dosage of vitamins or daily tasks as the routine simplifies

– Share your good news of accomplishments

– Vow to keep taking your business vitamins year after year

The end result of paying excellent attention to your plan is it will succeed, and Your Profits Will Soar!

%d bloggers like this: