Wednesday, May 31, 2017

Women of Ukraine

"Not just the actresses and the celebrities, all the Ukrainian women are beautiful. Their attitude is superb. They carry themselves nicely. The style and fashion sense is always on point. Even if you just take a stroll around any street of Ukraine, you will see a bunch of beautiful Ukrainian women.
I study at a medical university in Ukraine, the girls over here are beauties with brains. They’re smart and intelligent. They’re also considered great homemakers. I’ve been to all over Europe, but yet to see a country with more beautiful women than Ukraine. In general, Eastern European women are most beautiful in my opinion. No offence to any other nationalities, but a lot of people with agree with me here, The further East you go the better are the women.
I guess the photos I’ve uploaded doesn’t do justice to the beauty of Ukrainian women. You will have to visit Ukraine to fall in love with the beautiful women and this country. And yeah, the war is over, Ukraine is safe. Come visit."

Tuesday, May 30, 2017

Cabbage health!

"Based upon its effects on restoring the health of my son who became severely ill from an incompetent doctor administrating unnecessary antibiotics - this is the single healthiest food on Earth:
Red cabbage. Why?
It benefits every stage of the gasto-intestinal system as follows:
  • Eliminates gastritis of the stomach and also reduces athritis (due to anti-inflammatory compounds - even a microscopic dose of red cabbage juice stops gastritis)
  • Eliminates dysbiosis of the small intestine (potent source of healthy lactobacteria, even more so in fermented form such as sauerkraut or kimchi)
  • Stimulates pancreatic enzyme production to assist digestion
  • Repairs damaged intestinal walls (due to high glutamine content)
  • Eliminates constipation of the large intestine (due to high fibre content)
  • Boosts the immune system (potent source of vitamine C)
  • Reduces osteoporosis, in conjunction with a diet rich in calcium and Vitamin D (potent source of Vitamin K)
  • Reduces degenerative diseases like Alzheimers (potent source of anti-oxidants)
  • High source of vitamin A (for healthy eyes)
  • High dose of iron (to reduce anemia)
All other less effective - and let’s face it, less pretty - foods are essentially fighting for second place to the mighty red cabbage.
Incidentally, second place - based upon the same health recovery process is:
Red apple.
But that’s a story for another time."

Monday, May 29, 2017

Becoming great at programming!

   " Machine language - The best way to learn programming is to first learn how computers work from the inside out. The best programmers understand how their hardware platforms work. There are tons of microprocessor trainers available on Ebay for little money - mostly ones from the 80s, and some much newer - that can be used to learn how to program a microprocessor in machine language, the very lowest level of code that all computing devices use. Every program ever written in any language eventually ends up as machine code executing on a CPU, machine language is everywhere - it’s just that most programmers never even think about it. Master machine language and you become the master of the machine!

  • Assembly language - We’ve all heard of it, but it remains a mystery to most programmers. Just one level up from Machine language all Assembly language does is to create human-friendly “mnemonics” for each Machine language instruction. Add in macros, subroutines, variable definitions, and other features that an assembler (the assembly language equivalent to a compiler) understands, and you’ve got a language that can still do everything that Machine language can, but allows you to be far more productive.
  • C - The nearly 50 year old language that influenced the design of most of the modern programming languages we have today. C is not a “high level” language like Java or C#, but is much higher level than Assembly language and therefore easier to code in. C allows you to do most everything that you can do in Assembly language, but not all (but there are work-arounds for those). For extremely high performance code or code that has to be able to directly access hardware C is the #1 choice for the majority of programmers. Learn C, and you will be able to move on to learning most other languages easier than you would have had you learned them as your first language. C has all of the basic concepts of programming built into it’s relatively small set of keywords, and with C anything that you would want to do on a computing device can be done - maybe with more work than in other languages, but it can be done. Most other high level languages have restrictions that keep them from being able to do anything that the hardware platform supports, but are still great for most things - C has no such limitations."