Ben Chuanlong Du's Blog

It is never too late to learn.

Tools for Differencing Text Files

General Tips

  1. If 2 files are formatted differently, you can first format them and then check the differences between them. An extreme way is to get rid of all white spaces in the 2 files and then compare them.
    sed -i 's/ //g' file_1 file_2
    

Command-line Tools

git-diff

git diff …

Header Files in Linux

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

limits.sh: libc-dev

Tips on Blogging

This post contains tips for blogging @ blog.

  1. Avoid using tags ending with a number. For example, cv2 should be avoid as it causes duplicated page navigation issues (without extra configuration effort.)

Conda Build Issue

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

I encountered an issue building the package sqlalchemy-teradata. There are a few related issues: issues/2790, issues/2826. It seems that the recipe uses an outdated URL. Change the URL to …