一個(gè)殺毒的軟件,專(zhuān)門(mén)殺netsend.exe.TMP之類(lèi)的電腦病毒,對(duì)那些連好的殺毒軟件沒(méi)也沒(méi)有辦法的病毒能有效解決
上傳時(shí)間: 2015-06-22
上傳用戶(hù):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
標(biāo)簽: metaprogramming you template excited
上傳時(shí)間: 2016-07-20
上傳用戶(hù):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.
標(biāo)簽: Carousel Profile Parses Object
上傳時(shí)間: 2014-01-14
上傳用戶(hù):hgy9473
FreeWRLduneInputDevice和FreeWRL一起可以讓用戶(hù)用帶有6DoF的輸入設(shè)備檢索3D VRML/X3D數(shù)據(jù)。它基于FreeWRL的"/TMP/inpdev"擴(kuò)展傳感器輸入接口和white_dune的輸入設(shè)備機(jī)制。
標(biāo)簽: FreeWRL FreeWRLduneInputDevice inpdev 6DoF
上傳時(shí)間: 2013-11-29
上傳用戶(hù):kelimu
MPLAB X IDE v5.40-XC8編譯器的下載鏈接包括百度的和TMP.link的
上傳時(shí)間: 2022-05-02
上傳用戶(hù):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(); /***************延時(shí)程序,單位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;}
標(biāo)簽: 18b20 C51 芯片 溫度測(cè)量
上傳時(shí)間: 2013-10-29
上傳用戶(hù):sssnaxie
16 16點(diǎn)陣顯示漢字原理及顯示程序 #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[] = { /*-- 調(diào)入了一幅圖像:這是您新建的圖像 --*/ /*-- 寬度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 //-----
標(biāo)簽: 16 點(diǎn)陣顯示 漢字 顯示程序
上傳時(shí)間: 2013-11-18
上傳用戶(hù):mnacyf
C++完美演繹 經(jīng)典算法 如 /* 頭文件:my_Include.h */ #include <stdio.h> /* 展開(kāi)C語(yǔ)言的內(nèi)建函數(shù)指令 */ #define PI 3.1415926 /* 宏常量,在稍后章節(jié)再詳解 */ #define circle(radius) (PI*radius*radius) /* 宏函數(shù),圓的面積 */ /* 將比較數(shù)值大小的函數(shù)寫(xiě)在自編include文件內(nèi) */ 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("由小至大排序之后的結(jié)果:%d %d %d\n", a, b, c) } 程序執(zhí)行結(jié)果: 由小至大排序之后的結(jié)果:1 2 3 可將內(nèi)建函數(shù)的include文件展開(kāi)在自編的include文件中 圓圈的面積是=201.0619264
標(biāo)簽: my_Include include define 3.141
上傳時(shí)間: 2014-01-17
上傳用戶(hù):epson850
破解V2手機(jī)卡軟件 以東V2卡可解了,全國(guó)3創(chuàng)解卡技術(shù),移動(dòng)從05年下半年起采用了V2的卡,現(xiàn)有的解卡軟件都不能解出KI,經(jīng)過(guò)專(zhuān)家人士2年多的研究,終于可以解移動(dòng)V2卡了,首先用Cnmk.Net_V2卡信息收集器.exe信息分析軟件,當(dāng)軟件出"恭喜你,此卡可破解,請(qǐng)將該程序同目錄下的alg.TMP文件保存好并與作者聯(lián)系!"的提示時(shí)說(shuō)明此卡有解,你可將alg.TMP文件傳給我,我通過(guò)專(zhuān)用的軟件分析提供的文件,得到一對(duì)KI提供給你,你就可以用woron scan 1.09軟件獲得完整的KI.如果提示"此為V1卡,請(qǐng)用simscan破解!",那你可以用simscan破解,如果提示為V1卡,又不能解也可聯(lián)系我!本方式解卡不用寄卡,不用擔(dān)心泄密,由于讀卡是由用戶(hù)自己讀卡,而且提供的文件只包含及少信息,僅可算出KI的一對(duì),因此不會(huì)因?yàn)榻饪ǘ孤┛ǖ腒I信息.
上傳時(shí)間: 2015-12-29
上傳用戶(hù):daguda
一個(gè)自制的生物信息學(xué)程序。 這個(gè)程序目的是在基因組文件bsubt168_whole.nuc(部分)中查找設(shè)置文件ss.ini所記錄的短核苷酸序列CTTAAG(這種短核苷酸一般稱(chēng)寡核苷酸)及其互補(bǔ)序列在該基因組的每10000個(gè)堿基中出現(xiàn)的次數(shù)。 程序先將碰到的寡核苷酸及其互補(bǔ)序列的位置保存在臨時(shí)文件ss.TMP中,然后利用這個(gè)文件統(tǒng)計(jì)每10000個(gè)堿基中它們的出現(xiàn)次數(shù)并記錄在ss.csv中(可用excel打開(kāi))。如果某10000個(gè)堿基中的出現(xiàn)次數(shù)為0,則不被記錄。
標(biāo)簽: CTTAAG bsubt whole 168
上傳時(shí)間: 2014-01-26
上傳用戶(hù):小儒尼尼奧
蟲(chóng)蟲(chóng)下載站版權(quán)所有 京ICP備2021023401號(hào)-1