Showing posts with label common. Show all posts
Showing posts with label common. Show all posts
Saturday, April 23, 2016
Study Suggests Frozen Veggies Worse Than Common Wisdom Says Frozen Asparagus Zucchini and Green Beans Lose More Antioxidants During Boiling
![]() |
Green asparagus from the fridge and from the market are not created equal - at least not when they finally end up on your plate after a short bath in hot water. |
Warning: Dont take this article as an excuse and stop eating veggies completely. The frozen stuff may lose more vitamins, when you boil it, but (a) you can still blanch it and (b) even with significantly reduced antioxidant effects veggies are still among the healthiest things you can eat.
![]() |
I am not an asparagus expert and can still tell that the cell structure of the Transverse sections boiled (C - from raw | D - from frozen) is profoundly messed up compared to the raw (A) and blanched (B) variety | legend: c = collenchyma; vp = vascular bundle; p = parenchyma; f = fissure. |
The raw (ten kilograms of each vegetable), blanched (five kilograms of each vegetable) and industrially frozen samples (five kilograms of each vegetable) had been transported were transported to the University of Parma laboratories under adequate refrigerated conditions to avoid the exuberant nutrient loss that occurs upon inadequately slow (re-)freezing.
SuppVersity Suggested Read: " Conventional vs. Organic: Its Not About Getting More, But Getting Less For Your Money. Less Pesticides, Dioxins & Co" | read more if you want to know if the claim "organic is always better" is a similar misconcept as "frozen over fresh".
If you "freeze" your veggies in the freezer compartment of your fridge, this will make the cells blast, so that even before they are cooked, and the nutrients flow out. It is generally assume that the latter would not happen, if the veggies are shock-frosted.![]() |
Figure 1: Total antioxidant capacity of green asparagus, zucchini and green beans raw, blanched, boiled and frozen and boiled (Paciulli. 2014); as the data tells you frozen veggies with similar icy grease on them like you see on the right may not really be a better source of antioxidants than fresh veggies from the farmers or even the supermarket. |
For a similar reason (nutrient retention), the blanched samples have been cooled immediately after blanching in an ice-water bath for 3 min before they have been transported to the laboratories, where their analysis shows that only the Zucchini lost a small, but significant amount of their total antioxidant activity.
![]() |
Figure 2: It would be interesting to see if the negative effects of freezing and boiling occur in all vegetables. In view of the fact that previous studies compared raw vs. frozen, but nor raw + cooked vs. frozen + cooked, frozen Broccoli + cooked broccoli could be exactly as "bad" as asparagus, zucchini and green beans. |
The previously "cited" statement that youre better of with the "fresh" frozen veggies is thus probably only right, if you eat them raw. Compared to fresh veggies, the previously frozen asparagus, zucchini and green beans lost almost 11-30% of their antioxidant prowess during the cooking process - and the same may well happen to other veggies, including broccoli, which have been compared in previous studies only on a raw vs. frozen, but not on a cooked vs. frozen + cooked basis. Unless youre afraid that all the good veggies may limit your gains due to their potent anti-oxidant effects, it appears smart to stay away from their frozen varieties.
- Paciulli, Maria, et al. "Impact of the industrial freezing process on selected vegetables Part I. Structure, texture and antioxidant capacity." Food Research International (2014).
Thursday, February 11, 2016
HTML Tutorial 3 Most Common Tags Used in HTML Documents
Im sorry for the delay to publish new posts but something was wrong with my PC. Thats why I was in trouble with this and not able to write something new. Well Id like to continue the HTML tutorial.
In this post I will discuss about some tags which are very common in preparing HTML documents. But before you go, dont forget to look at the following posts if you havent already gone through:
- Creating a Simple HTML Document
- Basic Parts of an HTML Document
Lets talk about the most common tags of HTML documents. You should also have a close look at our example document. Some of these tags are also used in that document. I think this will be helpful for you.
- Structural Tags: <html>, <head>, and <body> are the main structural tags of any HTML document. Each and every HTML document must contain these tags. Title tag - <title> is also very important for an html document. Besides there are tags which are very common for all HTML documents. These are discussed below:
- Anchors <a href> </a>: This tag is used to create anchor text. For example: <a href=http://munnamark.blogspot.com>Marks PC Solution</a>. The browser will show only Marks PC Solution hiding the link of our site. When someone clicks on the text, he will be directed to Marks PC Solution home page
- Paragraph <p>: This tag is used to create a new para. It has no end tag! You just need to place a <p> tag when you want to create a new para.
- Line Break <br>: This tag is used to break the current line. It is similar to pressing Enter button in Word Processors like MS Word or Wordpad. This tag has no end tag too! You can break a like just by typing <br> before that line.
- Bold <b> </b>: This tag is used to bold the text. For example: <b>Bold</b>. The result will be Bold.
- Italic <i> </i>: This tag is used to italicize the text. For example: <i>Italic</i>. The result will be Italic.
- Underline <u> </u>: This tag is used to underline a text. For example: <u>Underline</u>. The result will be Underline.
- Heading Tags: Start Tags: <h1>, <h2>, <h3>, <h4>, <h5>, <h6>. End Tags: </h1>, </h2>, </h3>, </h4>, </h5>, </h6>. These tags are used to define the titles of the document. For example, <h1> is used for the document header title. <h1>Marks PC Solution</h1>. <h2> is used for the document section title. <h2>Your Ultimate Choice for Computer, Internet, Blogging, SEO & PC Troubleshooting Tips</h2>. Thus <h3>, <h4>, <h5> and <h6> decreases the font size of the title.
Dont be confused by someone or by yourself! There are many other common tags for HTML documents. But these are just for giving you an idea.
You should be careful while using the tags and their related attributes. Because any error in using the tags may result wrong output. Even a minor mistake may create serious problem. Because you may not be quick enough to find the errors!
By the way, the rules and stadard of HTML varies from time to time. Sometimes your browser is able to show the document correctly even if there is any error in the source file! But it doesnt mean that you will not try to keep the document accurate. Whatever you do, do it with care. Best of luck.
Stay with Marks PC Solution to get more interesting IT topics!
Subscribe to:
Posts (Atom)