Archive

Archive for the ‘Fresh News’ Category

integer types with specified widths

January 27th, 2011 No comments

stdint.h is a header file in the C standard library introduced in the C99 standard library section 7.18 to allow programmers to write more portable code by providing a set of typedefs that specify exact-width integer types, together with the defined minimum and maximum allowable values for each type, using macros. This header is particularly useful for embedded programming which often involves considerable manipulation of hardware specific I/O registers requiring integer data of fixed widths, specific locations and exact alignments. stdint.h (for C), and stdint.h and cstdint (for C++).

stdint.h defines:

int8_t
int16_t
int32_t
uint8_t
uint16_t
uint32_t

stdint.h is not shipped with older C++ compilers and Visual Studio C++ products prior to Visual Studio 2010.

wikipedia

How to center a window on the screen

January 26th, 2011 No comments
#include <QStyle>
#include <QDesktopWidget>

window->setGeometry(QStyle::alignedRect(Qt::LeftToRight,
                                        Qt::AlignCenter,
                                        window->size(),
                                        qApp->desktop()->availableGeometry() ));

Qt wiki

Back up my Opera files

January 23rd, 2011 No comments

To backup Opera you need backup the following folders:

  • Folders: sessions, skin, styles, toolbar, webserver
    Win32: Application Data\Opera\Opera
    Win64: C:\Users\<username>\AppData\Roaming\Opera\Opera
  • Folders: cache, icons, mail, opcache, temporary_downloads, thumbnails, vps, widgets
    win32: LocalSettings\ApplicationData
    win64: C:\Users\<username>\AppData\Local\Opera\Opera

For more info, see “How do I back up my Opera files?

Tags: , ,

BigBlueButton

January 18th, 2011 No comments

BigBlueButton enables universities and colleges to deliver a high-quality learning experience to remote studies.

BigBlueButton is an active open source project that focuses on usability, modularity, and clean design — both for the user and the developer. The project is hosted at Google Code.

BigBlueButton is built by combining over fourteen open source components.

BigBlueButton

Additional articles:

about Tools

January 16th, 2011 No comments

Tools amplify your talent. The better your tools, and the better you know how to use them, the more productive you can be.

The Pragmatic Programmer: From Journeyman to Master

Andrew Hunt (Author), David Thomas (Author)

Tags: ,

Simon Sinek: How great leaders inspire action

January 15th, 2011 No comments

About this talk

Simon Sinek has a simple but powerful model for inspirational leadership all starting with a golden circle and the question “Why?” His examples include Apple, Martin Luther King, and the Wright brothers — and as a counterpoint Tivo, which (until a recent court victory that tripled its stock price) appeared to be struggling.

About Simon Sinek

In 2009, Simon Sinek released the book “Start With Why” — a synopsis of the theory he has begun using to teach others how to become effective leaders and inspire change. Full bio and more links

Tags: , ,

Generate a Visual Studio 2010 project file from a qmake pro file

January 10th, 2011 No comments

qmake -spec win32-msvc2010 -tp vc <project_file>.pro

Ubuntu-certified hardware

January 10th, 2011 No comments

The hardware table has all been awarded the status of Certified or Ready for Ubuntu.

Tags:

Linux Command Line

January 8th, 2011 No comments

Visual Studio 2010 runs faster when the Windows Automation API 3.0 is installed

January 4th, 2011 No comments

Applications that use Windows Automation APIs can significantly decrease Microsoft Visual Studio IntelliSense performance if Windows Automation API 3.0 is not installed. For example, the Windows pen and touch services can significantly decrease Visual Studio IntelliSense performance if Windows Automation API 3.0 is not installed. This article describes how to install the Windows Automation API 3.0 update. This update is available as a stand-alone download for 32-bit editions of Windows XP and for Windows Server 2003. This update is not available for 64-bit editions of Windows XP. The Windows Automation API is a component of the platform update for Windows Vista and of the platform update for Windows Server 2008.

Windows Automation API

The Windows Automation API library enables accessibility tools, test automations, and pen services to access a standard user interface across operating system versions.

More Information (TechNet)