Skil launches Paint the Town Red for grassroots communities nationwide

For the past six years, the Philippines has been one of the highest growing countries for Skil, one of the most recognized brands in the global power tool industry. Skil is giving back to the Philippine community through its recent philanthropic endeavor Paint the Town Red, which aims to construct 40 basketball half-courts in 40 selected barangays nationwide.

The campaign underscores Skil’s commitment to creating sustainable corporate social responsibility (CSR) projects aimed at community building and youth development.

“Skil is investing in sustainable CSR projects that do more than just widen brand awareness and visibility. The main idea is to do good and to do well. Through Paint the Town Red, Skil does not only build basketball courts for communities to enjoy, but we also donate small power tools for their various projects,” said William Go, Bosch Power Tools Country Sales Director. “In partnership with local government units, we are able to conduct hands-on training workshops and seminars for members of the community to teach them how to properly use power tools as a source of livelihood.”

The campaign also brought Skil ambassador and champion basketball coach Norman Black onboard to exemplify the brand’s strong American heritage and commitment to delivering precision and performance to a range of power tool users.
“Coach Norman is more than just a poster boy for the brand, he is Skil personified. He gets the job done, whether for basketball or for the carpentry projects he does at home. In line with the campaign’s mission to contribute to grassroots youth development, Coach Norman is the perfect role model to inspire and engage the youth to get into sports as a fun and healthy outlet with all its physical and social benefits,” said Martin Valenzuela, Skil Brand Manager.

Paint the Town Red recently turned over the first of 40 basketball half-courts to Barangay Bangkal in Makati with more than 100 barangay residents and guests in attendance. Among esteemed attendees were Congresswoman Monique Lagdameo, Barangay Chairman Fermin Eusebio, Bosch Philippines Managing Director Joseph Hong and Skil Brand Ambassador Norman Black. After Bangkal, Skil will take the campaign on the road with stopovers in other communities in Manila and Cebu.

To strengthen its relationship with local communities, Skil and Robert Bosch, Inc. continue to support various advocacies, namely Class of 2010, Habitat for Humanity and MyShelter’s Liter of Light among others. These projects form part of the company’s initiative to uplift the Philippine society and contribute to the evolving economy.

Yahoo Tips: Faster Websites.

Minimize HTTP Requests

80% of the end-user response time is spent on the front-end. Most of this time is tied up in downloading all the components in the page: images, stylesheets, scripts, Flash, etc. Reducing the number of components in turn reduces the number of HTTP requests required to render the page. This is the key to faster pages.

One way to reduce the number of components in the page is to simplify the page’s design. But is there a way to build pages with richer content while also achieving fast response times? Here are some techniques for reducing the number of HTTP requests, while still supporting rich page designs.

Combined files are a way to reduce the number of HTTP requests by combining all scripts into a single script, and similarly combining all CSS into a single stylesheet. Combining files is more challenging when the scripts and stylesheets vary from page to page, but making this part of your release process improves response times.

CSS Sprites are the preferred method for reducing the number of image requests. Combine your background images into a single image and use the CSS background-image and background-position properties to display the desired image segment.

Image maps combine multiple images into a single image. The overall size is about the same, but reducing the number of HTTP requests speeds up the page. Image maps only work if the images are contiguous in the page, such as a navigation bar. Defining the coordinates of image maps can be tedious and error prone. Using image maps for navigation is not accessible too, so it’s not recommended.

Inline images use the data: URL scheme to embed the image data in the actual page. This can increase the size of your HTML document. Combining inline images into your (cached) stylesheets is a way to reduce HTTP requests and avoid increasing the size of your pages. Inline images are not yet supported across all major browsers.

Reducing the number of HTTP requests in your page is the place to start. This is the most important guideline for improving performance for first time visitors. As described in Tenni Theurer’s blog postBrowser Cache Usage – Exposed!, 40-60% of daily visitors to your site come in with an empty cache. Making your page fast for these first time visitors is key to a better user experience.

Use a Content Delivery Network

