dkcs_ddos_bot, written on VC++ 7.10
with admin panel on PHP (MqSQL as database server).
Command list in archive, simply inject into explorer.exe. Create an army of bots. You can manage every bot, or all bots/bots in selected country
《JavaServer Faces》
In JavaServer Faces, developers learn how to use the new JavaServer Faces framework to build real-world web applications. The book contains everything you ll need: how to construct the HTML on the front end how to Create the user interface components that connect the front end to your business objects how to write a back-end that s JSF-friendly and how to Create the deployment descriptors that tie everything together. This book is a complete guide to the crucial new JSF technology.
Abstract
The Lucene Server project is an attempt to extend the Jakarta Lucene tool with server capabilities.
Lucene is a robust Java API that enables you creating indexes from text sources and perform powerful searches on these indexes. With Lucene, creating an index must be done programmatically and there are almost no possibilities of integrating index management in a distributed environment. In other words, out of the box, Lucene is suitable for integrating indexing and searching possibilities in a single application but not for providing index/search services for multiple applications.
The Lucene Server project comes with a Java API that propose the following
make it easy to Create indexes in a declarative way by simply providing an XML configuration document.
make it easy to personalize the way Lucene must handle different kind of data sources.
provide services for index management and searching that can be accessed from several applications.
enable batch tasks scheduling.
DataBurn is an Objective-C example which demonstrates some of the features of DRTracks. The sample illustrates how to Create a DRFolder from an existing folder on the source disk and burn it to disc, creating a hybrid ISO9660/Joliet/HFS+ data CD. The sample also uses the DiscRecordingUI framework to present the standard burn setup and progress user interfaces.
圖形顯示技巧,這是其中一段代碼
procedure TForm1.Button1Click(Sender: TObject)
var
newbmp:TBitmap
i,bmpheight,bmpwidth:integer //推拉
begin
newbmp:=TBitmap.Create
newbmp.Width:=image1.Width
newbmp.Height:=image1.Height
bmpheight:=image1.Height
bmpwidth:=image1.Width
for i:=0 to bmpheight do
begin
newbmp.Canvas.CopyRect(Rect(0,bmpheight-i,bmpwidth,bmpheight),image1.Canvas,Rect(0,0,bmpwidth,i))
form1.Canvas.Draw(120,100,newbmp)
end
newbmp.free
end
Sherwood算法消除最壞實例,以達到對任何實例都能有好的性能的效果
文件:
rd_list.c --> Create a random sequence of n integers not equal to each other
list.c --> Create a descending sequence of n integers not equal to each other
sherwood.c --> 就是該算法,靜態鏈表的長度默認設為1000,可在宏定義處修改
用法:
gcc -o sherwood sherwood.c
gcc -o rd_list rd_list.c
gcc -o list list.c
./rd_list s.txt 1000 產生一個長度為1000的互不相等的隨機序列,保存在s.txt中
./list s1.txt 1000 產生一個長度為1000的互不相等的降序序列,保存雜s1.txt中
./sherwood s1.txt 運行算法,比較其中的4個算法的性能差異
Software developers need to have a number of traits in order to practice their
craft well. First, they must be good analytical thinkers and problem solvers. A
developer’s primary role is to Create software that solves business problems.
This requires analyzing customer needs and coming up with successful, creative
solutions.
This the fourth edition of the Writing Device Drivers articles. This article will introduce the idea of device stacks and how devices interact with each other. We will use the previously Created example device driver to demonstrate this topic. To do this we will introduce the idea of a “filter” driver in which we will Create to attach to our own driver’s device stack.
Developing internationalized products is a continuous balancing act. Developers and their managers often grossly underestimate the level of effort and attention to detail required to Create either a world-ready, single-binary application ready for use in many different markets, or high-quality, foreign-language editions of a product. If you are a developer, make sure your management understands what is involved.
hanks for downloading this code. This VB Project shows you how to make forms with "rounded rectangle" shape. It also shows you how you can reduce the size of your programs with a GUI by using blocks of images and absolutely positioning and stretching them to Create a dialog box, rather than making the whole dialog box in a graphics program and setting it as the Picture property of the Form. Another advantage of using image blocks is that you can resize this form to virtually any size and the effect will still be the same.