Make your YouTube videos loop and autoplay

Update on 15 Jun 2022: There is another way to loop videos using YouTube Music. How do you make your interested YouTube videos or playlists autoplay and loop forever? By…

How to install the latest Skype on Linux Mint

Skype is a Microsoft Software for calling, seeing, messaging and sharing with others. Open a Shell Terminal emulator window Run the following command: sudo su -c “apt-get install skype”

How to create clickable SVG

This page gives us basic steps to create a scalable vector graphics (SVG) that could add hyperlinks, popup, tooltips, or some effects (so-called clickable image). We can use the power…

What’s New in JDK 8

Java Platform, Standard Edition 8 is a major feature release. This document summarizes features and enhancements in Java SE 8 and in JDK 8, Oracle’s implementation of Java SE 8.…

Radiation, microwaves and cancer

  http://www.cancer.org/cancer/cancercauses/radiationexposureandcancer/radiofrequency-radiation http://www.cancerresearchuk.org/about-cancer/cancers-in-general/cancer-questions/radiation-microwaves-and-cancer https://www.osha.gov/SLTC/radiofrequencyradiation/healtheffects.html The Dangers of Microwave Radiation Cannot be Ignored http://www.betterhealth.vic.gov.au/bhcv2/bhcpdf.nsf/ByPDF/Microwave_ovens_safety_issues/$File/Microwave_ovens_safety_issues.pdf http://www.uen.org/cte/family/functional_foods/downloads/microwave/advantage.pdf

Is this world small?

Sorry, this entry is only available in Tiếng Việt.

What exactly is RESTful programming?

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([[…