My master’s work

На одній парі препод попросив написать тіпа дипломну роботу за 3 часа. В результаті даної роботи зявилась робота з майбутнього. Так би мовити революційне досягнення, яке основане на технологіях майбутнього.

Даний пристрій фактично є еліксиром бесмертя.

Тому головне завдання вчених майбутнього

  • зробити аналізатор мозкових сигналів для інтерперетації даних отриманих від інтуіції, яка є доступом до знань всесвіту.
  • та написати інтерперетатор мозкових сигналів для відтворення даних, які фактично є дампом людського мозку.  Continue reading

Code snippet: replace window’s callback function

Exploring myGUI library. I have found this nice snippet.


//old procedure we'll replace later
LRESULT msOldWindowProc = NULL;
LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
...
mHwnd = (HWND)_handle;//our window

// our new callback function
if (!msOldWindowProc)
{
  msOldWindowProc = GetWindowLong(mHwnd, GWL_WNDPROC);
  SetWindowLong(mHwnd, GWL_WNDPROC, (long)windowProc);
}
...
//at the end of the program replace our procedure back
if (msOldWindowProc)
{
 SetWindowLong((HWND)mHwnd, GWL_WNDPROC, (long)msOldWindowProc);
 msOldWindowProc = 0;
}

Debugging BIOS under VMWare using IDA’s GDB debugger

This is a very special task “To debug BIOS”. But we can do it, using TRUE soft. You must install on your system VMWare Workstation and IDA.

First thing, that you must do – to read article from HexRays. In this article were wrote method of Windows Kernel debugging, using VMWare + IDA. I’ll write some general information from this article and methods of BIOS debugging below.

So. Let’s go. Continue reading

Блокировка запуска приложений

Данный был найден на форуме rsdn.ru(нашел не я. поэтому источнику информации огромное спасибо). Путь, как утверждает автор, совершенно легальный и работает еще с W2K. Был успешно реализован на Windows 7. Итак приступим.

Continue reading

Hidden Windows 7 Wallpapers

There are hidden wallpapers in windows 7

path:c:\Windows\Globalization\MCT\

It is a hidden folder, so use “show hidden files”.This will display five new unindexed folders, each corresponding to a different global region. Browse these folders for some extra themes and wallpapers specific to Australia, USA, South Africa, and Canada.

There are also themes for Win7.

How to install Windows 7 from usb flash drive 100% working

This guide works 100% for Vista & Windows 7 unlike most of the guides out there. I have seen many sites/blogs that have “Install Vista from USB guide” but either with incomplete steps or not working guide. I have also seen some guides that don’t’ use proper commands in this guide. After spending many hours I have come up with this 100% working guide.

Continue reading