Thursday, November 24, 2011

HP Technology at Work - How to project confidence in public



NOVEMBER 2011
Dear Reader,

The festive season is fast approaching. It tends to be a stressful time of year with deadlines to meet & projects to wrap up by the end of the year. Not to mention the Christmas shopping!

Follow our time management tips to stay on track and have a good time!

We hope you enjoy all our articles this month.
Natasha Fabulic
Natasha Fabulic
EDITOR
Natasha
How to project confidence in public
WORKPLACE PRODUCTIVITY
How to project confidence in public
FIND OUT HOW
Google vs Facebook: the competition heats up
SOCIAL MEDIA
Google vs Facebook: the competition heats up
LEARN MORE
Think you know IT?
2011 TOP TECH NEWS
Think you know IT?
TEST YOUR KNOWLEDGE
5 ways to simplify your data centre
BEST PRACTICES
5 ways to simplify your data centre
LEARN HOW
Cool mobile solutions for 2012
TECH TRENDS
Cool mobile solutions for 2012
WHICH ONE'S FOR YOU?
What yoga can teach you about your SAN environment
STORAGE
What yoga can teach you about your SAN environment
WATCH THIS VIDEO
Stomp, drop, shake, cook -- PCs that pass the toughest tests
BUSINESS PCs
Stomp, drop, shake, cook --
PCs that pass the toughest tests
DEMAND RELIABILITY
RELATED LINKS
Elitebook 8460p Data Sheet
Time-management tips that work
PERSONAL PRODUCTIVITY
Time-management tips that work
TRY THEM
Technology soon to be seen... on the movie screen
COMPUTERS OF THE FUTURE
Technology soon to be seen... on the movie screen
TAKE A PEEK
Is the office really neccessary?
WORKFORCE MOBILITY
Is the office really neccessary?
GET THE FACTS
Tips to help you keep business moving during a natural disaster
DISASTER SURVIVAL
Tips to help you keep business moving during a natural disaster
LEARN HOW














Google Wave Sunsetting in 2012

Dear Wavers,

More than a year ago, we announced that Google Wave would no longer be
developed as a separate product. At the time, we committed to
maintaining the site at least through to the end of 2010. Today, we
are sharing the specific dates for ending this maintenance period and
shutting down Wave. As of January 31, 2012, all waves will be
read-only, and the Wave service will be turned off on April 30, 2012.
You will be able to continue exporting individual waves using the
existing PDF export feature until the Google Wave service is turned
off. We encourage you to export any important data before April 30,
2012.

If you would like to continue using Wave, there are a number of open
source projects, including Apache Wave. There is also an open source
project called Walkaround that includes an experimental feature that
lets you import all your Waves from Google. This feature will also
work until the Wave service is turned off on April 30, 2012.

For more details, please see our help center.

Yours sincerely,

The Wave Team

© 2011 Google Inc. 1600 Amphitheatre Parkway, Mountain View, CA 94043
You have received this mandatory email service announcement to update
you about important changes to your Google Wave account.

Wednesday, November 23, 2011

Download 4shared without waiting

Usable only in Internet Exaplorer

: put this in url bar when the download counting begin

javascript:alert%20(c=1)

Wednesday, November 9, 2011

I want to invite you to Dropbox

I wants you to try Dropbox! Dropbox lets you bring all your photos, docs and videos with you anywhere and share them easily.

Get started here.

- The Dropbox Team

Tuesday, November 8, 2011

Opencv extract background from video

opencv 2.3.1

#include <iostream>
#include <opencv/cv.h>
#include <opencv/highgui.h>
#include <opencv2/imgproc/imgproc_c.h>
#include <opencv2/video/background_segm.hpp>

using namespace std;
using namespace cv;

int main(int argc, char** argv) {
     VideoCapture capture(argv[1]);
     if(!capture.isOpened())
          return -1;
     Mat frame, foreground;
     BackgroundSubtractorMOG mog;
     while(1){
          if(!capture.read(frame))
               break;
          mog(frame, foreground, 0.05);
          threshold(foreground,           foreground,120,255,THRESH_BINARY_INV);
          imshow("img", frame);
          imshow(argv[1], foreground);
          if(waitKey(10)> 0) break;
     }
}

C++ tutorial

http://www.intap.net/~drw/cpp/index.htm

opencv example people counting

http://www.hci.iastate.edu/575x/doku.php?id=cpilson:homework:hw3

Friday, November 4, 2011

How to remove discovered include paths from your Standard Make Project in Eclipse/CDT

Getting invalid include path when compiling your c/c++ project:
how to remove them::

  1. Right-click your project from the "C/C++ Projects" window, select "Properties"
  2. Select "C/C++ Make Project", then the "Discovery Options" tab
  3. Uncheck "Automate discovery of paths and symbols"
  4. Select "C/C++ Project Paths" on the sidebar, then the "Path Containers" tab
  5. Click on "Discovered Paths" to select it, then click "Remove"
  6. Click "OK"

Proxmox installation display out of range

Reference:  https://forum.proxmox.com/threads/proxmox-ve-screen-out-of-range.131297/