Home

The Standard American Diet (the SAD diet) is saturated in toxins.

A man with a fat belly.

Sweets are loaded with sugar. Snacks are loaded with salt. Meat is loaded with saturated fat. The fact is, you’re lucky if there are any nutrients left at all—most have been stripped away and replaced with a cocktail of chemicals that you can’t even pronounce. And you don’t have to take my word for it, just look at the ingredients!

Anything with bread and meat (hamburgers, hot dogs, pizza and pastries) seems like the staple of the American diet. But there is an old saying, we are what we eat. And it shows.

According to the CDC, a whopping 40% of Americans are obese, and over 50 million Americans are living with diabetes. Out of every 100,000 men and women, approximately 439 of them will be diagnosed with cancer.

Why are things like this?

There are many factors that can be attributed to all of this of craziness, but largely (no pun intended) it comes down to what we eat.

The food that everyone is eating

All fast food: burgers, fries, nuggets.

In most developed nations, cheap fast food is available in abundance, and we eat it constantly. We often gravitate towards foods that taste good, is cooked fast, and comes cheap.

We don’t eat to survive anymore, we aren’t even interested in the nutrients we need, because no foraging or hunting is necessary. It’s not about survival. We often eat just to satisfy our cravings for sugar, fat and salt. All you have to do is pull up to a drive-thru window.

The situation is no better when you shop for your own food.

When you walk into a grocery store and go up and down the aisles you will see rows and rows of products that are boxed, packaged, and wrapped in plastic. Almost everything is processed. And when you start reading the ingredients, pretty much all of it looks to be unhealthy in some way and this is a real problem.

Cheap food comes at a great cost

Companies that operate in the food industry are constantly seeking to raise their profits. They do this by keeping their prices competitive and using the cheapest ingredients possible. This is the only way that they can make food in bulk and also keep their prices low.

Sadly though, even the “organic” options that they give us often still source cheap ingredients (and GMOs) because many businesses are solely interested in increasing their profits. It seems like money is always the only thing that drives productivity. Profits always take precedence over human health for them and nothing will change unless consumers wake up and only start buying healthier options.

Every single time we eat, we are either fueling disease or feeding health. But we do have a choice. We can eat highly processed foods, or, we can eat whole/natural foods.

Ineffective food regulations

Even though the FDA in America requires food manufacturers to put nutrition labeling on the packaging of their food, it doesn’t strictly enforce the amounts of additives (like sugar salt) that gets put into such products.

A burger, fries and a coke.

Chemicals are added into the mix of ingredients to help processed food have a longer shelf-life, and at fast food restaurants, you can buy a hamburger as cheap as $1 dollar, whereas a salad might cost almost $5 dollars. Many families struggle financially to afford their necessities so naturally they will look for cheaper options.

The more flavor these foods have (usually provided from sugar, fat and salt) the more consumers seem to like them. The more sales these companies make, and the more wealthier a few executives at the very top become. But the majority of consumers suffer with poor health, a shorter life span, and diminished happiness as a result of poor nutrition.

So we cannot solely rely upon food regulations to get every single thing right.

Eating food is essential for human survival, but the food industry is primarily a business at its core, and they are out to make profits. And since selling of food for profit is something that won’t change any time soon, what can be done?

Rising above it

Consumers are often confused by all of the conflicting opinions about nutrition that some think EVERYTHING is bad. But the truth is, everything is not bad.

Whole foods: fruit, berries, bananas, and green vegetables.

The healthiest foods that you can eat are the foods that come directly from nature: whole foods like fruits, vegetables, legumes, nuts, oats and grains. These foods don’t cause any adverse effects from eating them over a prolonged period of time. In fact quite the opposite is true; people lose weight, they have improved health, and may even live longer. These foods are packed with phytonutrients and antioxidants which nourish our bodies, and remove free radicals.


FACTS

  • No nutritionist in the world will ever say that eating fruits and vegetables is unhealthy.
  • 90 percent of all cancers are due to poor diets that contribute to the growth of free radicals.
  • Most diseases are NOT hereditary, it’s our habits that are hereditary. But habits can be changed.

