‘The Journey’ is all about the different tastes and flavours…. wandering among the virtual streets…different Paths and Destinations… from Technology to Gadgets… from Humor to Practical Lessons…from Truth to Fictions… from current issues to market conditions… and wat’s not…
Lately- I was exploring - what could be better way to earn some extra Dollars ($) as a passive income.
Believe me - As per my analysis and research there isn't anything like "Passive Income"- you know why - because you need to work hard for this- the income is not coming as it is - without doing any thing. So you are getting extra money- because you worked hard for the same.
Being myself as a techie guy- I sorted out the 12 - Hot different ways to earn extra money.
Dividend Stocks:
Stocks with Dividends- Buy Dividend Stocks.
Buy Cypto Currency:
Buy Cypto currency - But word of caution -be very careful while doing so.
Blogging:
Start Blogging
Invest in Real estates:
Invest into Real estates. Yes- agree - for doing this you need to have some flowing money in your pocket.
Affiliate Marketing:
Start Affiliate marketing. This commission based option can earn you some extra income.
EBooks:
Publish your ebook. If you are creative and have this skill.
Vlogs:
This is most popular with this new generate. With the advancement of technology and time. Blog is replacing with Vlog- Which means - Video logs. If you are not video shy and want to present yourself and not shy with camera- This option for you- vlog is a getting more and more popular nowadays.
Sell Photographs online:
If Photography is your passion - you can earn some dollars of it. Upload your creative pictures and sell them online.
Podcast-
Podcast is another thing you can use for extra money.
Audio Books
Read the books for other and convert to audio book and you can earn some money.
Domain Flipping
If you are techie and know about domain and hosting. Domain flipping be another option to earn some money.
Website Creation-
Create websites and earn money.
Visit here as well-
Inspiration : e-book Title:
9-R's (Nine Rules) : Nine Rules of being Luxuriously Frugal
With the growing age and maturity, I really start finding the need to take care of personal money, money management and about financial management .
I start exploring and finding utilities of Personal Financial management.
My life start getting shape. And I start understanding finance well. Implementing the small little rules - really make the financial health better.
I would literally - considering myself lucky and thank to one of my colleague who - explain me little things in order to get the finance well.
My friend John - explain me - taking care of financial health is just like taking care of your physical health. John - introduced me with one recent publication - a book on amazon.
Titled -
"9-R's (Nine Rules) : Nine Rules of being Luxuriously Frugal "
(https://www.amazon.com/dp/B09FH82WS5) - Disclaimer- Just to make sure - this is NOT an affiliate link.
The nine rules mentioned in this little magic - ebook - totally make sense.
The in details of the book - on describing the - 9 Rules - which really save some money - is really magical.
I will keep putting each rule- and explain in further writings.
Fix : Run the command from PowerShell! (PowerShell as Administrator)
If above solution does not work - try this
Dont work for me: and in cmd, and powershell, in all cases script was runned with admin permission, but I get the same error. I`m also try to run it from npm folder where its located.
PS C:\Users\mishelen\AppData\Roaming\npm> npm-windows-upgrade
npm-windows-upgrade 0.5.1
? This tool will upgrade npm. Do you want to continue? Yes
Scripts cannot be executed on this system.
To fix, run the command below as Administrator in PowerShell and try again:
Set-ExecutionPolicy Unrestricted -Scope CurrentUser -Force
The simplest and fastest way to check whether a string contains a substring or not in JavaScript is the indexOf() method. This method returns the index or position of the first occurrence of substring within the string, otherwise, it returns -1 if no match found. Here is an example:
<script>
// Sample string
varstr = "The quick brown fox jumps over the lazy dog."
// Check if the substring exists inside the string
varindex = str.indexOf("fox");
if(index !== -1){
alert("Substring found!");
} else{
alert("Substring not found!");
}
</script>
In ES6 you can use the includes() method to check if a contains a substring. This method simply returns true or false instead of the index. Let's check out an example:
<script>
// Sample string
varstr = "The quick brown fox jumps over the lazy dog."
// Check if string contains substring
if(str.includes("fox")){
alert("Substring found!");
} else{
alert("Substring not found!");
}
</script>
Check out the tutorial on JavaScript ES6 features to learn about new features introduced in ES6.
Further, you can use the search() method to search a particular piece of text or pattern (using regular expression) inside a string. Like indexOf() method the search() method also returns the index of the first match, and returns -1 if no matches were found.
<script>
// Sample string
varstr = "Color red looks brighter than color blue."