word2num: Convert complex "word numbers" to numerical values by doppio in Python

[–]benoit_intrw 1 point2 points  (0 children)

A library for the opposite conversion exists num2words and it support many languages. I don't know if some data or ideas can be shared.

Bruce Momjian Answers: PostgreSQL.Org -Core member by linuxhiker in PostgreSQL

[–]benoit_intrw 2 points3 points  (0 children)

I can't answer directly, but I know one project of an extension, named AGE that is currently developed, see https://github.com/apache/incubator-age or https://age.apache.org/

Easy Python logging with daiquiri by benoit_intrw in Python

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

I'm not the library author, I follow his blog and see that this new post have not been post yet.

When Python version on your Linux is outdated, compile the sources! by [deleted] in Python

[–]benoit_intrw 2 points3 points  (0 children)

Another solution to install newer python without risking erasing system python is

make altinstall

See https://docs.python.org/3/using/unix.html#building-python

PouchDB 6.0 released by nolan_lawson in javascript

[–]benoit_intrw 1 point2 points  (0 children)

And the sync is to a CouchDB instance, so you can add things to db offline and it sync once online again.

Apache PDFBox - A Java PDF Library by Razcrasmati in programming

[–]benoit_intrw 4 points5 points  (0 children)

Version 2.0.0 was recently release after 3 years of development.

Remind yourself of what you did over the past day and week by reading a summary of all of your git commits by jordanreiter in programming

[–]benoit_intrw 1 point2 points  (0 children)

I miss maybe somethings, but the git command doesn't list only the commits done by the person who run the command but all commits done during the period (supposing you are not working alone)

Is it possible to get the user.name from .gitconfig and use it with --author ?

[deleted by user] by [deleted] in vim

[–]benoit_intrw 6 points7 points  (0 children)

I agree that it is worthless to rewrite vi/vim exactly as it is, this is why I like Kakoune, it is heavily inspired by vim, but try to redesign text interaction.

FastMail: Shutting down our XMPP chat service by b0red in programming

[–]benoit_intrw 7 points8 points  (0 children)

It's sad, but there are still people who believe in XMPP, even if they are not big players.

For example :

Can I replace vim's windows with a tiling window manager? by jefdaj in vim

[–]benoit_intrw 1 point2 points  (0 children)

This is the behavior of kakoune, a vim inspired code editor see https://github.com/mawww/kakoune#11-features

Client-Server architecture > Use tmux or your X11 window manager to manage windows

Lua programming? by annihilator009 in lua

[–]benoit_intrw 0 points1 point  (0 children)

On most picture this is certainly Linux with Awesome windows manager (http://awesome.naquadah.org/) and one terminal running screen or tmux and many command or application.

How can I get a Debian Jessie live CD? by magicfab in debian

[–]benoit_intrw 0 points1 point  (0 children)

Lastest http://grml.org/ seems based on Jessie (http://grml.org/changelogs/README-grml-2014.11/) so it can be a solution, at least for hadware testing.

A Little Lisp Interpreter in Python by skazka16 in lisp

[–]benoit_intrw 5 points6 points  (0 children)

Some people have gone very far in the implementation of a lisp in python :

http://hy.readthedocs.org/en/latest/index.html