RexWang
RexWang
# 样式计划 (Chinese Version) _Images are just arrays._ 背景知识: - 线性代数及矩阵运算 难度分类(图片见下一条[评论](https://github.com/JuliaImages/QRCoders.jl/issues/33#issuecomment-1321183287)) 1. 难度 1 在二维码中心添加 LOGO 2. 难度 2 渐变色的二维码 3. 难度 3 网站 [QRBTF](https://qrbtf.com/) 的部分样式,比如点阵图,背景图+点阵图 4. 难度 5...
An idea from [discourse](https://discourse.julialang.org/t/ann-qrcode-jl-create-qr-code-within-julia/26923/3?u=rex_wang): Handle `svg` files by Luxor.jl. ```julia using Luxor filepath = "qrcode.svg" qrc = qrcode("https:/www.julialang.org") @svg begin tiles = Tiler(250, 250, size(qrc)..., margin=0) squares = first.(tiles) for...
Part of the plan follows the discussion here: https://discourse.julialang.org/t/ann-qrcode-jl-create-qr-code-within-julia/26923/ - [ ] #47 - [ ] #33 - [x] ~#38~ - [ ] Interact with other tools, for example, [zbar](https://github.com/ZBar/ZBar),...
### 这个bug是否已存在现有issue了? - [X] 我确认没有已有issue,且已阅读**常见问题**。 ### 错误表现 设置 API host 后,不能正常生成内容,报错如下 ```bash 获取API使用情况失败:HTTPSConnectionPool(host='http', port=443): Max retries exceeded with url: ///v1/chat/completions/dashboard/billing/credit_grants (Caused by NewConnectionError(': Failed to establish a new connection: [Errno...
聊天记录的导出和导入只是读取和覆盖浏览器的缓存文件,这里导入能不能改成合并,或者提供这个选项。 实现上,可以把 json 文件完全相同的对话去掉再合并,或者按 chatid合并。楼主有考虑增加这个功能吗?
这个问题出现挺久了,搜了 Issue 发现还没人提过: 导出图片的代码块最后一行显示不全:  测试了 Mac 端和 IPad 端的 Chrome,Safari,都有这个问题。
The executable `zbarimg` doesn't seem to support UTF8 mode. For example, the text "你好" is decoded to be "ä½ å¥½". >  Also, the `--xml` option has the possibility of...
Thanks for developing this module, it is truly a great resource. I have used it into my own module and while debugging, I came across a few issues that I...
By `save("xxx.gif", bitmat)`, one should get a white picture, however, the output is black. ```julia using FileIO save("one.gif", ones(Bool, 200, 200)) # get a black image load("one.gif") |> iszero #...
复现过程: ```bash # 添加节点,并设置序号为 0 shadowsocksr-cli --add-ssr ssr://xxxx # 测试节点 shadowsocksr-cli --test-again 0 # 允许所有 IP 访问 shadowsocksr-cli --setting-address 0.0.0.0 # 用默认端口启动 socks5 shadowsocksr-cli -s 0 # 启动 http shadowsocksr-cli...