- 博客(9)
- 收藏
- 关注
原创 minitab table for t test
data: GPA ACT3.897 213.885 143.778 282.540 223.028 213.865 312.962 323.961 270.500 293.178 263.310 243.538 303.083 243.013 243.245 332.963 273.522 253.013 31
2009-05-11 00:13:00
769
原创 statistics table calculator in Javascript
//--------------COMMON FUNCTIONS------------------------------------------------function setTail(i) { // i == 0 => norm, i == 1 => t, i == 2 => chi.// Reads radio-button setting and sets distrib
2009-05-10 08:37:00
601
原创 Get Volume Bitmap-NTFS
// Get volume bitmap(Only correct on NTFS)VOLUME_BITMAP_BUFFER *GetVolumeBitmap( HANDLE hDev, unsigned int *puiBitmapSize) { STARTING_LCN_INPUT_BUFFER sStartLcn; sStartLcn.StartingLcn.Qu
2009-04-24 02:49:00
1454
原创 Example of copying device blocks
//Example of copying devices blockUINT uiErrModeSav = SetErrorMode( SEM_FAILCRITICALERRORS);WCHAR szDevName[_MAX_PATH]; if (!GetDeviceName(szDevName, ARRLEN(szDevN
2009-04-23 05:42:00
342
原创 Disable ugly popup window when program occurs ciritical error in windows
Disable ugly popup window when program fails in windowsUINT uiErrModeSav = SetErrorMode( SEM_FAILCRITICALERRORS);
2009-04-23 05:36:00
286
原创 Open Device (Hard Drive, CD/DVD)
// DeviceIoControl allows program to access hidden areaHANDLE OpenBlockDevice(const WCHAR *szDevName, bool fWrite) { HANDLE h = CreateFile(szDevName, fWrite ? GENERI
2009-04-23 05:31:00
703
原创 Open Device(Hard Drive, CD/DVD) or a device from its mount point
// szInput:in:// 1. Device no, st, 0,1,...,n// 2. Device char, st, C:, D:, ....// 3. Device mount path, st, C:/CD-ROM//szDevName:out//cchDevName:outbool GetDeviceName(WCHAR *szDevName,
2009-04-23 05:08:00
397
原创 string to number code in C++ template
template bool AtoI(WCHAR *sz, IntType *out) { int i = 0; bool sign = false; if (sz[i] == -) { ++i; sign = true; } int base = 10; if(sz[i] == 0 && tolower(sz[i
2009-04-23 04:58:00
335
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人