This file was generated automatically based on this two sources:
- /etc/nginx/mime.types
- http://www.garykessler.net/library/file_sigs.html
This is a JSON object by following structure:
[string ext] : {
signs: [sign]
package cn.invoice.invoiceapi.config; | |
import com.fasterxml.jackson.databind.JsonNode; | |
import io.hypersistence.utils.hibernate.type.json.internal.JsonBinaryJdbcTypeDescriptor; | |
import io.hypersistence.utils.hibernate.type.json.internal.JsonNodeJavaTypeDescriptor; | |
import org.hibernate.boot.model.TypeContributions; | |
import org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy; | |
import org.hibernate.boot.model.naming.Identifier; | |
import org.hibernate.boot.model.naming.PhysicalNamingStrategy; | |
import org.hibernate.engine.jdbc.Size; |
This file was generated automatically based on this two sources:
This is a JSON object by following structure:
[string ext] : {
signs: [sign]
_ | |
- - /, /, |\ 222222222222222 | |
)/ )/ ) ' _ \\ 2:::::::::::::::22 | |
)__)__) \\ /\\ < \, ,._-_ / \\ _-_, 2::::::222222:::::2 | |
~)__)__) || / /-|| || || || ||_. 2222222 2:::::2 | |
) ) ) || /\\ (( || || || || ~ || 2:::::2 | |
/-_/-_/ \\ || \/\\ \\, \\/ ,-_- 2:::::2 :::::: | |
/ 2222::::2 :::::: | |
(, 22222::::::22 :::::: | |
.--.--.-----. 22::::::::222 |
|
common = <<-SHELL | |
sysctl -w net.ipv6.conf.all.disable_ipv6=1 | |
sysctl -w net.ipv6.conf.default.disable_ipv6=1 | |
timedatectl set-timezone Asia/Shanghai | |
echo '' > /etc/apt/sources.list | |
echo 'deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster main contrib non-free' >> /etc/apt/sources.list | |
echo 'deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-updates main contrib non-free' >> /etc/apt/sources.list | |
echo 'deb https://mirrors.tuna.tsinghua.edu.cn/debian/ buster-backports main contrib non-free' >> /etc/apt/sources.list | |
echo 'deb https://mirrors.tuna.tsinghua.edu.cn/debian-security buster/updates main contrib non-free' >> /etc/apt/sources.list |
@Data | |
@AllArgsConstructor | |
@NoArgsConstructor | |
@Builder | |
public class GetSampleInfoResponse { | |
private Data data; | |
@Data |
Request address: | |
//api.onebound.cn/amazon/api_call.php? | |
num_iid=B07FR2DYDR&cache=no&api_name=item_get&lang=zh-CN&key=tel15103005909&secret=20201010 | |
--------------------------------------- | |
Result Object: | |
--------------------------------------- | |
{ | |
"item": { | |
"detail_url": "https://www.amazon.cn/dp/B07FR2DYDR?th=1&psc=1", | |
"crumbs": { |
import java.util.List; | |
class Scratch { | |
static class Product{ | |
private String 产品分类; | |
private List<String> 图片地址; |
--- | |
- hosts: all | |
tasks: | |
- name: disable selinux | |
selinux: | |
state: disabled | |
- name: disable firewalld | |
service: | |
name: firewalld | |
state: stopped |
--- | |
- hosts: all | |
tasks: | |
- name: Set timezone to Asia/Shanghai | |
timezone: | |
name: Asia/Shanghai | |
- name: disable selinux | |
selinux: | |
state: disabled | |
- name: disable firewalld |