Changing how we eat also means we can educate ourselves about nutrition and then work hard to stick to a healthy diet. Many foods that taste extremely sweet or savory are that way because huge amounts of refined sugar and salt. Very little nutritional value. Additionally, foods with a lot of oil have too much fat, which is not healthy. Try to remember that.

Try to substitute a candy bar for some fruit. Replace a hamburger for oatmeal. Swap salty/oily snacks for grapes, nuts, or other kinds of berries. Think of your body like an investment for the future. Eventually your body will stop craving foods that offer little to no nutrition, and you’ll feel more energy and vigor from giving your body what it needs so it can run at peak performance.

It might be a bit more expensive to buy natural organic foods, but healthcare is also not cheap. So eat clean today, and save on hospital bills tomorrow. Good health to you!


Additional Resources


Disclaimer: the information provided on this web site is for educational purposes only, and does not substitute for professional medical advice. The author of this blog is not a licensed dietitian or medical professional. Please consult with a licensed medical professional or healthcare provider if you are seeking medical advice, diagnoses, or treatment. We are not responsible for any decisions that you choose to make.

Many organizations have a lot of non-HTML document files. Word docs, PDF files, Excel spreadsheets, Powerpoint presentations, and the list goes on.

This can be an annoying experience if the link surprisingly opens an Excel spreadsheet when the user didn’t expect that. And it’s even more obtrusive if they are browsing on a mobile device and this happens.

The solution

What we need to do is dynamically display the file type next to all such hyperlinks using CSS. We could manually insert text for this, but a dynamically inserted icon is a better solution. In the past this method has been called link markers, or CSS cues, but basically they are just file type indicators.

First, lets write some HTML for the various hyperlinks.

<p><a href="http://www.google.com" target="_blank">new window</a></p>

<p><a href="http://www.google.com">external site</a></p>

<p><a href="mailto:mike@donotreply.com">mailto: link</a></p>

<p><a href="file.pdf">pdf files</a></p>

<p><a href="file.doc">word documents</a></p>

<p><a href="file.xls">excel files</a></p>

Each of these links are just the very basic code that you would need to insert a hyperlink.

No classes are needed because CSS can select each of these links using sub-string matching attribute selectors, demonstrated below. We are only interested in the file name at the end of the URLs.

a[href $=".pdf"] { 
   padding-right: 18px;
   background: transparent url('images/icons/pdf.gif') center right no-repeat;
}

a[href $=".xls"] { 
   padding-right: 18px;
   background: transparent url('images/icons/xls.gif') center right no-repeat;
}

a[href $=".doc"] { 
   padding-right: 18px;
   background: transparent url('images/icons/doc.gif') center right no-repeat;
}


a[href ^="http://"] {
   padding-right: 20px;
   background: transparent url('images/icons/external.gif') center right no-repeat;
}

a[href ^="mailto:"] {
   padding-right: 20px;
   background: transparent url('images/icons/mailto.gif') top right no-repeat;
}

a[target="_blank"] {
   padding-right: 18px;
   background: transparent url('images/icons/newwin.gif') center right no-repeat;
}

The CSS code above basically detects the file extension at the end of the hyperlink in HTML, and adds just enough padding on the right side of the link to display a small background image icon that indicates the type of file before they click on it.

You can download a code sample right here.

The dollar sign ($) indicates the end of the string, and the upwards pointing arrow (^) indicates the beginning of a string.

You can also modify this CSS code (using media queries) so that it only displays these icons on mobile devices.

There are many types of investors. Stock investors, real estate investors, crypto investors, and the list goes on. But in this article we will discuss a particular type of stock investor: the kind who focuses on dividends.

Lets say for example, you decide to purchase some shares of the Nike stock. When Michael Jordan releases a new pair of shoes, the sales from the shoe takes off. Nike makes profit from the sale. They turn around and re-invest the profit into the business. Then they pay a portion of the profit as a dividend to shareholders (you).

The more shares of a stock you buy, the more dividends you will earn. Not all stocks pay dividends, but some pay dividends yearly, others quarterly, and others monthly.

dividend is a payment made by a corporation to its shareholders, usually as a distribution of profits.

Wikipedia

Reaching financial independence

