Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

C# 23种常见的设计模式

2023-07-06

  设计模式通常分为三个主要类别: 创建型模式 结构型模式 行为型模式。 这些模式是用于解决常见的对象导向设计问题的最佳实践。 以下是2...



Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

WinRAR- 压缩软件的注册算法

2019-07-05

  软件名称:WinRAR WinRAR-压缩软件使用了基于ECC的签名算法来生成 rarreg.key 文件,其使用的签名算法是中国SM2数字签名算法的变...

WinRAR- 压缩软件的注册算法已关闭评论
6,081 热度


Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

免越狱虚拟定位外挂的调试小记与检测方案

2018-11-06

前言 因为工作关系最近需要分析一款windows上的虚拟定位外挂给出一个检测方案,有趣之处在于这款外挂它既不需要苹果设备越狱又不需要安装APP就可以欺骗iOS AP...

免越狱虚拟定位外挂的调试小记与检测方案已关闭评论
8,719 热度


Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

C#WebBrowser控件使用教程与技巧收集

2018-03-01

常用属性和方法 Navigate(string urlString):浏览urlString表示的网址 Navigate(System.Uri url):浏览url表示的网址 Navigate(string urlString, strin...

C#WebBrowser控件使用教程与技巧收集已关闭评论
4,434 热度


Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

Nginx反向代理WebSocket响应403的解决办法

2017-12-29

在Nginx反向代理一个带有WebSocket功能的Spring Web程序(源代码地址)时,发现访问WebSocket接口时总是出现403响应,Nginx的配置参考的是官方文档: http { ...

Nginx反向代理WebSocket响应403的解决办法已关闭评论
7,230 热度


Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

大话程序猿眼里的高并发

2017-12-29

高并发是指在同一个时间点,有很多用户同时的访问URL地址,比如:淘宝的双11,双12,就会产生高并发,如贴吧的爆吧,就是恶意的高并发请求,也就是DDOS攻击,...

大话程序猿眼里的高并发已关闭评论
4,006 热度


Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

从零开始教你训练神经网络(附公式&学习资源)

2017-12-26

从神经网络简单的数学定义开始,沿着损失函数、激活函数和反向传播等方法进一步描述基本的优化算法。在理解这些基础后,本文详细描述了动量法等当前十分流行...

从零开始教你训练神经网络(附公式&学习资源)已关闭评论
3,929 热度


Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

21条CSS高级技巧

2017-11-16

CSS高级技巧: 21个有用的CSS小技巧,来帮你把CSS技能提高到高级水平 [Github上有8000多个star]。包括Flexbox、REM、:not()选择器、负的nth-child等。 使用CSS...

21条CSS高级技巧已关闭评论
3,283 热度


Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

如何保护网页按钮不被XSS自动点击

2017-07-05

前言 XSS 自动点按钮有什么危害? 在社交网络里,很多操作都是通过点击按钮发起的,例如发表留言。假如留言系统有 XSS 漏洞,用户中招后 XSS 除了攻击之外,...