Thursday, June 21, 2012

Synthetic, natural, and whole-food vitamins

From: http://training.fitness.com/supplements/mulit-vitamins-2-33823.html

Regarding Centrum or One-a-day's, multis come in one of three forms: synthetic, natural, and whole-food. A good way to differentiate is to learn to read labels. Synthetic multiples will have the vitamin C listed as ascorbic acid but will lack a boiflavanoid complex. Vitamin C should be ascorbic acid, but we cannot metabolize it properly without the presence of bioflavanoids, so make sure that somewhere on the label is a bioflavanoid complex. Reptiles and older orders of birds make ascorbic acid in their kidneys. Recent orders of birds and most mammals make ascorbic acid in their livers where the enzyme L-gulonolactone oxidase is required to convert glucose to ascorbic acid. Humans, guinea pigs, and some other primates are not able to make L-gulonolactone oxidase because of a genetic defect and are therefore unable to make ascorbic acid in their livers.
They will also have a synthetic vitamin E (dl-alpha tocopheryl). As a general rule, if your vitamin contains these, you can be certain it is synthetic (like Centrum). Natural multis will contain natural ingredients (thus, ascorbic acid and bioflavanoids and d-alpha tocopheryl). Another indication is that the raw materials used to produce either a natural or whole food multi can not be compressed into one pill. Usually a one-per-day formula is synthetic. While synthetic multis are really poorly absorbed (like twenty percent due to the rate of compression and lack of protein bonding), natural and whole food multis are much more readily assimilated by the body. Most of the chain store (Costco, Sam's, Wal Mart, etc) vits are synthetic and are not only poorly absorbed but also really bad for the body.
A whole food multi is one that was created from raw materials found in actual whole foods, not created in a chemist's lab somewhere. Studies have shown that synthetic vitamins contain- in addition to the actual vitamins- coal tars, artificial coloring, preservatives, starches, and sugars. Vitamins that come from whole food sources are protein-bonded, and are absorbed, utilized, and retained better than supplements that are not protein-bonded.

Chemically derived vitamins are not protein-bonded, and thus are not absorbed well. That's where the bioavailability comes in- it has to do with how much of the actual nutrient you absorb. Basically, scientists have created synthetic vitamins that are cheap to make and are supposed to be identical to their whole-food counterparts. They are not. A study using polarized light showed that when the light is placed through whole food vitamins, the light beam bends to the right, due to its molecular rotation. When the same light passes through a synthetic vitamin, the beam splits in half.

This proves 2 things- first, synthetic vitamins are not the same as whole food vits in their atomic structure, and second, researchers concluded that in a best case scenario, only 50% of the biological activity of the vitamin is available. (Vinson, JA., Bose P. "Comparative Bioavailabilty to Humans of Ascorbic Acid Alone or in Citrus Extract." American Journal of Clinical Nutrition, 1998, Vol 38, No 3, p. 601-604. AND Duke, James. Handbook of Chemical Constituants of Grasses, Herbs, and other Economical Plants. CRC Press, Boca Raton. 1992.) Add to that the fact that most synthetics are compressed at a rate of about 12,000 PSI's, and you're looking at maybe a 20% absorption rate.

Monday, May 28, 2012

Maru gif

 

Saturday, May 26, 2012

Funny Gifs

 

Sunday, April 15, 2012

Scheduling with CronTab

  • Run as root

crontab –e

  • Usage

# m h  dom mon dow   command

For example, schedule a reboot at 8pm(system time) on every sunday

00 20 * * 7 shutdown -r now

Time sync with NTP

 

  • Install NTP

apt-get install ntp

  • Update server list

vi /etc/ntp.conf

Example -

server 0.us.pool.ntp.org iburst
server 1.ca.pool.ntp.org iburst
server 2.debian.pool.ntp.org iburst
server 3.debian.pool.ntp.org iburst

  • Restart NTP

/etc/init.d/ntp restart

  • Monitor

ntpq -p

Setting server timezone on Debian

 

The interactive way

dpkg-reconfigure tzdata

The manual way

  1. echo 'Etc/UTC' > /etc/timezone or echo 'Asia/HongKong' > /etc/timezone
  2. dpkg-reconfigure --frontend noninteractive tzdata

Saturday, March 10, 2012

Install OpenVPN on Debian

source
First check whether your server supports the device dev/tun
  • # ls -al /dev/net/tun
  • You'll get results like the following if it supports
    # ls -al /dev/net/tun
    crw------- 1 root root 10, 200 Aug  1 14:12 /dev/net/tun
Then check if the device dev/tun is enabled
  • cat /dev/net/tun
  • You'll get results like the following if it is enabled
    # cat /dev/net/tun
    cat: /dev/net/tun: File descriptor in bad state
If it is enabled you should contact the VPS provider
Install OpenVPN
  • apt-get update to update the OS
  • apt-get install openvpn
Install OpenSSL
  • apt-get install openssl
  • mkdir /etc/openvpn/easy-rsa to make new directory
  • cp -rp /usr/share/doc/openvpn/examples/easy-rsa/2.0/* /etc/openvpn/easy-rsa to copy the files to the new folder
  • cp -rp /usr/share/doc/openvpn/examples/sample-config-files/ /etc/openvpn/sample
Edit vars and change variable
  • cd /etc/openvpn/easy-rsa/
  • vi vars to edit the file named "vars"
  • OPTIONAL: Change KEY_SIZE to 2048
Run vars to export variable
  • sh vars
  • source ./vars to execute vars script
Make the certificate authority
  • ./clean-all to remove any previous keys
  • ./build-ca to build the certificate authority.
  • Press enter for each line it asks to confirm your details, but where it asks for "Common Name" change to your server name
Make server key
  • Type ./build-key-server <server hostname>
  • Press enter for fields to confirm and leave the "A challenge password" and "An optional company name" fields blank
Create VPN client .key and .crt
  • ./build-key <client hostname>
  • Press enter again for fields to confirm and leave the "A challenge password" and "An optional company name" fields blank. A different key is needed for each VPN client
  • ./build-dh This allows sharing between peers
Now copy relevant files and place in the correct folder
  • cd /etc/openvpn/easy-rsa/keys
  • cp <server hostname>.key /etc/openvpn/
  • cp <server hostname>.crt /etc/openvpn/
  • cp ca.crt /etc/openvpn/
  • cp dh1024.pem /etc/openvpn/  or dh2048.pem for 2048 encryption
Create OpenVPN server config and edit
  • cd /etc/openvpn/sample
  • gunzip server.conf.gz
  • vi server.conf
  • Change server.crt to <server hostname>.crt
  • Change server.key to <server hostname>.key
  • Change "dh1024.pem" to "dh2048.pem" if using 2048 encryption
  • Uncomment max-clients 100
Create OpenVPN client config
  • cd /etc/openvpn/sample
  • vi client.conf
  • change my-server-1 to your IP address of your VPS
  • Change "client.crt" to "<client hostname>.crt"
Export these 4 OpenVPN client config files to C:\Program Files (x86)\OpenVPN\config
  • /etc/openvpn/easy-rsa/keys/<client hostname>.key
  • /etc/openvpn/easy-rsa/keys/ca.crt
  • /etc/openvpn/easy-rsa/keys/<client hostname>.crt
  • /etc/openvpn/sample/client.conf (Rename to client.ovpn)
Start OpenVPN as a service and start
  • service openvpn start
  • Query service  ps -aux | grep openvpn or ps –wwwaux
  • Make the service be started with init.d scripts by editing /etc/default/openvpn  AUTOSTART="all"

Sunday, March 4, 2012

Review of Master lock combination lock

Quote:

 

This lock can be opened in seconds by anyone without a tool. Find some good light and take a look in the crack above the numbers. Spin the dial until you see a notch on the silver bar in the crack. Line each one up with the dots and there you go. I don't expect a lock like this to be extremely good, but this is just ridiculous. Unfortunately I leave on a very long trip tomorrow and don't have time to find something different.

Sunday, January 15, 2012

Recipe: Ayam Goreng Suharti

From: Indonesian Food Recipes

Original Ayam Goreng Suharti

April 29th, 2009 | Author: the chef

ayam-goreng-suharti
Ingredients:
  • 800 gr skinny chicken (ayam kampung, if possible), cut into four
  • 2 ltr coconut juice
  • 2 tsp? rice flour
  • vegetable oil

Spice paste ingredients:

  • 8 shallots
  • 4 cloves garlic
  • 7 cm ginger, grated
  • 10 candle nuts
  • 2 tbs coriander
  • 2 tsp black pepper
  • salt to taste
Directions:
  • Grind spice paste ingredients in a grinder or mortar into a fine paste.
  • Heat 2 tbs vegetable oil in a wok. Saute the paste until fragrant. Pour the coconut juice into the wok.
  • Add chicken and heat on medium until the liquid evaporates. Remove the chicken.
  • Combine spice paste in the wok with rice flour, whisk through until well-mixed.
  • Deep fry the chicken and flour mixture in another frying pan until browned.
  • Serve with sambal and vegetables

Recipe: Pan Fried Tilapia

From: Food.com

Pan Fried Tilapia

By Cattleships on September 16, 2002
Photo
Photo by DarksLight
31 Reviews
  • timer
  • Prep Time: 5 mins
  • Total Time: 10 mins
  • Servings: 2

About This Recipe

"Another very simple recipe...and a healthy one as well."

Recipe: Indian Dal

From: wholefoodsmarket

Recipe:

INDIAN DAL


Indian Dal
Submitted by: Whole Foods Market
 
  • Indian Dal
Rated by 26 people
Serves 6
Nutritious and flavorful, with added heat from a jalapeño, this recipe is an ideal choice for a quick evening meal. Dal is one of the principal foods of the Indian subcontinent where the term can be used to mean either an ingredient or the dish made from it. If using green or black beluga lentils instead of red, the cooking time should be increased by 10 to 15 minutes. Serve over a bed of brown rice.

Wednesday, December 21, 2011

2012 运程

IMG_3664

IMG_3665

IMG_3666

IMG_3667

IMG_3668

Sunday, December 4, 2011

Color Sheet

From http://www.somacon.com/p142.php

Neutral Colors

Color NameColor Code
Pearly Gates
Pale Olive
Ultra Pure White
Frosted Lime
White Orchid
Green Veil
Gray Cliffs
Far Horizon
Plantation White
Warm Summer
Ivory Tusk
Eggshell Cream
Toasted Meringue
Light Sand
Carmel Tan
Wedding Veil
Subtle White
Warm Shadow
Sand Box
Frosted Peach
Dusted Pink
Porcelain White
Light Adobe
Barely Blushing
Dusty Trail
Ostrich Feather
White Sail
Morning Fog
Dove Beige

Tuesday, November 29, 2011

Camphor sticks for cabinet

saizen store trinoma7

 

Or thirsty hippo?

Saturday, November 26, 2011

Weather

Courtesy of Wunderground

Current weather

Weather forecast

Wikitravel and travel resources offline

From: Hobobo Guide to Travel Guides
- Compete Wikitravel offline
First you need to download the wikitravel data dump here. It is just a text archive with all the text from the website. The archive format .bz2 file keeps the size small at only 40MB. You have several options for reading this file type.
The easiest if you are traveling with a laptop is to download wikitaxi or BZ reader. These readers will work for any wiki dump which means if you want the entire Wikipedia resource available offline (~6GB) you can access it without having to extract it. If you have the space this is also a fantastic thing to have while you travel. You never know what you’ll want to look up.
- On mobile devices
For increased portability there are also options for smart phones and ipods. Depending on your device it can loaded with varying degrees of ease. The best interface by far is the wiki2travel app for the jail broken ipod or iphone. The Oxygen guide is the best for the Android OS, though is far inferior to wiki2travel for the iphone.
There is support for other devices as well, but I haven’t tried any of them. There are also a few apps that let you download and store the wiki travel pages and maps a la carte. One good example is itravelfree. The paid version lets you download and store everything offline. It is only $3 which is a bargain to have all the travel information you could want at your fingertips. Compare that to $30 for a single country Lonely Planet guide book.
If wikitravel doesn’t have a lot of detail on the destination you’re looking at Lonely Planet has offered an attractive answer to buying a paperback guide book. They now offer downloadable .pdf versions of most of their guides as well as the option to buy single chapters at a reduced price. Introductory planning chapters are always free which can help with your first-cut travel planning.

Friday, November 25, 2011

Siemens Gigaset 5005

Siemens Gigaset 5005 documentation
viewer(7)

Tuesday, November 22, 2011

青椒炒鸡蛋

转贴: 青椒炒鸡蛋

作者:陆芳 时间:2011-7-5 14:27:33 

201107051049129471

  黄绿搭配,色彩美观,口味鲜香。

201107051106306996

  基本材料

  新鲜青椒150克,鸡蛋3个,豆油60克,精盐、香油、葱花各适量。

201107051107137868

  制作方法

  1.把青椒用清水洗净,去籽切成细丝。将鸡蛋打在碗里,加适量食盐,用筷子搅拌均匀。

  2.锅内放油(40克),烧热,将蛋汁倒入,炒好倒出,备用。

  3.往锅内倒入余油,烧热,放入葱花炝锅,稍微发黄即可,随后放入青椒丝,加精盐炒几下,见青椒丝翠绿色时,放入炒好的鸡蛋,翻炒均匀,用香油烹一下,即可出锅。

201107051108046058

  美味提示

  有些人喜欢放味精,其实在炒鸡蛋时最好不要放味精,这是最起码的常识。因为鸡蛋富含大量的谷氨酸和一 制作方法(11张)部分氯化钠,当鸡蛋被加热后,鸡蛋中的这两种物质会合成新的物质,这种物质化学名称叫谷氨酸钠,味精的主要成分就是这种物质,食物在加入这种物质后会有鲜味。但是,炒鸡蛋的时候如果放入味精这种物质,经过分解后的味精就会严重的破坏鸡蛋本身合成的自然鲜味。所以,建议各位家庭主妇在炒鸡蛋时切忌放入味精,这样才能保证鸡蛋的原汁原味。 

Thursday, July 14, 2011

Power supply discussion


In this first segment, I will be covering on power supplies and the quality of power supplies from different brands.
1) Why you should buy a quality power supply?
The reason is simple. Quality power supplies are not only able to deliver their rated power, but they also deliver it in a cleaner and more stable manner.
 This means that you will have to use less voltage to your CPU when overclocking, it also helps to prolong the life of your hardware when they are provided with clean, unfluctuating power.
Also, the power supply lasts longer.
2) What makes a good power supply?
There are many things a good power supply has.
Look for operational features like OCP (Overcurrent Protection), OVP/UVP (Overvoltage/Undervoltage protection), SCP (Short circuit Protection), PFC (Power factor correction) and such.
If you open up a quality power supply, chances are you'll find the following traits.
a) A fan with ball bearings from a reputable manufacturer. (AVC, Nidec, Sanyo, ADDA, Globe, Delta, etc.)
b) Quality Japanese capacitors that are rated at the higher maximum operating temperature of 105 degrees Celsius. (Nichihon, Nippon Chemicon, Hitachi, Rubycon)
c) Active PFC. This is evident when you see the absence of a voltage selector switch at the rear of the unit.
d) Sleeved cables. Now, it doesn't mean all PSU's with sleeved cables are good, but it usually means that they have at least added some quality to the cabling. Thick wires are also a good indicator.

Sunday, June 5, 2011

Buses up north

Courtesy of Epoch Travel