Financial independence is when your assets (investments) are large enough that they yield returns (dividends) to cover all of your expenses. Many investors view the point of earning $1000 in dividends each month as the first step towards financial independence.

Lets do some math, to figure out what it would take to get there with a relatively small stock. So lets take for example, Office Depot (ODP).

As of writing this blog, ODP costed about $3 per share. It returns a dividend payout of about $0.10 cents. So $1000 ÷ $0.10 = 10,000. And $3 x 10,000 = $30,000. So you will need 10,000 shares (approx $30,000) of ODP in order to see a dividend return of $1000 quarterly.*

You might be wondering why you should even care. What’s the advantage here? Here are a few things to consider.

1) Cash flow

A dividend is your share of the profits.

If you gain enough cash flow from dividends you could reach financial independence. What this means is no more trading hours for a paycheck. You’ll have your money working for you, to generate more money.

On dividend.com there is a long list of dividend stocks that will pay you every month. You can use these stocks to start to generate cash flow. If you invest in enough of these kinds of stocks, you can earn dividends almost every day.

2) Lower taxes

There is a Much lower tax liability. Your federal income taxes for those dividends is MUCH lower than your taxes from earned (job) income.

Dividends are taxed at 20%, 15%, or 0% rate, depending on your tax bracket. This means that the amount of taxes you pay on dividends will depend upon your earned income, and this of course may vary.

If you never purchased stocks or earned dividends before, don’t worry. It’s better to start at the bottom than not at all. And its also getting much easier to do so with apps like Robinhood and M1 Finance.

* (ODP pays quarterly, but many dividends pay monthly)


Disclaimer: This article was written for educational and entertainment purposes only. This is NOT financial advice. Always do your own research and please consult with a licensed attorney before making any serious investment. We are not responsible for any investment decisions that you choose to make.

Imagine getting a notification on your phone that a delivery has just arrived at your front door. You come outside and pick up a package, not from a human carrier—but from a fully autonomous six-wheeled robot.

Meet the Amazon Scout.

This is Amazon’s latest technological innovation, designed to improve the “last mile” segment of package delivery.

The Scout’s delivery method is more time efficient than a human carrier, because its done by a mathematical algorithm. Plus, multiple robots can cover more ground in a shorter period of time than one person.

Right now the Scout is limited to smooth surfaced sidewalks, but eventually the goal is that it will navigate stairs, complex obstacles, and various rough terrain.

Amazon claims that these devices were “created by Amazon” but it should be noted that the original design of this robot was created by Starship Technologies. Also, this same device was previously tested by companies such as Dominos Pizza, DoorDash and Pepsi.

Hitting the streets

Amazon has already begun testing it with just six Amazon Scout devices, delivering packages during daylight hours in the neighborhoods of Snohomish County, WA.

Trying to deliver perishable food (that needs to stay warm/fresh) may not turn out as well as delivering packages, especially if this robot moves at the speed of a human walking. But the cost savings alone is a huge benefit of using this device for a job that hasn’t changed much in centuries. It’s a remarkable technological improvement over relying upon human labor.

However, reactions from consumers indicate that many people are skeptical that such a device could survive out in public.

@saracsalinas How will Amazon Scout survive in bad neighborhoods and neighborhoods bordering bad ones. We live in a world where people feel it’s OK to steal packages.

Sara Salinas via Twitter

Google has made no official comments regarding this, but these devices come equipped with multiple cameras all around, so they can “see” what you do to them, they have an internal GPS tracker, and the “hood” will remain locked unless someone with the (Amazon) app approaches to unlock it.

So unless someone forgets to properly close the hood so that it locks, the chances of theft are VERY unlikely. In fact, someone already tried.

Huge cost savings

Any company that can successfully achieve automation by this means could potentially save themselves billions of dollars each year.

A standard delivery driver might earn a salary of around $40k to $50k/year. But these robots cost just a one-time price of $5,000 and of course, as the technology improves that price is getting cheaper.

In Washington D.C these robots are not just surviving, they are thriving. As the D.C. Council just recently passed legislation to permit the large-scale deployment of delivery robots across the city. So you might see them popping up soon in a neighborhood near you.