Posts

Showing posts from 2020

Tài liệu về Agile Scrum

  1 - Các tài liệu về Agile Scrum A pretty good summary of Lean, Agile, Scrum https://medium.com/@takeshi.yoshida/a-pretty-good-summary-of-lean-agile-scrum-168cf123748  (Bảng tiếng Anh) https://viblo.asia/p/mot-ban-tom-tat-kha-hay-ve-lean-agile-scrum-V3m5W4AbKO7  (Bảng dịch) Từ Android source code đến binary-code. Nguyên nhân iOS nhanh hơn Android https://viblo.asia/p/tu-android-source-code-den-binary-code-nguyen-nhan-ios-nhanh-hon-android-1VgZvPN15Aw

How to create a bootable installer for macOS

Image
1. Download macOS installer From Appstore  2. Use the ' createinstallmedia ' command in Terminal Connect the USB (recommend least 12GB storage USB) Open Terminal Type or paste one of the following commands in Terminal. Notice: USB is name of your volume (device USB) *If your Mac is using macOS Sierra or earlier, include the --applicationpath argument, similar to the way this argument is used in the command for El Capitan. Catalina sudo /Applications/Install\ macOS\ Catalina.app/Contents/Resources/createinstallmedia --volume /Volumes/USB Mojave sudo /Applications/Install\ macOS\ Mojave.app/Contents/Resources/createinstallmedia --volume /Volumes/USB High Sierra sudo /Applications/Install\ macOS\ High\ Sierra.app/Contents/Resources/createinstallmedia --volume /Volumes/USB El Capitan sudo /Applications/Install\ OS\ X\ El\ Capitan.app/Contents/Resources/createinstallmedia --volume /Volumes/USB --applicationpath /Applications/Install\ OS\ X\...

Một số plugin front-end (chủ yếu thiên về UI)

1. Plugin hover css (Tạo hiệu ứng khi rê chuột - vào) : http://ianlunn.github.io/Hover/ 2. Plugin Animate.css (Tổng hợp 1 số animate css, cũng là hiệu ứng): https://daneden.github.io/animate.css/ 3. Plugin Image hover (Tạo hiệu ứng khi rê chuột vào ảnh) : http://imagehover.io/ 4. Owl carousel (Slider cho website) : https://owlcarousel2.github.io/OwlCarousel2/ 5. Slick slider (Slider cho website - nhẹ hơn owl carousel, bạn nào thích hiệu ứng có thể dùng owl carousel, thích đơn giản thì dùng thằng này)  http://kenwheeler.github.io/slick/ Bạn nào muốn hiệu ứng cho slick slider có thể dùng thêm thằng bên dưới https://github.com/marvinhuebner/slick-animation  (Hỗ trợ hiệu ứng cho slick slider, cần có animate.css) 6. Plugin Wow js (Tạo hiệu ứng xuất hiện khi cuộn trang) : https://wowjs.uk/ 7. Plugin Isotope (Tạo hiệu ứng mỗi khi click vào filter) : https://isotope.metafizzy.co/ 8. Direction Reveal (Tạo hiệu ứng kh...

Boot to macOS Recovery in VMware Fusion 11

Image
I found the following three ways to boot to macOS recovery in VMware Fusion, sadly they don’t all work in version 11: Add macosguest.forceRecoveryModeInstall = "TRUE" to you .vmx file – however it doesn’t seem to work with APFS volumes Add bios.bootDelay = "5000" to your .vmx file and press CMD+R during boot – doesn’t seem to work (it opens VMware Boot Manager) Use vfuse from Joe Chilcote with an AutoDMG dmg with the –recovery flag (thanks Arek!) I found a fourth way that seem to work with VMware Fusion 11: press “R” at the VMware logo (you may need to click in the VM so it captures your keystrokes) Select Enter Setup Select Boot from a File Select Recovery,[…] Select <[…]> Select boot.efi Source:  Mac Lovin'

Linux - Các phím tắt lợi hại khi làm việc trên terminal

Ctrl + A: Đưa con trỏ lệnh về đầu dòng Ctrl + E: Đưa con trỏ lệnh về cuối dòng Alt + F: Đưa con trỏ lệnh đi tới 1 word Alt + B: Đưa con trỏ lệnh lùi về trước 1 word Ctrl + U: Xóa toàn bộ dòng hiện tại Alt + D: Xóa từ vị trí hiện tại của con trỏ đến cuối dòng Ctrl + Shift + C: Copy Ctrl + Shift + V hoặc Right Click hoặc Nút lăn của con chuột (Scroll/Middle Button): Paste Ctrl + R: Phím tắt giúp tìm và thực thi lại các lệnh đã gõ, cách dùng: Bấm Ctrl + R: Terminal sẽ xuất hiện chữ: reverse-i-search)`’: Gõ 1 phần keyword liên quan đến command cần tìm, terminal sẽ thể hiện command đã gõ khớp với keyword. Nếu chưa phải là lệnh mong muốn, tiếp tục bấm Ctrl + R để đổi command khác. Nếu đúng lệnh mong muốn, gõ Enter để thực thi. Credit: @vietnix