Lần đầu tiên kết nối thường diễn ra khá suôn sẻ, Windows sẽ tự hiện mã PIN để bạn nhập và kết nối bình thường. Tuy nhiên, nếu gặp sự cố cần kết nối lại thì bàn phím Leopold sẽ bị yêu cầu mã PIN, tuy nhiên chuỗi này ngẫu nhiên, và bạn không thể nhập được. Hãy làm theo các bước sau:
Chạy lệnh lspci -v
để tìm kernel modules của VGA, sau đó thêm vào blacklist:
sudo nano /etc/modprobe.d/blacklist.conf
Ví dụ:
blacklist nouveau
blacklist nvidiafb
BtrFS có nhiều cải tiến so với các hệ thống quản lý tệp khác, nhưng ở mức độ sử dụng của người dùng thông thường thì hữu ích nhất vẫn là chế độ snapshot, nó cực kỳ nhanh và chiếm ít dung lượng lưu trữ.
/boot/efi 512MB (FAT32)
/boot 2GB (Ext4)
/ >= 50GB (BtrFS)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM 7.4-fpm-alpine | |
RUN apk add php7-pecl-xdebug | |
RUN cp /usr/lib/php7/modules/xdebug.so /usr/local/lib/php/extensions/no-debug-non-zts-20190902 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
"blocks": [ | |
{ | |
"alignment": "left", | |
"newline": true, | |
"segments": [ | |
{ | |
"background": "#d75f00", | |
"foreground": "#f2f3f8", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Convert a string to a unicode byte array | |
* @param {string} str | |
* @return {Array} of bytes | |
*/ | |
export function strToUtf8Bytes(str) { | |
const utf8 = []; | |
for (let ii = 0; ii < str.length; ii++) { | |
let charCode = str.charCodeAt(ii); | |
if (charCode < 0x80) utf8.push(charCode); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cd /tmp || exit | |
echo "Downloading Postman ..." | |
wget -q https://dl.pstmn.io/download/latest/linux?arch=64 -O postman.tar.gz | |
tar -xzf postman.tar.gz | |
rm postman.tar.gz | |
echo "Installing to opt..." | |
if [ -d "/opt/Postman" ];then |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
! 7/27/2020 https://vee-validate.logaretm.com | |
vee-validate.logaretm.com##.UpgradeNotice | |
vee-validate.logaretm.com##header.navbar:style(margin-top:0!important) | |
! 7/30/2020 https://pixinvent.com | |
pixinvent.com##.the-footer>.buy-now.vs-button | |
! 9/29/2020 https://dbdiagram.io | |
dbdiagram.io###chart:style(background-color:var(--gray-dark)!important) | |
dbdiagram.io##.highlight-ref .visible-path:style(stroke:var(--yellow)!important) |
NewerOlder