tag: server

The user’s proximity to your web server has an impact on response times. Deploying your content across multiple, geographically dispersed servers will make your pages load faster from the user’s perspective. But where should you start?

As a first step to implementing geographically dispersed content, don’t attempt to redesign your web application to work in a distributed architecture. Depending on the application, changing the architecture could include daunting tasks such as synchronizing session state and replicating database transactions across server locations. Attempts to reduce the distance between users and your content could be delayed by, or never pass, this application architecture step.

Remember that 80-90% of the end-user response time is spent downloading all the components in the page: images, stylesheets, scripts, Flash, etc. This is the Performance Golden Rule. Rather than starting with the difficult task of redesigning your application architecture, it’s better to first disperse your static content. This not only achieves a bigger reduction in response times, but it’s easier thanks to content delivery networks.

A content delivery network (CDN) is a collection of web servers distributed across multiple locations to deliver content more efficiently to users. The server selected for delivering content to a specific user is typically based on a measure of network proximity. For example, the server with the fewest network hops or the server with the quickest response time is chosen.

Some large Internet companies own their own CDN, but it’s cost-effective to use a CDN service provider, such as Akamai TechnologiesEdgeCast, or level3. For start-up companies and private web sites, the cost of a CDN service can be prohibitive, but as your target audience grows larger and becomes more global, a CDN is necessary to achieve fast response times. At Yahoo!, properties that moved static content off their application web servers to a CDN (both 3rd party as mentioned above as well as Yahoo’s own CDN) improved end-user response times by 20% or more. Switching to a CDN is a relatively easy code change that will dramatically improve the speed of your web site.

Add an Expires or a Cache-Control Header

tag: server

There are two aspects to this rule:

  • For static components: implement “Never expire” policy by setting far future Expires header
  • For dynamic components: use an appropriate Cache-Control header to help the browser with conditional requests

 

Web page designs are getting richer and richer, which means more scripts, stylesheets, images, and Flash in the page. A first-time visitor to your page may have to make several HTTP requests, but by using the Expires header you make those components cacheable. This avoids unnecessary HTTP requests on subsequent page views. Expires headers are most often used with images, but they should be used on allcomponents including scripts, stylesheets, and Flash components.

Browsers (and proxies) use a cache to reduce the number and size of HTTP requests, making web pages load faster. A web server uses the Expires header in the HTTP response to tell the client how long a component can be cached. This is a far future Expires header, telling the browser that this response won’t be stale until April 15, 2010.

      Expires: Thu, 15 Apr 2010 20:00:00 GMT

 

If your server is Apache, use the ExpiresDefault directive to set an expiration date relative to the current date. This example of the ExpiresDefault directive sets the Expires date 10 years out from the time of the request.

      ExpiresDefault "access plus 10 years"

 

Keep in mind, if you use a far future Expires header you have to change the component’s filename whenever the component changes. At Yahoo! we often make this step part of the build process: a version number is embedded in the component’s filename, for example, yahoo_2.0.6.js.

Using a far future Expires header affects page views only after a user has already visited your site. It has no effect on the number of HTTP requests when a user visits your site for the first time and the browser’s cache is empty. Therefore the impact of this performance improvement depends on how often users hit your pages with a primed cache. (A “primed cache” already contains all of the components in the page.) We measured this at Yahoo! and found the number of page views with a primed cache is 75-85%. By using a far future Expires header, you increase the number of components that are cached by the browser and re-used on subsequent page views without sending a single byte over the user’s Internet connection.

read more

source: http://developer.yahoo.com/performance/rules.html

Berjaya turns over 200 homes in Cagayan de Oro

Berjaya Philippines, led by Country Manager Paul Soo, formally turned over the houses in Berjaya GK Village in Upper Bolonsiri, Camaman-an, Cagayan de Oro City. 200 homes were turned over to families who were greatly affected by Typhoon Sendong. Berjaya GK Village sits on a two-hectare property and was built in cooperation with the local government of CDO led by Mayor Vicente Emano and the City Council. Throughout the two-month construction period, Berjaya officials and employees took time to volunteer to paint the structures which are now homes to some 700 individuals.

