Ciro Santilli (三西猴) OurBigBook.com sponsor me: cirosantilli.com/sponsor, opinions my own 2020冠状病毒审查 ,2020郝海东 ,2018新疆改造中心,1989六四事件,1999法轮功 ,2019 996.ICU, 2018包子露宪,2015 709大抓捕,2015巴拿马文件 邓家贵,2017低端人口,2008西藏骚乱<script>alert(1)</script>

Results 388 issues of Ciro Santilli (三西猴) OurBigBook.com sponsor me: cirosantilli.com/sponsor, opinions my own 2020冠状病毒审查 ,2020郝海东 ,2018新疆改造中心,1989六四事件,1999法轮功 ,2019 996.ICU, 2018包子露宪,2015 709大抓捕,2015巴拿马文件 邓家贵,2017低端人口,2008西藏骚乱<script>alert(1)</script>

Commands like `-c b 12' work, but `-c c` seems to do nothing: python3 -m ipdb -c c ~/test/a.py Tested on master c69a3d712b275a4d15f6319598732cd278643e09 Works with raw pdb however: pdb3 -c...

I run a program as: ``` myprog.py args ``` because `myprog.py` is in my `PATH`. Then it would be convenient to be able to do just: ``` ipdb myprog.py args...

From https://stackoverflow.com/questions/6240887/how-can-i-make-ipdb-show-more-lines-of-context-while-debugging/35883288#35883288 I learned about: ``` ipdb.set_trace(context=21) ``` But how to do that when running `ipdb` from the command line as in: ``` ipdb ./myprog.py ``` ?

### Steps to reproduce I'm not 100% sure if this is a bug or if I'm misusing something, but here goes. This is a port of the chat app to...

Callback typedefs are not being put in the documentation. E.g.: https://libgit2.github.com/libgit2/#HEAD/group/diff/git_diff_blob_to_buffer uses `git_diff_file_cb`, which it defined and documented publicly at: https://github.com/libgit2/libgit2/blob/master/include/git2/diff.h#L416. It would be really helpful to have links to...

This commit allows running for example just: npm test -- -g 'authentication' instead of the previously needed: npm test -- -- -- -g 'authentication' since each npm run consumes one...

feathers-chat fd729a47c57f9e6170cc1fa23cee0c84a004feb5 Ubuntu 20.10 Node 14.60.0 Chromium 89.0.4389.90 clone then: ``` npm install npm start ``` visit http://localhost:3030/ enter: - email: `a@a` - password `a` and click "Sign up and...

I want to write something along: ``` shell compile gcc %basename% -o %basename_no_extension%.out map compile ``` Then: - `keymap` can be only advisory: if the map is already present on...

feature request

Salut Mathieu, I've been looking for such capability for a while, and this project seems really close. I summarized my findings so far: https://stackoverflow.com/questions/9561546/thread-aware-gdb-for-the-linux-kernel/51515470#51515470 My main question is: is that...

Reproduction: ``` const fs = require('fs') const readCb = require('read') async function read(opts) { return new Promise((resolve, reject) => { readCb(opts, (err, line) => { resolve([err, line]) }) }) }...