(Nội dung này tổng hợp các mẹo giải nhanh cho 600 câu hỏi lý thuyết, được trích lọc từ tài liệu ôn thi GPLX B2.)
| Nội dung câu hỏi | Mẹo và Đáp án Đúng | Ngoại lệ |
|---|
I, like many people, have found that Universal Clipboard copy/paste stops working for no reason. I have a iPhone 12 Pro and an M1 MacBook Air.
All Handoff features work (e.g apps from phone showed up in dock) except copy/paste. I'd tried:
| #!/bin/sh | |
| /Library/Frameworks/Python.framework/Versions/3.11/bin/python3.11 << "EOF" | |
| # install_certifi.py | |
| # | |
| # sample script to install or update a set of default Root Certificates | |
| # for the ssl module. Uses the certificates provided by the certifi package: | |
| # https://pypi.org/project/certifi/ |
Initial Setup
MacOS Big Sur version 11.0.1
Python 3.9.2 installed using brew
pip 21.0.1
Pipenv to manage environment
Installing Pandas in Pipenv
Activate pipenv shell on the project folder (mine is called “pipenv-project”)
| import pandas as pd | |
| selected_columns = ["Amount", "Date", "Where"] | |
| def find_diff_only(origin_df, target_df, identity="DBS"): | |
| shared_with_origin = pd.merge_asof( | |
| origin_df, | |
| target_df, | |
| on="Date", |
| [Interface] | |
| PrivateKey = qIlPpcDo6YmFd7vgE6xwjrKcqjzxMERNzd6sJrDyy1U= | |
| Address = 172.16.0.2/32 | |
| Address = fd01:5ca1:ab1e:8048:2daa:4e28:6a87:3e37/128 | |
| DNS = 1.1.1.1 | |
| MTU = 1280 | |
| [Peer] | |
| PublicKey = bmXOC+F1FxEMF9dyiK2H5/1SUtzH0JuVo51h2wPfgyo= | |
| AllowedIPs = 0.0.0.0/0 | |
| AllowedIPs = ::/0 |
| <?php | |
| /* ------------------------------ NOTICE ---------------------------------- | |
| If you're seeing this text when browsing to the installer, it means your | |
| web server is not set up properly. | |
| Please contact your host and ask them to enable "PHP" processing on your | |
| account. | |
| ----------------------------- NOTICE ---------------------------------*/ | |
Hi
Here is your today report
30 <= current_date >= last_transaction_date + 2 => true else false
| " plugins | |
| call plug#begin('~/.config/nvim/plugged') | |
| "colorschemes | |
| Plug 'arcticicestudio/nord-vim' | |
| Plug 'chriskempson/base16-vim' | |
| Plug 'joshdick/onedark.vim' | |
| "airline | |
| Plug 'vim-airline/vim-airline' | |
| Plug 'vim-airline/vim-airline-themes' |