Monday, December 11, 2017

Best Olive Oil


Olive Oil


Directions:
Use of Borges Extra Light Olive Oil in day-to-day cooking is increasing. We recommend you use it with main dishes like chicken, turkey, pastas, spaghetti, etc. Brush it on your non-vegan preparations before boiling or grilling to seal in flavor and juices. Mix it with salads to add some taste and enjoy its health benefits. You can ditch the butter in mashed or baked potatoes. Add it to your white or red sauce and use on pesto or other dishes. You can also sprinkle it on brown rice.

Legal Disclaimer:
While we work to ensure that product information is correct, on occasion manufacturers may alter their ingredient lists. Actual product packaging and materials may contain more and/or different information than that shown on our web site. We recommend that you do not solely rely on the information presented and that you always read labels, warnings, and directions before using or consuming a product. For additional information about a product, please contact the manufacturer.

Product description

Product description

If you are a health freak then you have to switch to olive oil for its various benefits. Borges Extra Light Olive Oil is made from olives which are picked first-hand from the tree and is 100% organic. In recent times, people have started understanding the importance of using olive oil in cooking preparations and are finding ways to enjoy its goodness.

From the Manufacturer

Features
Light flavor, with high smoking point. Perfect for Indian cooking. Light flavor, with high smoking point. Perfect for Indian cooking. no flavour of olives, can substitute any regular oil in the kitchen.
Usage
  • Dal and Vegetables
  • Pulao
  • Dosa
  • Any Indian Dish

About the brand

Borges belongs to the Mediterranean region; Mediterranean diet is considered to be one of the healthiest diets in the world and olive oil is an important ingredient in it. Borges launched its world famous olive oils in India with an aim to introduce Indian consumers to the fact that various variants of olive oil are relevant for their kitchens as well.
  • World-renowned brand which is recognized as a leader in oils and vinegars
  • An extensive international network; presence in over 105 countries
  • Guaranteed Quality and Traceability of our products

Friday, October 10, 2014



To install the .NET Framework 3.5 on Windows 8/8.1


  1. In Windows 8 or Windows Server 2012, open a Command Prompt window with administrative credentials (that is, choose Run as administrator).
  2. To install the .NET Framework 3.5 from installation media located in the D:\sources\sxs directory, use the following command:
    DISM /Online /Enable-Feature /FeatureName:NetFx3 /All /LimitAccess /Source:d:\sources\sxs

Thursday, April 10, 2014

NS2 stands for network simulator and it is not in fedora repository but it's allinone package is available on isi.edu recently ns-2.35 is latest with updated tcl and tk library and support for gcc-4.x series.

Install Dependences :
vinayak]$su -
enter admin password

yum install autoconf
yum install automake
yum install gcc-c++
yum install libX11-devel
yum install xorg-x11-proto-devel
yum install libXt-devel
yum install libXmu-devel

Build ns-allinone-2.35
Go to you download directory and extract package (tar -xvf tarball), go to extracted directory and run
#./install

you will face below issue when execute this-
installation fails with the following messagelinkstate / ls.h: 137:58: Note : declarations in dependent base 'std :: map, std :: allocator >>' are not found by unqualified lookuplinkstate / ls.h: 137:58: note : use 'this-> erase' insteadmake: *** [linkstate / ls.o] Error 1Ns make failed!See http://www.isi.edu/nsnam/ns/ns-problems.html for problems

Solution:- 
Modify ns-2.35/linkstate/ls.h line 137void eraseAll () {erase (baseMap :: begin (), baseMap :: end ());} 
Should bevoid eraseAll () {this-> erase (baseMap :: begin (), baseMap :: end ());} 
Then . / Install

Validate ns-2.35
Go to ns-2.35 directory and run
#./validate (take almost 1 hour so keep patience)


Add PATH in .bashrc
vim ~/.bashrc
Add the following lines to the end of it. Remember replace “/opt/” by your installation path like “/home/username”. And accordingly also change the version numbers. This is for ns 2.35.

# LD_LIBRARY_PATH
OTCL_LIB=/opt/ns-allinone-2.35/otcl-1.14
NS2_LIB=/opt/ns-allinone-2.35/lib
X11_LIB=/usr/X11R6/lib
USR_LOCAL_LIB=/usr/local/lib
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OTCL_LIB:$NS2_LIB:$USR_LOCAL_LIB

# TCL_LIBRARY
TCL_LIB=/opt/ns-allinone-2.35/tcl8.5.8/library
USR_LIB=/usr/lib
export TCL_LIBRARY=$TCL_LIB:$USR_LIB

# PATH
XGRAPH=/opt/ns-allinone-2.35/bin:/opt/ns-allinone-2.35/tcl8.5.8/unix:/opt/ns-allinone-2.35/tk8.5.8/unix
NS=/opt/ns-allinone-2.35/ns-2.35/
NAM=/opt/ns-allinone-2.35/nam-1.15/
PATH=$PATH:$XGRAPH:$NS:$NAM



