Environment Sustainability

About 7 billion people living on the planet, regardless of who you are, where you live or what you do, you are impacted by and have an impact on the health of the planet, society and the world economy.

Bees play a crucial role in the supply of the world’s food as they are essential for the pollination of one third of the world’s crops. Bees colonies are disappearing and only a few are bothered about it.

Planet Fact:

  • 7 billion people live in the planet
  • People live in 195 countries (192 are members of UN)
  • 6000 – 7000 different languages people speak
  • Earth has 70.8% water and 29.2% land. 97% salt water and 3% freshwater
  • Basic of Supply Chain Management

    Supply Chain is a set of approaches utilized to efficiently integrate suppliers, manufacturers, warehouses and stores so that merchandise is produced and distributed at the right quantities to the right locations and the right time in order to minimize systemwide cots while satisfying service level requirements.

    It takes into consideration every facility that has impact on cost and plays a role in making the product according to customer requirements.

    It is to be efficient and cost effective across the entire system; total systemwide, from transportation and distribution to inventories of raw materials, work in progress and finished goods are to be minimized.

    It encompasses the firm’s activities at many levels, from the strategic level through the tactical to the operational level.

    What makes Supply Chain difficult?
    1. Supply Chain strategies cannot be determined in isolation. Development chain – set of activities associated with new product introduction. Aligned with organizations goals.
    2. It is challenging to design and operate a supply chain so that total systemwide costs are minimized and systemwide service levels are maintained. Global optimization is the process of finding the best systemwide strategy.
    3. Uncertainty and risk are inherent in every supply chain. Customer demand can never be forecast and travel times can never be certain also machines breakdown.

    Development Chain
    Is a set of activities and processes associated with new product introduction such as design phase, associated capabilities and knowledge that need to be developed internally, sourcing decisions and production plans. Decision made in the development chain will have an impact on the supply chain whereas supply chain must have an impact on product design strategy and development chain.

    02 Jan-2012 – readings

    Draw & Animate Shapes With JavaScript
    JSGL allows drawing, moving and changing graphics objects.

    Geolocation API
    Using the Geolocation API

    Web Design
    Best of web design 2011

    Top 5 Secrets for Web Design Success
    1. Understand your audience and create site for the customer.
    2. Should be simple, fast, easy to navigate, colors and images flow.
    3. Refreshing contents
    4. Build a valuable site
    5. Choose domain carefully.

    Flexible And Powerful jQuery Carousel Plugin

    10 Apps to Monetize an Ecommerce Facebook Business Page

    Animate webpage elements with Scrollorama jQuery plugin

    Sugar is a Javascript library that extends native objects with helpful methods. It is designed to be intuitive, unobtrusive, and let you do more with less code.

    HTML5 Resources

    Video Players that can be used with HTML5.

    YUI HTML5 Player is a YUI 3 widget that creates a video player using the HTML5 video tag and JavaScript based on YUI 3.It provides full JavaScript/HTML/CSS UI and full Availability of HTML5

    Online Tools

    Textures in html5

    Basic Markup

    01 <!DOCTYPE html>
    02 <html lang=”en”>
    03 <head>
    04 <meta charset=”utf-8″ />
    05 <title>Smashing HTML5!</title>
    06
    07 <link rel=”stylesheet” href=”css/main.css” type=”text/css” />
    08
    09 <!–[if IE]>
    10 <script src=”http://html5shiv.googlecode.com/svn/trunk/html5.js”></script>
    <![endif]–>
    11 <!–[if lte IE 7]>
    12 <script src=”js/IE8.js” type=”text/javascript”></script><![endif]–>
    13 <!–[if lt IE 7]>
    14
    15 <link rel=”stylesheet” type=”text/css” media=”all” href=”css/ie6.css”/><![endif]–>
    16 </head>
    17
    18 <body id=”index”>
    19 </body>
    20 </html>

    Highlights:
    3 different Conditional comments for IE.
    1. html5 shiv code directly from Google Code for all versions of IE.
    2.IE8.js for better backwards compatibility for IE7 and below as well as an ie.css file which will sove IE7 and below CSS bugs.
    3. CSS file to fix IE6 bugs.
    The use of an “index” id and a “home” class on the <body> tag.
    A simplified version of the charset property for better backwards compatibility with legacy browsers.
    Uppercase attribute and tag names, unclosed tags and no quotes for wrapping attributes’ values.