类别 | 药品通用名 | 原研品牌 |
---|---|---|
抗生素类 | 头孢克洛 | 希刻劳 |
头孢呋辛 | 西力欣 | |
左氧氟沙星 | 可乐必妥 | |
莫西沙星 | 拜复乐 | |
阿奇霉素 | 希舒美 | |
头孢妥仑匹酯 | 美爱克 | |
抗真菌类 | 盐酸特比萘芬 | 兰美抒 |
奥美拉唑 | 洛赛克 |
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
services: | |
yapi: | |
image: wohal/yapi:latest | |
container_name: yapi | |
environment: | |
- VERSION=1.12.0 | |
- HOME=/home | |
- PORT=3000 | |
- [email protected] # CHANGE ME | |
- DB_SERVER=mongo |
Apple restricted the access to Xcode LLM (Predictive code completion) feature on China models of Mac. This guide provides a way to bypass that restriction. It's verified on macOS 15.0 Beta (24A5264n), but there is no guarentee that it will always work on later macOS versions.
- Xcode is installed and run at least once.
- SIP debugging restrictions are disabled (via
csrutil enable --without debug
command in recovery mode).
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
Windows 7 All Online/Offline [Retail-MAK] Activation Keys | |
================================================================================= | |
. Run "Command Prompt" as Administrator | |
. slmgr.vbs -ipk Product Key | |
. slui4 | |
================================================================================= | |
Windows 7 Ultimate Retail Phone Activation Keys | |
RHTBY-VWY6D-QJRJ9-JGQ3X-Q2289 | |
V77DJ-CT8WB-Y3GXT-X3FBP-6F987 | |
JC7BV-94FD2-D86PH-XRMHR-BXKDG |
To setup some key bindings in Xcode with the same like VSCode
Add this to /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/Resources/IDETextKeyBindingSet.plist
Thanks to: https://gist.github.com/emotality/b1bcb2bb8a07921f9c8cad1c969daedf
<key>Duplication</key>
<dict>
Assuming the following:
- Webdav share URL:
http://example.com/dav/
- Username:
user
- Password:
pass
curl options:
-u username:password
use HTTP Basic authorization with the folowing username and password-X GET
send a request with GET method. You can use any other methods here.
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
const fs = require('fs'); | |
const util = require("util"); | |
const fontKit = require("font-toolkit"); | |
const readFile = util.promisify(fs.readFile); | |
const writeFile = util.promisify(fs.writeFile); | |
async function save() { | |
// read font | |
const buf = await readFile("20th_bold.ttf"); |
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
function mapLimit(arr, limit, iterator) { | |
let count = limit; | |
const next = () => { | |
if (count > arr.length) { | |
return; | |
} | |
iterator(arr[count], next); | |
count++; | |
} | |
for (let i = 0; i < limit; i++) { |