Skip to main content

Food For



FOODS TO STRENGTH HAIR ROOTS   FOOD FOR GOOD SKIN   HEALTHY BLADDER HABBITS   FOOD FO HAIR LOSS  
GREEN TEA PEANUTS coffee...drink herbal tea WALNUTS  
CARROTS PEANUT BUTTER seltzer...drink spring water SPINACH  
EGGS SUNFLOWER SEEDS milk or dark chocolate...eat carob PUMPKIN SEEDS OIL  
DARK GREEN LEAFY VEGETABLES PUMPKIN SEEDS raw onions...eat cooked onions COCONUT OIL  
BROWN RICE EGGS citrus fruits...eat blueberries, pears HONEY  
WALNUTS SOYA BEAN artificial sweeteners...eat sugar  
COTTAGE CHEESE   CRANBERRY JUICE  
GREEN PEAS    
LENTILS    
BELL PEPPERS    
WHOLE GRAIN    
BLUEBERRIES    
     
FOODS FOR REVERSING GROWING HAIR   BRAIN FOOD   FOOD FOR HEALTHY KIDNEYS      
RED BELL PEPPERS  
CABBAGE  
CAULIFLOWER  
GARLIC  
APPLES  
CHERRIES  
RED GRAPES  
EGG WHITE  
OLIVE OIL   
GINGER  
CORIENDER  
WALNUT  
 
BRAIN FOOD       FIGHTING UTI      
CELERY  
ASPARAGUS  
CUCUMBER  
FENNEL  
CELERIAC  
JICAMA  
RADISH  
CRANBERRIES  
BLUE BERRIES  
COCONUT  
WATERMELON  
GINGER ROOTS  
LEMON GRASS  
GRAPEFRUIT  
HIGH METABOLISM FOOD              
GREEN TEAN WITH  HONEY DRINKING PLENTY OF WATER  
ALMONDS IN THE MORNING  
MILK AND YOGURT MILK |YOGURT  
FULL FAT MILK  
GARLIC Recent studies have shown that garlic supports blood-sugar metabolism and helps control lipid (fat) levels in the blood. Adding garlic to foods that are rich in fats and carbohydrates may keep those substances from doing the damage they’re known to do. What’s more, eating garlic can help boost your immune system, help ward off heart disease, fight inflammation and lower blood pressure—to name a few  
NUTS AND SEED ry fruits are a powerhouse of energy. Nuts like almonds, Brazil nuts, walnuts and pistachios have numerous health advantages. Nuts are great sources of protein. Since protein has a high thermic effect your body will have to burn more fats to digest these. Seeds like sunflower seeds and flax seed also help in lifting your metabolism.  
LENTILS AND WHOLE GRAIN Lentils are a great source of proteins, carbohydrates and fiber that helps in good digestion. The iron content facilitates the flow of oxygen throughout the body which further helps in boosting metabolism and energy production. Also, include whole grains in your diet as they require extra energy to break down and digest and help in burning fat.  

Comments

Popular posts from this blog

Microservices Design patterns

What are microservices? Microservices - also known as the microservice architecture - is an architectural style that structures an application as a collection of services that are Highly maintainable and testable Loosely coupled Independently deployable Organized around business capabilities Owned by a small team The microservice architecture enables the rapid, frequent and reliable delivery of large, complex applications. It also enables an organization to evolve its technology stack. You are developing a server-side enterprise application. It must support a variety of different clients including desktop browsers, mobile browsers and native mobile applications. The application might also expose an API for 3rd parties to consume. It might also integrate with other applications via either web services or a message broker. The application handles requests (HTTP requests and messages) by executing business logic; accessing a database; exchanging messages with other systems; and returni...

GraphQL

What is GraphQL  API Standard invented & open-sourced by Facebook Alternative to  REST API  enables declarative data fetching  exposes single endpoint & responds to queries How it works?  Why Graphql? Improvises performance by reducing the data that is to be transferred over the internet Variety of different frontend frameworks and platforms on client-side Fast development speed & expectation for rapid feature development Why Graphql is better than REST? Flexibility & efficient  No more over /under fetching of data Over fetching : Under fetching: Insightful analytics  Schema serves as contract between client and server CORE CONCEPTS : SDL :SCHEMA DEFINITION LANGUAGE Writing Data with mutations 3 kinds of mutations creating new data updating existing data deleting existing data

Jackson

<dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId> jackson-core </artifactId> <version>2.9.6</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId> jackson-annotations </artifactId> <version>2.9.6</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId> jackson-databind </artifactId> <version>2.9.6</version> </dependency> CBOR encoded data with Jackson <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-cbor</artifactId> <version>2.9.6</version> </dependency> In order to read and write MessagePack encoded data <dependency> <groupId>org.msgpack</groupId> <artifactId>jackson-dataformat-msgp...