Logout/reboot your system and its done ... enjoy ... :)

Saturday, March 1, 2014

Color Code for GLUT

glColor3f(a,b,c)


<0.0, 0.0, 0.0><0.0, 0.0, 0.2><0.0, 0.0, 0.4><0.0, 0.0, 0.6><0.0, 0.0, 0.8><0.0, 0.0, 1.0>
<0.0, 0.2, 0.0><0.0, 0.2, 0.2><0.0, 0.2, 0.4><0.0, 0.2, 0.6><0.0, 0.2, 0.8><0.0, 0.2, 1.0>
<0.0, 0.4, 0.0><0.0, 0.4, 0.2><0.0, 0.4, 0.4><0.0, 0.4, 0.6><0.0, 0.4, 0.8><0.0, 0.4, 1.0>
<0.0, 0.6, 0.0><0.0, 0.6, 0.2><0.0, 0.6, 0.4><0.0, 0.6, 0.6><0.0, 0.6, 0.8><0.0, 0.6, 1.0>
<0.0, 0.8, 0.0><0.0, 0.8, 0.2><0.0, 0.8, 0.4><0.0, 0.8, 0.6><0.0, 0.8, 0.8><0.0, 0.8, 1.0>
<0.0, 1.0, 0.0><0.0, 1.0, 0.2><0.0, 1.0, 0.4><0.0, 1.0, 0.6><0.0, 1.0, 0.8><0.0, 1.0, 1.0>
<0.2, 0.0, 0.0><0.2, 0.0, 0.2><0.2, 0.0, 0.4><0.2, 0.0, 0.6><0.2, 0.0, 0.8><0.2, 0.0, 1.0>
<0.2, 0.2, 0.0><0.2, 0.2, 0.2><0.2, 0.2, 0.4><0.2, 0.2, 0.6><0.2, 0.2, 0.8><0.2, 0.2, 1.0>
<0.2, 0.4, 0.0><0.2, 0.4, 0.2><0.2, 0.4, 0.4><0.2, 0.4, 0.6><0.2, 0.4, 0.8><0.2, 0.4, 1.0>
<0.2, 0.6, 0.0><0.2, 0.6, 0.2><0.2, 0.6, 0.4><0.2, 0.6, 0.6><0.2, 0.6, 0.8><0.2, 0.6, 1.0>
<0.2, 0.8, 0.0><0.2, 0.8, 0.2><0.2, 0.8, 0.4><0.2, 0.8, 0.6><0.2, 0.8, 0.8><0.2, 0.8, 1.0>
<0.2, 1.0, 0.0><0.2, 1.0, 0.2><0.2, 1.0, 0.4><0.2, 1.0, 0.6><0.2, 1.0, 0.8><0.2, 1.0, 1.0>
<0.4, 0.0, 0.0><0.4, 0.0, 0.2><0.4, 0.0, 0.4><0.4, 0.0, 0.6><0.4, 0.0, 0.8><0.4, 0.0, 1.0>
<0.4, 0.2, 0.0><0.4, 0.2, 0.2><0.4, 0.2, 0.4><0.4, 0.2, 0.6><0.4, 0.2, 0.8><0.4, 0.2, 1.0>
<0.4, 0.4, 0.0><0.4, 0.4, 0.2><0.4, 0.4, 0.4><0.4, 0.4, 0.6><0.4, 0.4, 0.8><0.4, 0.4, 1.0>
<0.4, 0.6, 0.0><0.4, 0.6, 0.2><0.4, 0.6, 0.4><0.4, 0.6, 0.6><0.4, 0.6, 0.8><0.4, 0.6, 1.0>
<0.4, 0.8, 0.0><0.4, 0.8, 0.2><0.4, 0.8, 0.4><0.4, 0.8, 0.6><0.4, 0.8, 0.8><0.4, 0.8, 1.0>
<0.4, 1.0, 0.0><0.4, 1.0, 0.2><0.4, 1.0, 0.4><0.4, 1.0, 0.6><0.4, 1.0, 0.8><0.4, 1.0, 1.0>
<0.6, 0.2, 0.0><0.6, 0.2, 0.2><0.6, 0.2, 0.4><0.6, 0.2, 0.6><0.6, 0.2, 0.8><0.6, 0.2, 1.0>
<0.6, 0.4, 0.0><0.6, 0.4, 0.2><0.6, 0.4, 0.4><0.6, 0.4, 0.6><0.6, 0.4, 0.8><0.6, 0.4, 1.0>
<0.6, 0.6, 0.0><0.6, 0.6, 0.2><0.6, 0.6, 0.4><0.6, 0.6, 0.6><0.6, 0.6, 0.8><0.6, 0.6, 1.0>
<0.6, 0.0, 0.0><0.6, 0.0, 0.2><0.6, 0.0, 0.4><0.6, 0.0, 0.6><0.6, 0.0, 0.8><0.6, 0.0, 1.0>
<0.6, 0.8, 0.0><0.6, 0.8, 0.2><0.6, 0.8, 0.4><0.6, 0.8, 0.6><0.6, 0.8, 0.8><0.6, 0.8, 1.0>
<0.6, 1.0, 0.0><0.6, 1.0, 0.2><0.6, 1.0, 0.4><0.6, 1.0, 0.6><0.6, 1.0, 0.8><0.6, 1.0, 1.0>
<0.8, 0.0, 0.0><0.8, 0.0, 0.2><0.8, 0.0, 0.4><0.8, 0.0, 0.6><0.8, 0.0, 0.8><0.8, 0.0, 1.0>
<0.8, 0.2, 0.0><0.8, 0.2, 0.2><0.8, 0.2, 0.4><0.8, 0.2, 0.6><0.8, 0.2, 0.8><0.8, 0.2, 1.0>
<0.8, 0.4, 0.0><0.8, 0.4, 0.2><0.8, 0.4, 0.4><0.8, 0.4, 0.6><0.8, 0.4, 0.8><0.8, 0.4, 1.0>
<0.8, 0.6, 0.0><0.8, 0.6, 0.2><0.8, 0.6, 0.4><0.8, 0.6, 0.6><0.8, 0.6, 0.8><0.8, 0.6, 1.0>
<0.8, 0.8, 0.0><0.8, 0.8, 0.2><0.8, 0.8, 0.4><0.8, 0.8, 0.6><0.8, 0.8, 0.8><0.8, 0.8, 1.0>
<0.8, 1.0, 0.0><0.8, 1.0, 0.2><0.8, 1.0, 0.4><0.8, 1.0, 0.6><0.8, 1.0, 0.8><0.8, 1.0, 1.0>
<1.0, 0.0, 0.0><1.0, 0.0, 0.2><1.0, 0.0, 0.4><1.0, 0.0, 0.6><1.0, 0.0, 0.8><1.0, 0.0, 1.0>
<1.0, 0.2, 0.0><1.0, 0.2, 0.2><1.0, 0.2, 0.4><1.0, 0.2, 0.6><1.0, 0.2, 0.8><1.0, 0.2, 1.0>
<1.0, 0.4, 0.0><1.0, 0.4, 0.2><1.0, 0.4, 0.4><1.0, 0.4, 0.6><1.0, 0.4, 0.8><1.0, 0.4, 1.0>
<1.0, 0.6, 0.0><1.0, 0.6, 0.2><1.0, 0.6, 0.4><1.0, 0.6, 0.6><1.0, 0.6, 0.8><1.0, 0.6, 1.0>
<1.0, 0.8, 0.0><1.0, 0.8, 0.2><1.0, 0.8, 0.4><1.0, 0.8, 0.6><1.0, 0.8, 0.8><1.0, 0.8, 1.0>
<1.0, 1.0, 0.0><1.0, 1.0, 0.2><1.0, 1.0, 0.4><1.0, 1.0, 0.6><1.0, 1.0, 0.8><1.0, 1.0, 1.0>

