Jun's Blog

Output, activities, memo and etc.

Entries from 2016-12-01 to 1 month

もうすぐ2017年

年末のこの時期、昔なら年賀状を書いていたこの時期であるが、 その年を振り返り、来る年を思う気持ちは変わらない。 2016年は、旅行では、欧州を中心に8カ国、訪れた。 チェコがこの時期の気温がマイナスになるのに対して、 今旅行中のスペインでは、気温が…

Install Python 2.7.13 from source on Mac

Continuing from previous article. $ cd ~/hg/cpython Check latest version in v2.x. v2.7.13 is latest version for that. $ hg tags | grep 'v2\.7' Below command hg update -r something is like a git checkout something. $ hg update -r v2.7.13 31…

Download cpytyon with Mercurial

I wanted to compile python from source code, reading a document[1]. However I was failed to do it last time. [2] hg clone was failed because of the issue. It may be because of my PC’s poor memory environment. $ hg clone https://hg.python.o…

Mercurial training

I started to use Mercurial that is another source code management (SCM) tool such as Git. Nowadays there are many SCM tools, such as CVS, SVN, VSS, Git, Mercurial. CVS, SVN, and VSS is central repository management tool. Those are already …

Git Tips

I will summarize tips that I learned after reading a Git book. git describe Show the most recent tag that is reachable from a commit For example, we know a commit hash that a bug was fixed. And we can find fixed version base on the commit …

Think about the Python environment like Ruby Bundler

Want to use Python environment like Ruby Bundler! Ruby Bundler is very convenient. Below process is so common before starting development for a RugyGem package. $ git clone GIT_URL/foo.git $ cd foo $ bundle install --path vendor/bundle $ b…