Posts

Software, Travel Enthusiast

Chuyển tiền về Việt Nam

Remitly Hôm qua mình thử chuyển tiền qua REMITLY, trước đó mình đã chuyển rất nhiều lần qua Transferwise rồi, nhưng hôm qua mình thực sự bất ngờ trước tỉ giá của REMITLY. Nó có nhiều điểm lợi hơn Transferwise là : Không cần phải scan hay photo identite ( hộ chiếu, CMT…) Miễn phí hoàn toàn lần chuyển đầu tiên chứ k phải miễn phí chỉ 500 € như Transferwise.

Notre Nouveau Soleil

Notre premiere date speciale Le premier mai 2020, we saved the date. Guide Ma Maternité par CPAM Le guide « ma maternité » qui vous donne des renseignements administratifs et des conseils en santé est disponible. This browser does not support PDFs. Please download the PDF to view it: Download PDF.

Essential Softwares

This features a non-exhaustive list of my Essential Softwares for PC. Common Coding Visual Studio Code: general-purpose IDE for Linux, Windows and MacOS: 1 choco install -y vscode Languages Learning BBC Learning English: beautiful English tutorials at beginner and intermediate level available for Web, iOS, Android. Dictionaries Lingoes: a dictionary reader available for Windows only. GoldenDict: another dictionary reader available for Windows, Linux or MacOS. It provide a manually configured dark theme by ilius (remember to download the zipped gist to get both CSS files).

Static Web Engines

For personal blogs Hugo Jekyll For documentations Docusaurus: open-sourced, good support by Facebook, good UI for navigation Readthedocs: ideal for books, like this Python book Gitbook: appropriate for team documentations Bookstack: idem, open-sourced and self-hosting Docsify: lightweight team documentation Sphinx: API docs with simplified themes, i.e. Alabaster For APIs Swagger [Doxygen]: for example, DBus [Redoc]: for example, Docker Postman

Shell Cheat Sheets

References Bash reference manual Cheat sheet Google style convention Bourne shell Bourne shell is sensitive to round brackets (). For example: 1 2 3 4 5 6 7 8 9 # /bin/sh (echo "1.2.3" | grep -Eq ^[0-9]+\.[0-9]+\.[0-9]+$ && VAL=0) || VAL=1; echo $VAL; # '' echo "1.2.3" | grep -Eq ^[0-9]+\.[0-9]+\.[0-9]+$ && VAL=0 || VAL=1; echo $VAL; # 0 # /bin/bash (echo "1.2.3" | grep -Eq ^[0-9]+\.