Đầu tiên phải cập nhật hệ thống trước.
sudo apt update && sudo apt upgrade
sudo apt install tasksel
sudo tasksel install lamp-server
| #!/bin/bash | |
| # Download Postman | |
| cd /tmp || exit | |
| echo "Downloading Postman..." | |
| wget -q https://dl.pstmn.io/download/latest/linux?arch=64 -O postman.tar.gz | |
| # Extract and install Postman to /opt | |
| echo "Extracting and installing to /opt..." | |
| sudo tar -xzf postman.tar.gz -C /opt/ |
| /** | |
| * 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); |
Example inputs:
| Variable | Value |
|---|---|
| key | the shared secret key here |
| message | the message to hash here |
Reference outputs for example inputs above:
| Type | Hash |
| FROM adminer:4.7.1 | |
| # WATCH OUT WHEN UPGRADING, THE SED BELOW MIGHT STOP WORKING | |
| MAINTAINER [email protected] | |
| USER root | |
| RUN apk add autoconf gcc g++ make libffi-dev openssl-dev | |
| RUN pecl install mongodb | |
| RUN echo "extension=mongodb.so" > /usr/local/etc/php/conf.d/docker-php-ext-mongodb.ini |
Danh sách này chỉ được kiểm nghiệm giới hạn trên Windows 10, và vài distro Linux gồm: Ubuntu (và các distro dựa trên nó), Manjaro (Arch Linux). Các trình đọc dựa trên tiêu chí chính là: hoạt động tốt với eBook lớn (>5MB), và xếp thứ tự theo hiệu suất, tính năng.
* Nên cài thêm font Roboto Slab.
| <div id="app"> | |
| <highlightable | |
| @share="onShare" | |
| @highlight="onHighlight" | |
| > | |
| <p> | |
| Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eveniet at debitis deserunt, optio rem eaque obcaecati non possimus nisi assumenda architecto exercitationem dolore quo praesentium, deleniti reiciendis sed ab nihil! | |
| </p> | |
| </highlightable> | |
| <p> |