To install OPENJDK (javac/java) in Fedora(14/18/19/20)


Follow these steps:


[vinayak@localhost ~]$ su -



[root@localhost ~]# java-1.7.0-openjdk.i686                    
[root@localhost ~]# java-1.7.0-openjdk-accessibility.i686 
[root@localhost ~]# java-1.7.0-openjdk-devel.i686           
[root@localhost ~]# java-1.7.0-openjdk-headless.i686  

Friday, February 28, 2014

To install freeglut for LINUX-MINT


Open a terminal and enter the following commands to install the necessary libraries for OpenGL development:


1)  [vinayak@localhost ~]$ su -

enter admin pasword

2)

 [root@localhost ~]#   sudo apt-get update
[root@localhost ~]# sudo apt-get install freeglut3
[root@localhost ~]# sudo apt-get install freeglut3-dev
[root@localhost ~]# sudo apt-get install binutils-gold
[root@localhost ~]# sudo apt-get install g++ cmake
[root@localhost ~]# sudo apt-get install libglew-dev
[root@localhost ~]# sudo apt-get install g++
[root@localhost ~]# sudo apt-get install mesa-common-dev
[root@localhost ~]# sudo apt-get install build-essential
[root@localhost ~]# sudo apt-get install libglew1.5-dev libglm-dev
[root@localhost ~]#  exit

3)  [vinayak@localhost ~]$ gcc prog.c -lglut -lGL -lGLU