-
LSTM-for-time-series-prediction
本代码是使用lstm进行时间序列预测,能够很清晰的说明如何使用lstm(Time series prediction using LSTM)
- 2020-07-02 03:40:01下载
- 积分:1
-
拓展rtmpdump库,支持aac、h264发布
应用背景该库我做过一定的完善开发,可以用来做视频直播的上行和下行模块,之前也应用到了视频社区中关键技术
H264
aac
rtmp
- 2023-01-15 06:40:03下载
- 积分:1
-
Dot Msn Sample
Dot Msn Sample
- 2023-02-11 02:35:03下载
- 积分:1
-
1)用户界面模块负责响应用户的键盘鼠标输入设置服务器的各个参数,显示服务器的工作状态以及错误提示,为用户提供标准的Windows界面。 2)帐户管理模块负责设置...
1)用户界面模块负责响应用户的键盘鼠标输入设置服务器的各个参数,显示服务器的工作状态以及错误提示,为用户提供标准的Windows界面。 2)帐户管理模块负责设置用户的访问权限,用户登陆后的根目录,并提供对用户透明的虚拟目录服务。同时还为别的模块提供查询文件(夹)的权限,查找本地文件是否存在等服务, 3)连接监听与FTP命令处理模块负责监听客户端的连接,并负责关闭阻塞的连接,释放每个连接占用的资源。此模块为FTP协议的核心,它具体负责FTP命令的解析与实现。 4)客户数据传输模块负责具体的与客户端的数据传输,包括文件的上传,下载,传输文件目录列表等。-1) user interface module for the user response to keyboard and mouse input settings server parameters, display server status and the error messages to users with standard Windows interface. 2) module responsible for the account management of user access rights, user landing after the root directory, and provide transparent to users of virtual directory services. Also for the other modules provide access to files (folders), the authority that you document the existence of local services, 3) connect with the FTP eavesdropping order processing module is responsible for monitoring client connectivity, and is responsible for the closure of the connecting block, the release of each link the resource. This FTP protocol
- 2022-11-07 14:35:03下载
- 积分:1
-
c# 扫描IP Http Header
c# 扫描IP Http Headerusing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Threading;using System.IO;namespace HScan{ public partial class Form1 : Form { int _currentThreads = 0; int _maxThreads = 100; Thread main = null; Thread mt = null; List threads = new List(); public Form1() { InitializeComponent(); Control.CheckForIllegalCrossThreadCalls = false; } private void btnStart_Click(object sender, EventArgs e) { btnStart.Enabled = false; if (txtStart.Text.Trim() == "") { MessageBox.Show("起始IP不能为空."); return; } if (txtEnd.Text.Trim() == "") { MessageBox.Show("结束IP不能为空."); return; } int ts = Convert.ToInt32(txtThreads.Text); _maxThreads = ts; string startIp = txtStart.Text; string endIp = txtEnd.Text; TParameter tp=new TParameter(); tp.StartIp=startIp; tp.EndIp=endIp; tp.ThreadCount=ts; main = new Thread(new ParameterizedThreadStart(StartMe)); main.Start(tp); } protected void ThreadManage() { Thread c=null; while (true) { System.Object lockThis = new System.Object(); lock (lockThis) { for (int i = 0; i < threads.Count; i ) { if (threads[i] != null && !threads[i].IsAlive) { c = threads[i]; break; } } if (c != null) { threads.Remove(c); } } } } protected void StartMe(object ob) { mt = new Thread(new ThreadStart(ThreadManage)); mt.Start(); TParameter p = ob as TParameter; string curIp = p.StartIp; while (true) { for (int i = 0; i < _maxThreads; i ) { if (curIp != "") { if (_currentThreads >= _maxThreads) break; System.Object lockThis = new System.Object(); lock (lockThis) { _currentThreads ; if (_currentThreads > _maxThreads) _currentThreads = _maxThreads; string tip = curIp; Thread t = new Thread(new ParameterizedThreadStart(Run)); t.Start(tip); threads.Add(t); curIp = IPUtility.getLastIp(curIp, p.EndIp, 1); } } else { break; } } } } protected void Run(object ob) { string ip = ob.ToString(); SocketGetHead h = new SocketGetHead(); string ret = h.GetHtml(ip, 80); if (ret.IndexOf("DVRDVS-Webs") > 0) { ListViewItem item = new ListViewItem(); item.SubItems[0].Text = (listView1.Items.Count 1).ToString(); ListViewItem.ListViewSubItem lvSubItem = new ListViewItem.ListViewSubItem(); lvSubItem.Text = ip; item.SubItems.Add(lvSubItem); lvSubItem = new ListViewItem.ListViewSubItem(); lvSubItem.Text = "DVRDVS-Webs"; item.SubItems.Add(lvSubItem); listView1.Items.Add(item); } System.Object lockThis = new System.Object(); lock(lockThis) { lblCurIp.Text = ip; _currentThreads--; if (_currentThreads < 0) _currentThreads = 0; } } private void tsmCopy_Click(object sender, EventArgs e) { if (listView1.SelectedItems.Count > 0) { string ip = listView1.SelectedItems[0].SubItems[1].Text; Clipboard.SetText(ip); } } private void tsmExport_Click(object sender, EventArgs e) { StreamWriter writer = new StreamWriter(AppDomain.CurrentDomain.BaseDirectory "\export.txt",true); foreach (ListViewItem item in listView1.Items) { string ip=item.SubItems[1].Text; writer.WriteLine(ip); writer.Flush(); } writer.Flush(); writer.Close(); MessageBox.Show("导出成功!"); } private void Form1_FormClosing(object sender, FormClosingEventArgs e) { try { if (mt != null) { mt.Interrupt(); mt.Abort(); } foreach (Thread t in threads) { t.Interrupt(); t.Abort(); } if (main != null) { main.Interrupt(); main.Abort(); } } catch { } Thread.Sleep(5000); } private void btnStop_Click(object sender, EventArgs e) { try { if (mt != null) { mt.Interrupt(); mt.Abort(); } foreach (Thread t in threads) { t.Interrupt(); t.Abort(); } if (main != null) { main.Interrupt(); main.Abort(); } } catch { } btnStart.Enabled = true; } }}
- 2014-06-23下载
- 积分:1
-
网络资源枚举VC源码,可枚举包括网格打印机域等非计算机网络资源....
网络资源枚举VC源码,可枚举包括网格打印机域等非计算机网络资源.-network resources except VC source, except to include grid printers Domain and other non-computer network resources.
- 2023-07-11 20:05:04下载
- 积分:1
-
- 2022-08-16 17:52:28下载
- 积分:1
-
数控电源,以及嗅探,看看它的源码,讨厌,我讨厌…
一个nc的源码,也是嗅探器,请看源码吧,烦,我最讨厌写文字了-a nc the source, as well as sniffer, take a look at it source, annoying, I hate to write a letter
- 2022-03-23 17:04:49下载
- 积分:1
-
介绍了如何应用visul C++ 访问access的方式,给出了相关的应用开发...
介绍了如何应用visul C++ 访问access的方式,给出了相关的应用开发- vc access
- 2023-07-09 06:05:03下载
- 积分:1
-
ssh与websocket集成完成对websocket接口数据处理及存储
ssh与websocket集成完成对websocket接口数据处理及存储
ssh与websocket集成完成对websocket接口数据处理及存储
ssh与websocket集成完成对websocket接口数据处理及存储
ssh与websocket集成完成对websocket接口数据处理及存储
ssh与websocket集成完成对websocket接口数据处理及存储
ssh与websocket集成完成对websocket接口数据处理及存储
ssh与websocket集成完成对websocket接口数据处理及存储
- 2022-03-20 07:08:42下载
- 积分:1