Berjaya Philippines is one of the first companies to respond to the needs of the typhoon victims. As soon as Berjaya Group’s founder Tan Sri Dato Seri Vincent Tan knew about the disaster, Berjaya Philippines reached out to Gawad Kalinga and committed to build 200 homes.

Photo shows Berjaya Philippines Country Manager Paul Soo (center) handing over the scale model of a home to Cagayan de Oro City Mayor Vicente Emano (2nd from right) and witnessed by, from left: Gawad Kalinga Executive Director Jose Luis Oquinena, Berjaya Director Tan Eng Hwa, and GK Provincial Head Dr. Jun del Fierro (far right).

Volvo Philippines now offers performance tuning with Polestar package

Volvo Philippines goes full throttle as it now offers performance tuning for late-model Volvo gasoline and diesel turbocharged engines. The tuning is not limited to any single car and this makes the power boost available for a wide variety of old and new Volvos. Volvo works closely with its official motorsports partner, Polestar, and its team of engineers who have run Volvo official motorsport since 1996. Together, they developed the technology to ensure exhilarating driving wrapped in world-renowned Volvo safety.

GET MORE OUT OF YOUR VOLVO
The optimization consists of a software upgrade that your Volvo workshop installs. It’s a quick installation which can easily be done while your car is in for a service or tire change. With this power-up, your Volvo gets as much as 329hp and 480Nm of torque. That’s enhanced driving experience and an extra power reserve when you need it.

VOLVO WARRANTY INTACT
With the Polestar package, you are assured that the factory warranty remains intact, without any alterations to the service schedule. With an optimized engine, you will experience enhanced performance, especially in the mid-range where the added performance is most useful – for example when overtaking.

FUEL CONSUMPTION AND THE ENVIRONMENT
Polestar power optimization affects neither the car’s certified fuel consumption nor emissions during normal driving. Your car still follows the original Volvo service schedule as well because all the changes Polestar make are tested and verified not to stress any component beyond its performance limits.

YOUR VOLVO IS MADE TO BE OPTIMIZED
The Polestar upgrade is available for only PhP50, 000.00 that is relatively lower than even the $1,295 and $1,495 tags in the competitive U.S. market. The upgrade, which comes with a badge to prove it, is likely to increase the resale value of your car and everyone is encouraged to register on www.polestar.com to receive a product certificate that verifies that your car has been optimized by Polestar.

Volvo is a high quality car built with advanced engineering, solid components and with focus on safety and reliability. This makes Volvo the perfect starting point for performance enhancements. When Polestar’s R&D team develops a new product, they consider the precise limits of what each and every component is designed to handle. Since your Volvo is a very strong and well-built car, you can safely get more out of it without risking negative side effects. Optimizing your Volvo will just make it feel better.

Treats for P2.00 at The Coffee Bean & Tea Leaf with Citibank Credit Cards


Enjoy another irresistible P2.00 treat from Citibank Credit Cards! Every single-receipt purchase of at least P2,500 anywhere from October 16 to 22, 2012 entitles Citibank cardholders to buy a cup of their favorite beverage at The Coffee Bean & Tea Leaf for only P2.00.

Even online transactions are included for as long as you make a minimum spend of P2,500 within the 7-day promotion period.

From October 26 to 28, 2012, get any beverage of any size for just P2.00 at participating branches of The Coffee Bean & Tea Leaf: Alabang Town Center, Eastwood City Walk 2, Gateway Mall, Greenbelt, Greenhills Promenade, Rockwell Power Plant Mall, Robinson’s Galleria, Shangri-La Plaza, SM Mall of Asia, Trinoma and Ayala Cebu.

Buy as many beverages as you can for only P2.00! Just present the Citibank Credit Card you used for your qualified purchases at the cashier or payment counter of participating branches of The Coffee Bean & Tea Leaf.