一個殺毒的軟件,專門殺netsend.exe.tmp之類的電腦病毒,對那些連好的殺毒軟件沒也沒有辦法的病毒能有效解決
上傳時間: 2015-06-22
上傳用戶:manlian
If you re like me, you re excited by what people do with template metaprogramming (tmp) but are frustrated at the lack of clear guidance and powerful tools. Well, this is the book we ve been waiting for. With help from the excellent Boost Metaprogramming Library, David and Aleksey take tmp from the laboratory to the workplace with readable prose and practical examples, showing that "compile-time STL" is as able as its runtime counterpart. Serving as a tutorial as well as a handbook for experts, this is the book on C++ template metaprogramming."Chuck Allison, Editor, The C++ Source
標簽: metaprogramming you template excited
上傳時間: 2016-07-20
上傳用戶:gundamwzc
Parses UK Profile 1.05/1.06 Object Carousel and saves files to disk (all stored under /tmp/cache at the moment). The files are the scripts and text/image data for MHEG5, the interactive(ish) element of digital TV. At the moment the MHEG scripts are not parsed, so to duplicate that interactive experience, speedy usage of "cat" and "xv" is recommended.
標簽: Carousel Profile Parses Object
上傳時間: 2014-01-14
上傳用戶:hgy9473
FreeWRLduneInputDevice和FreeWRL一起可以讓用戶用帶有6DoF的輸入設備檢索3D VRML/X3D數據。它基于FreeWRL的"/tmp/inpdev"擴展傳感器輸入接口和white_dune的輸入設備機制。
標簽: FreeWRL FreeWRLduneInputDevice inpdev 6DoF
上傳時間: 2013-11-29
上傳用戶:kelimu
MPLAB X IDE v5.40-XC8編譯器的下載鏈接包括百度的和tmp.link的
上傳時間: 2022-05-02
上傳用戶:bluedrops
#include <reg51.h>#include<intrins.h> #define BUSY1 (DQ1==0) sbit DQ1 = P0^4; unsigned char idata tmp; unsigned char idata tmp_d; unsigned char f; void wr_ds18_1(char dat);unsigned char rd_ds18_1(); /***************延時程序,單位us,大于10us*************/void time_delay(unsigned char time){ time=time-10; time=time/6; while(time!=0)time--;} /*****************************************************//* reset ds18b20 *//*****************************************************/void ds_reset_1(void){ unsigned char idata count=0; DQ1=0; time_delay(240); time_delay(240); DQ1=1; return;}
上傳時間: 2013-10-29
上傳用戶:sssnaxie
16 16點陣顯示漢字原理及顯示程序 #include "config.h" #define DOTLED_LINE_PORT PORTB #define DOTLED_LINE_DDR DDRB #define DOTLED_LINE_PIN PINB #define DOTLED_LINE_SCKT PB1 #define DOTLED_LINE_SCKH PB5 #define DOTLED_LINE_SDA PB3 #define DOTLED_ROW_PORT PORTC #define DOTLED_ROW_DDR DDRC #define DOTLED_ROW_PIN PINC #define DOTLED_ROW_A0 PC0 #define DOTLED_ROW_A1 PC1 #define DOTLED_ROW_A2 PC2 #define DOTLED_ROW_A3 PC3 #define DOTLED_ROW_E PC4 uint8 font[] = { /*-- 調入了一幅圖像:這是您新建的圖像 --*/ /*-- 寬度x高度=16x16 --*/ 0x00,0x00,0x00,0x00,0x08,0x38,0x18,0x44,0x08,0x44,0x08,0x04,0x08,0x08,0x08,0x10, 0x08,0x20,0x08,0x40,0x08,0x40,0x08,0x40,0x3E,0x7C,0x00,0x00,0x00,0x00,0x00,0x00 }; static void TransmitByte(uint8 byte); static void SelectRow(uint8 row); static void FlipLatchLine(void); static void TransmitByte(uint8 byte) { uint8 i; for(i = 0 ; i < 8 ; i ++) { if(byte & (1 << i)) { DOTLED_LINE_PORT |= _BV(DOTLED_LINE_SDA); } else { DOTLED_LINE_PORT &= ~_BV(DOTLED_LINE_SDA); } //__delay_cycles(100); DOTLED_LINE_PORT |= _BV(DOTLED_LINE_SCKH); //__delay_cycles(100); DOTLED_LINE_PORT &= ~_BV(DOTLED_LINE_SCKH); //__delay_cycles(100); } } static void SelectRow(uint8 row) { //row -= 1; row |= DOTLED_ROW_PIN & 0xe0; DOTLED_ROW_PORT = row; } static void FlipLatchLine(void) { DOTLED_LINE_PORT |= _BV(DOTLED_LINE_SCKT); DOTLED_LINE_PORT &= ~_BV(DOTLED_LINE_SCKT); } void InitDotLedPort(void) { DOTLED_LINE_PORT &= ~(_BV(DOTLED_LINE_SCKT) | _BV(DOTLED_LINE_SCKH)); DOTLED_LINE_PORT |= _BV(DOTLED_LINE_SDA); DOTLED_LINE_DDR |= _BV(DOTLED_LINE_SCKT) | _BV(DOTLED_LINE_SCKH) | _BV(DOTLED_LINE_SDA); DOTLED_ROW_PORT |= 0x1f; DOTLED_ROW_PORT &= 0xf0; DOTLED_ROW_DDR |= 0x1f; } void EnableRow(boolean IsEnable) { if(IsEnable) { DOTLED_ROW_PORT &= ~_BV(DOTLED_ROW_E); } else { DOTLED_ROW_PORT |= _BV(DOTLED_ROW_E); } } void PrintDotLed(uint8 * buffer) { uint8 i , tmp; for(i = 0 ; i < 16 ; i ++) { tmp = *buffer ++; TransmitByte(~tmp); tmp = *buffer ++; TransmitByte(~tmp); SelectRow(i); FlipLatchLine(); } } void main(void) { InitDotLedPort(); EnableRow(TRUE); while(1) { PrintDotLed(font); __delay_cycles(5000); } } //---------------------------------------------------- config.h文件 #ifndef _CONFIG_H #define _CONFIG_H //#define GCCAVR #define CPU_CYCLES 7372800L #ifndef GCCAVR #define _BV(bit) (1 << (bit)) #endif #define MSB 0x80 #define LSB 0x01 #define FALSE 0 #define TRUE 1 typedef unsigned char uint8; typedef unsigned int uint16; typedef unsigned long uint32; typedef unsigned char boolean; #include <ioavr.h> #include <inavr.h> #include "dotled.h" #endif //-----
上傳時間: 2013-11-18
上傳用戶:mnacyf
C++完美演繹 經典算法 如 /* 頭文件:my_Include.h */ #include <stdio.h> /* 展開C語言的內建函數指令 */ #define PI 3.1415926 /* 宏常量,在稍后章節再詳解 */ #define circle(radius) (PI*radius*radius) /* 宏函數,圓的面積 */ /* 將比較數值大小的函數寫在自編include文件內 */ int show_big_or_small (int a,int b,int c) { int tmp if (a>b) { tmp = a a = b b = tmp } if (b>c) { tmp = b b = c c = tmp } if (a>b) { tmp = a a = b b = tmp } printf("由小至大排序之后的結果:%d %d %d\n", a, b, c) } 程序執行結果: 由小至大排序之后的結果:1 2 3 可將內建函數的include文件展開在自編的include文件中 圓圈的面積是=201.0619264
標簽: my_Include include define 3.141
上傳時間: 2014-01-17
上傳用戶:epson850
破解V2手機卡軟件 以東V2卡可解了,全國3創解卡技術,移動從05年下半年起采用了V2的卡,現有的解卡軟件都不能解出KI,經過專家人士2年多的研究,終于可以解移動V2卡了,首先用Cnmk.Net_V2卡信息收集器.exe信息分析軟件,當軟件出"恭喜你,此卡可破解,請將該程序同目錄下的alg.tmp文件保存好并與作者聯系!"的提示時說明此卡有解,你可將alg.tmp文件傳給我,我通過專用的軟件分析提供的文件,得到一對KI提供給你,你就可以用woron scan 1.09軟件獲得完整的KI.如果提示"此為V1卡,請用simscan破解!",那你可以用simscan破解,如果提示為V1卡,又不能解也可聯系我!本方式解卡不用寄卡,不用擔心泄密,由于讀卡是由用戶自己讀卡,而且提供的文件只包含及少信息,僅可算出KI的一對,因此不會因為解卡而泄漏卡的KI信息.
上傳時間: 2015-12-29
上傳用戶:daguda
一個自制的生物信息學程序。 這個程序目的是在基因組文件bsubt168_whole.nuc(部分)中查找設置文件ss.ini所記錄的短核苷酸序列CTTAAG(這種短核苷酸一般稱寡核苷酸)及其互補序列在該基因組的每10000個堿基中出現的次數。 程序先將碰到的寡核苷酸及其互補序列的位置保存在臨時文件ss.tmp中,然后利用這個文件統計每10000個堿基中它們的出現次數并記錄在ss.csv中(可用excel打開)。如果某10000個堿基中的出現次數為0,則不被記錄。
上傳時間: 2014-01-26
上傳用戶:小儒尼尼奧