2020年1月25日

Windows函数转发器

摘要: 最近MSYS2升级后出现了一个bug,libxml264-157.dll被升级成了libxml264-159.dll,但是ffplay还依赖libxml264-157.dll,本来打算直接复制一个libxml264-159.dll重命名为libxml264-157.dll,但是发现libxml264 阅读全文

posted @ 2020-01-25 23:24 JebediahKerman 阅读(510) 评论(0) 推荐(0)

2020年1月14日

Two Ways in Delphi to Get IP Address on Android

摘要: 1. Via NDK Refer Delphi Call getifaddrs and freeifaddrs on Android uses Posix.Ifaddrs, Posix.SysSocket, Posix.ArpaInet, Posix.NetinetIn; var FPifaddrs 阅读全文

posted @ 2020-01-14 14:51 JebediahKerman 阅读(487) 评论(0) 推荐(0)

2020年1月13日

Delphi Call getifaddrs and freeifaddrs on Android

摘要: Require Android API level >= 24 Posix.Ifaddrs.pas unit Posix.Ifaddrs; interface uses Posix.SysSocket; type Pifaddrs = ^Ifaddrs; Ifaddrs = record ifa_n 阅读全文

posted @ 2020-01-13 21:36 JebediahKerman 阅读(332) 评论(0) 推荐(0)

2019年12月15日

MacPorts镜像

摘要: /opt/local/etc/macports/macports.conf: rsync_server pek.cn.rsync.macports.org rsync_dir macports/release/tarballs/base.tar /opt/local/etc/macports/sou 阅读全文

posted @ 2019-12-15 18:10 JebediahKerman 阅读(362) 评论(0) 推荐(0)

2019年8月26日

MessageWebSocket

摘要: using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Windows; using Windows.Networking; using Windows.Networking.Sockets; using Windows.Storage; using 阅读全文

posted @ 2019-08-26 20:48 JebediahKerman 阅读(709) 评论(0) 推荐(0)

2019年5月24日

为Windows编译libobjc2(通过交叉编译的方式)

摘要: 前提:Linux系统、git、clang-8、g++-mingw-w64-x86-64、gobjc++-mingw-w64-x86-64。 一、下载源代码 二、配置环境变量 三、编译libobjc2 四、测试(在Widnows进行) 阅读全文

posted @ 2019-05-24 20:35 JebediahKerman 阅读(327) 评论(0) 推荐(0)

2019年5月17日

使用Desktop App Converter打包桌面应用程序

摘要: 备注 桌面应用转换器工具已弃用。 建议改用.Msix 打包工具。 打包具有安装程序 (.msi) 的应用程序 DesktopAppConverter.exe -Installer C:\Installer\MyAppSetup.msi -Destination C:\Output\MyApp -Pa 阅读全文

posted @ 2019-05-17 17:57 JebediahKerman 阅读(365) 评论(0) 推荐(0)

2019年5月9日

Rust Linking With C Library Functions

摘要: #[link(name = "c")] extern "C" { fn scanf(format: *const u8, ...); } fn main() { let mut a = 0; let mut b = 0; unsafe { scanf("%d%d\0".as_ptr(), &mut a, &mut b); } pr... 阅读全文

posted @ 2019-05-09 14:25 JebediahKerman 阅读(200) 评论(0) 推荐(0)

2019年4月29日

Speech Synthesis

摘要: Synthesizer ... 阅读全文

posted @ 2019-04-29 21:57 JebediahKerman 阅读(294) 评论(0) 推荐(0)

2019年4月2日

A Tool To Plot Mathematical Function

摘要: Plot.cs 阅读全文

posted @ 2019-04-02 18:50 JebediahKerman 阅读(202) 评论(0) 推荐(0)

导航