XinJun Ma
XinJun Ma
Implement all Primitive Operations in Firrtl [spec](https://github.com/freechipsproject/firrtl/blob/master/spec/spec.pdf) Then we can parse firrtl, dynamically build the circuit by components, then we can simulate the firrtl circuit. How do you think it?
能否作为代理模式
场景: 一般路由器都支持常见的ddns 协议,如 DynDNS、花生壳。但域名在阿里云、dnspod等,路由器不支持这些域名服务商。 能否让 godns 运行为代理模式,不需要自己定时查询公网IP是否变化,而是在路由器上配置ddns(如通过 dyndns、no-ip 等协议),这样当公网IP发生变化时,主动请求 godns,godns再推送给阿里云等域名服务商,即通过路由器主动推送代替自己定时查询,从而实现让路由器自带的 ddns 功能能够使用阿里云等域名服务商,这样能够实现即时响应IP变化。 比如我的路由器 ddns 功能截图: 
In the repository——property menu Currently we can only set one remote address at the same time, but I think it is reasonable to allow fetch and push addresses to be...
I want to learn how to use this library, are there any sample Intellij plugins(still being maintained)?
目前Wiki插件的前台 https://github.com/homeland-plugins/wiki/blob/master/app/controllers/homeland/wiki/pages_controller.rb ``` require_module_enabled! :wiki ``` 酷站插件的后台 https://github.com/homeland-plugins/site/blob/master/app/controllers/homeland/site/admin/sites_controller.rb ``` require_module_enabled! :site ``` 这两个插件都需要相应的模块开启才能用,现在的配置说明是 > 启用模块,默认 all 全部开启,可选:[topic,home,team,github,editor.code] 如果 modules 的配置不是 `all`(例如打算关掉home模块),这两个插件没法使用,需要手动开启这两个模块 ``` topic,team,github,editor.code,wiki,site ```
适合多host使用场景,同步配置
https://github.com/dtlslink/vpnagent 工作原理类似 AnyConnect 的 vpnagentd,尚未实现命令行,目前通过 JSON-RPC 暴露接口,可以使用任何前端框架如 Qt、Flutter、Electron等造界面。 相比 openconnect 的 c 实现,易于学习、理解和维护。 目前路由操作仅在Linux下用 IP 命令实现,可以在Linux下测试整个VPN建立过程。 Windows 下 tun 设备使用可参考 https://github.com/dtlslink/water 集成 wireguard 的 wintun。 不管是什么操作系统,使用命令操作路由表本人感觉不够优雅,目前懒得折腾,打算研究的话,可以使用命令或者 openconnect 的 vpnc-script (同样不优雅)...
Qt 6.4 was [released](https://www.qt.io/blog/qt-6.4-released) today, adding 3 new modules https://doc-snapshots.qt.io/qt6-dev/whatsnew64.html
The GCDSpec test class comment document: ``` /** * This is a trivial example of how to run this Specification * From within sbt use: * {{{ * testOnly gcd.GcdDecoupledTester...