ihipop

Results 33 issues of ihipop

I have a lot of items in my `~/.ssh/config` file Very hard to getting it start May be a `ssh_config` parser lib would help to have ability to convert `ssh_config`...

二维码结构简单,且就黑白2色 完全可以转换成纯ascii显示 终端可以直接扫描 建议1. img2txt.py https://github.com/hit9/img2txt 此方式完全使用python的方式 是最方便的 img2txt.py --ansi xxxx.png 缺陷:代码实现尺寸限制的地方有bug,出来的二维码很大,但是质量很好 建议2. img2text 依赖caca-utils https://linux.die.net/man/1/img2txt ![image](https://cloud.githubusercontent.com/assets/423077/23059404/44699d3e-f534-11e6-8d74-84df18840bc0.png)

Which make it make it possible to write a DMR

feature
contrib

### Please make sure of the following things - [X] I have read the [documentation](https://alist-doc.nn.ci). - [X] I'm sure there are no duplicate issues or discussions. - [X] I'm sure...

enhancement

## 问题类型 Feature Request ## 功能请求 现在图床就是上传源,如果我有多个OSS或者多个图床帐号,就没法单独选择上传到某个图床,只能来回编辑设置 建议是 上传源 新建的时候选择某个类型的图床,比如可以新建N个上传源,底层图床都是OSS但是不同的bucket和帐号,这样更灵活一些。

enhancement
feature request

**Describe the bug** 悬停提示无法正确展示,只能出现文档链接 **To Reproduce** 见GIF录屏 **Expected behavior** 正确展示悬停提示 **Screenshots** ![截图录屏_选择区域_20200612112016](https://user-images.githubusercontent.com/423077/84610734-40c01100-aeee-11ea-8cb0-5c22d9e4611b.gif) **Desktop (please complete the following information):** - OS: `Linux 5.3.0-3-amd64 #1 SMP deepin 5.3.15-6apricot (2020-04-13) x86_64 GNU/Linux` -...

bug

* Your issue is based on the latest commit YES * State your OS and OS version Linux [crash sample.pdf](https://github.com/pdfcpu/pdfcpu/files/8727937/crash.sample.pdf) ``` pdfcpu validate /tmp/crash\ sample.pdf validating(mode=relaxed) /tmp/crash sample.pdf ... validation...

investigate

* Your issue is based on the latest commit YES * State your OS and OS version Linux https://github.com/pdfcpu/pdfcpu/blob/11d755a41bcb605c55e2727ab7608a93cb889224/pkg/pdfcpu/configuration.go#L170-L171 I can only find 3 permission listed here https://github.com/pdfcpu/pdfcpu/blob/11d755a41bcb605c55e2727ab7608a93cb889224/pkg/pdfcpu/configuration.go#L46-L52 But there...

question

PSR的RequestInterface没有规定实现exec方法,所以我设计组装一个http客户端无关的request的时候,**我肯定不能绑定和客户端强相关的exec方法到Request上**,因为每个客户端的异常类型、处理逻辑都不相同。 我设计一个composer组件,在组装请求部分,返回了个psr对象,本意是guzzle或者saber**等支持PSR标准的HTTP客户端**都可以按psr标准把这个对象代表的请求发送出去,现在Guzzle可以做到(`$guzzleClient->send($PSRrequest)`)而saber因为把PSR相关的处理逻辑绑定到他自定义的Request上,导致这样的设计没法实施。

enhancement
good first issue

Web socket Demo https://html5demos.com/web-socket/ ```php \Swoole\Runtime::enableCoroutine(true); go(function(){ $websocket = \Swlib\SaberGM::websocket('wss://remy-ws.glitch.me:443'); while (true) { echo $websocket->recv(-1) . "\n"; $websocket->push("hello"); co::sleep(1); } }); ``` ``` $ php src/client2.php PHP Warning: Swoole\Coroutine\Http\Client::recv(): you...