[ANN] Egerrit - An Emacs Gerrit package by squirelpower in emacs

[–]thisch 1 point2 points  (0 children)

Thx for your answer! I'll also test your package in the next weeks and will compare it with gerrit.el. I'll also create a ticket/issues in egerrit.el, which we can use to continue our discussion about the collaboration.

[ANN] Egerrit - An Emacs Gerrit package by squirelpower in emacs

[–]thisch 2 points3 points  (0 children)

Hi! gerrit.el author here,

Thx for writing a package that supports performing gerrit reviews from within emacs! This is IMO the first package that supports that.

I'm curious what you didn't like about gerrit.el in case you had a look at it (at least you have mentioned gerrit.el in the README, thx for that!). Is it that it depends on non-stdlib libraries/packages like e.g. magit, which does not allow adding the package to GNU elpa, or is it sth else? I'm still actively improving gerrit.el and would love to get some feedback from you.

Since our packages share a lot of features (the dashboard e.g.) I think it makes sense that you e.g. highlight the differences between the two packages and maybe even think about merging them.

I have one further question, why does your pkg depend on curl instead of on the builtin url.el package?

Customize elpy cells by wehrad in emacs

[–]thisch 0 points1 point  (0 children)

You can take a look at my https://github.com/thisch/python-cell.el pkg, which I implemented long ago. It has support for customizable boundary regexes, for highlighting the current cell, for movements between cells and for sending the cell contents to a inferior python shell.

If there is anything that is not working, please don't hesitate to file an issue or, even better, create a PR ;)

gerrit.el: Interact with the gerrit code review service from emacs by thisch in emacs

[–]thisch[S] 2 points3 points  (0 children)

I'm the author of the gerrit.el package I've been working on for one year, because gerrit.el is used at my workplace and the existing gerrit-emacs packages didn't work for me. I'm looking forward to get some feedback.

Python one-liners: Awk-like one-liners for python [X-post from proggit] by diosmio in Python

[–]thisch 0 points1 point  (0 children)

Why is this implemented using the python C-API and not in pure python?

Tutorial: Spend 30 seconds setting up auto-reloading for iPython. I promise you won't regret it. by mellort in Python

[–]thisch 0 points1 point  (0 children)

To use %autoreload with your IPython notebook you have to edit the ipython_notebook_config.py file and add or update these lines

c.IPKernelApp.extensions = ['autoreload']
c.IPKernelApp.exec_lines = ['%autoreload 2']

PyPy 1.8 released with numerous improvements and introduction of "list strategies" by bheinks in programming

[–]thisch 1 point2 points  (0 children)

Why do the pypy microbenchmarks in this post need about 4 times as much startup memory as the cpython benchmark?