自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(2)
  • 资源 (25)
  • 收藏
  • 关注

原创 使用RustDesk替换FRP建立RDP连接

首先参考可自建中继服务器的远程桌面软件: RustDesk设置服务器以及客户端,请注意被控端和主控端都需要设置相同ID服务器地址,不然就会连接到公用服务器上。设置完毕后,在客户端输入被控端ID,点击连接,等待连接建立并验证登录后,请关闭连接,界面上的Recent Sessions区域会出现你刚刚连接的被控端,点击其右下角菜单(如下图所示),然后选择RDP,就可以进行RDP连接了。以上方法只适用于两端都是windows,如果不是,你可以自行设置RustDesk的TCP Tunneling实现,RD

2020-11-07 02:58:41 9108

原创 可自建中继服务器的远程桌面软件: RustDesk

又一个远程桌面软件,特色就是你可以完全控制它。与 TeamViewer 和 AnyDesk 不同,不仅提供客户端桌面软件程序,还提供服务器端程序,以便您可以设置自己的云服务器和中继。个人使用和商业都是免费的,没有任何限制。rustdesk.comwww.v2ex.com/t/712086主要特性:自定义画面质量 加密直连,先尝试打洞直连,不行再由服务器转发 内置文件传输和TCP隧道功能 支持自建中继服务器如何自建中继1: 下载服务器端软件程序在下面的链接下.

2020-10-09 09:45:59 18705 2

vector magic 1.18 for mac (app版本)

最强位图转矢量软件, 解压文件, 运行SP_1.x.app, 点"close"关闭弹窗, 然后把Vector Magic.app文件拖到刚才程序中的放大镜图标上即可

2016-09-09

vector magic 1.18 for mac

dmg文件,点击安装即可

2016-09-09

rails金典教材3本

Ruby+on+Rails+3+Tutorial.pdf 应用Rails进行敏捷Web开发第4版.pdf (Agile Web Development with Rails) Rails.Recipes.Rails.3.Edition.pdf

2012-07-28

Araxis Merge v6.5(含破解补丁)

Araxis Merge v6.5(含破解补丁),Araxis merge是windows下最优秀的merge软件

2012-07-28

SPSS19 破解补丁

windows下SPSS19破解补丁,适用于SPSS_Statistics_19_win32_en

2012-07-28

jar文件关联修复

修复jar文件windows下关联问题。安装压缩软件容易导致jar文件打开方式被修改,运行此程序,可以恢复jar文件默认java运行。

2012-07-28

Programming.in.Scala 2nd.Edition

Programming.in.Scala 2nd.Edition PDF

2011-11-12

Sas 9.2 认证文件(到2011.9.30)

Sas 9.2 认证文件 到2011.9.30

2011-06-14

大规模C++程序设计

大规模C++程序设计 large-Scale C++ Software Design 本书是专为有经验的C++软件的开发者、系统设计师、软件质量保证人员编写的。适合从事大型软件开发工作(如数据库、操作系统、编译程序和框架)的人员阅读。 本书将高层设计概念与特定的C++编程细节结合起来,满足下面两个要求: 1、一本面向对象设计的书,尤其侧重于C++编程语言实现方面。 2、一本c++程序设计的书,描述如何使用C++编程语言来开发非常大型的系统。

2009-12-31

Perl6 and Parrot Essentials Second Edition

Perl6 and Parrot Essentials Second Edition

2009-06-19

TopCoder UML 建模软件 version1.2.4

实现了class diagram, sequence diagram,user case diagram, activity diagram,可以生成java,c#源码

2009-06-17

UML.2.0.in.a.Nutshell(UML入门).chm

Topics include: The role and value of UML in projects The object-oriented paradigm and its relation to the UML An integrated approach to UML diagrams Class and Object, Use Case, Sequence, Collaboration, Statechart, Activity, Component, and Deployment Diagrams Extension Mechanisms The Object Constraint Language (OCL)

2008-12-05

最短路径算法及应用.pdf

最短路径算法及应用 一、 单源最短路径问题 二、每对结点间的最短路径 三、应用举例

2008-12-04

C语言编程实践英文版.pdf Practical C Programming 3rd Edition

C语言编程实践英文版 Practical C Programming 3rd Edition Practical C++ Programming的姊妹篇

2008-12-04

C++编程实践英文版.pdf Practical C++ Programming

C++编程实践英文版 Practical C++ Programming This book is devoted to practical C++ programming. It teaches you not only the mechanics of the language, but also style and debugging. The entire life cycle of a program is discussed, including conception, design, writing, debugging, release, documentation, maintenance, and revision. Style is emphasized. Creating a good program involves more than just typing code. It is an art in which writing and programming skills blend to form a masterpiece. A well-written program not only functions correctly, but also is simple and easy to understand. Comments allow programmers to include descriptive text in their programs. Clearly written, well-commented programs are highly prized. A program should be as simple as possible. Avoid the use of clever tricks. Cleverness and complexity can kill programs. This book stresses simple, practical rules. For example, the 15 operator-precedence rules in C++ can be simplified to 2: 1. Multiply and divide before you add and subtract. 2. Put parentheses around everything else. Consider two programs. One was written by a clever programmer, using all the tricks. The program contains no comments, but it works. The other is nicely commented and well structured, but doesn't work. Which program is more useful? In the long run, the ''broken" one is more useful because it can be fixed and maintained easily. Although the clever one works now, sooner or later it will have to be modified. The hardest work you will ever have to do is modifying a cleverly written program.

2008-12-04

硝烟中的Scrum和XP.pdf ——我们如何实施Scrum from infoq

Scrum和极限编程(XP)都要求团队在每一次迭代的结尾完成一些可以交付的工作片段。迭代要短,有时间限制。将注意力集中于在短时间内交付可工作的代码,这就意味着Scrum和XP团队没有时间进行理论研究。他们不会花时间用建模工具来画UML图、编写完美的需求文档,也不会为了应对在可预计的未来中所有可能发生的变化而去写代码。实际上,Scrum和XP都关注如何把事情做好。这些团队承认在开发过程中会犯错,但是他们明白:要投入实践中,动手去构建产品,这才是找出错误的最好方式;不要只是停留在理论层次上对软件进行分析和设计。

2008-12-04

c++标准库参考手册.chm(中文) chm文件

包括全部的c++, c标准函数,chm文件格式

2008-12-04

20种常见设计模式的C++实现

20种常见设计模式的C++实现-----

2008-12-04

常见设计模式的解析和实现.pdf

常见设计模式的解析和实现(C++描述)------

2008-12-04

Rational ClearCase LT 使用指南.pdf

实例化介绍Rational ClearCase LT的使用,备有图解

2008-12-04

如何使用purify调试程序.pdf

IBM Rational Purify 的高级特性: 利用 Purify 进行 程序调试

2008-12-04

简明perl教材.pdf(附函数集)

目录 第一章 Perl 概述 第二章 简单变量 第三章 操作符 第四章 列表和数组变量 第五章 文件读写 第六章 模式匹配 第七章 控制结构 第八章 子程序 第九章 关联数组/哈希表 第十章 格式化输出 第十一章 文件系统 第十二章 Perl5 中的引用/指针 第十三章 Perl 的面向对象编程 第十四章 Perl5 的包和模块 附录一 函数集

2008-12-04

IBM yacc/flex中文教材.pdf

全面介绍yacc/flex的使用及原理,很实用

2008-12-03

vim简明教材.pdf

这是台湾人写的一个vim教材,很简明,是不错的入门教材

2008-12-03

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除