忘记 PPPoE 拨接的帐号和密码

Wireshark解PPPoE的帐号和密码 设定好之后 打开 Wireshark 开始抓封包 重开机 Vigor 录一段封包之后 搜寻 hinet.net 或是@hinet.net,@ip.hinet.net 就可以看见密码了
【Windows】安装 Apache Web Server(含多版本PHP并存)

前言 架设php最简单的方法,大概是用xampp。但是有时候专案会用到不同php版本,需要切换。就算用xampp也是要用切换的方式,而不是并存。同一时间只能存
【C#】Creational Patterns Abstract Factory Mode

The Abstract Factory pattern provides an interface for creating families of related or dependent objects without specifying their concrete classes. 学习目标: 抽象工厂模式的概念及实务 学习
探讨 Simple Factory, Abstract Factory and Factory 的差异

刚学完三大工厂的模式,那它们之间的差异性究竟是什么呢? 学习目标: 探讨简单工厂、抽象工厂、工厂的差异性概念 学习难度: ☆☆☆ Simple Factory:工厂生
如何设计SQL 表格来提升查询非过往历史资料的效能?

个人正在写一个场地租借系统, 提前开放2週给人预约, 租借的过期纪录要保留起来作系统或规则改善研究, 可想像随营运时间, 历史资料会越来越多, 实际上
Windows 安装 PHP IMagick

根据很多网路上的教学,需要两个主要档案 php_imagick.xxx.zipImageMagick.xxx.exe 那个 exe 是 Windows 安装档。后来发现在 php 7.4及8.1,不装这个也可以。 下载 Image
【C#】Creational Patterns Builder Mode

The Builder design pattern separates the construction of a complex object from its representation so that the same construction process can create different representations. 学习目标: 创建者模式