We have heard a lot of people talking about RESTful services. In order to explain it in the simplest way, we think it is a difficult task. This post aims…
Shortcut keys in Microsoft Word
Trong lúc soạn thảo văn bản, chúng ta thường xuyên sử dụng những tổ hợp phím tắt thực hiện một tính năng nào đó nhằm tăng độ thao tác. Bài…
Deploy a e-commerce website using open sources
Làm thế nào để triển khai một giải pháp thương mại điện tử? Bạn chọn giải pháp nguồn mở hay phát triển ngay từ đầu từ con số không. Nội…
Delete columns in numpy.array
a=array([[ 0, 1, 2, 3], [ 4, 5, 6, 7], [ 8, 9, 10, 11], [12, 13, 14, 15]]) delete(a, s_[1:3], axis=0) # remove rows 1 and 2 output: array([[…
Select column from a matrix
from operator import itemgetter nested_list = [[1, 2, 3], [10, 20, 30], [100, 200, 300]] map(itemgetter(1), nested_list) Result: [2, 20, 200] Found it here: http://www.gossamer-threads.com/lists/python/python/770606
Apache could not reliably determine the servers fully qualified domain name using 127.0.1.1 for server name error
Apache is one of commonly used web servers in Linux. At the time modifying apache, you need to restart it for updating the modifications without restarting Linux. Sometimes, we may face with…
Should we accept carelessly other applications connecting to your facebook?
Thấy BS Hồ Hải khuyến cáo việc có người gởi message để xem video nói xấu về bác ấy nhưng yêu cầu click vào một link khác mới có thể…
Highlight text in LaTeX
Purpose: Use the LaTeX soul package to highlight text in a LaTeX document. Suppose you want to provide a highlight color or background color for text in a LaTeX document.…
Automatic, clever references with cleveref
(Tiếng Việt) Tính năng này rất quan trọng vì: trong khi tạo các tham chiếu đến Table, Figure, Equation… bạn không nhớ đã ghi Table hay table hay TABLE etc. Và đó là lí do chúng ta muốn tự động hóa việc thêm các prefix phù hợp cho các đối tượng tham chiếu.
