- App name
- Short description - 80 chars
- Full description - 400 chars
- App icon - Your app icon must be a PNG or JPEG, up to 1 MB, 512 px by 512 px
- Feature graphic - must be a PNG or JPEG, up to 15 MB, and 1,024 px by 500 px
- Video - Add a video by entering a YouTube URL. This video must be public or unlisted, ads must be turned off, and it must not be age restricted.
- Phone screenshots - Upload 2-8 phone screenshots. Screenshots must be PNG or JPEG, up to 8 MB each, 16:9 or 9:16 aspect ratio, with each side between 320 px and 3,840 px
- 7-inch tablet screenshots - Upload up to eight 7-inch tablet screenshots. Screenshots must be PNG or JPEG, up to 8 MB each, 16:9 or 9:16 aspect ratio, with each side between 320 px and 3,840 p
- 10-inch tablet screenshots - Upload up to eight 10-inch tablet screenshots. Screenshots must be PNG or JPEG, up to 8 MB each, 16:9 or 9:16 aspect ratio, with each side between 1,080 px and 7,680 px
Collection of best software to use in your windows machine
- localwp.com
Choose REST APIs if you need features such as API keys, per-client throttling, request validation, AWS WAF integration, or private API endpoints. Choose HTTP APIs if you don't need the features included with REST APIs
- Create new resource: method is ANY resource with
{proxy+}
as path - In method details, choose HTTP
- in http method: ANY
- in Endpoint URL:
https://yourapi.example.com/path/{proxy}
note that you cannot use root path here/
, it has to be some subpath - ensure "HTTP proxy integration" is checked
- click Save
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
DELIMITER $$ | |
DROP function if exists json_extract_c$$ | |
CREATE FUNCTION json_extract_c( | |
details TEXT, | |
required_field VARCHAR (255) | |
) RETURNS TEXT CHARSET utf8mb4 | |
DETERMINISTIC | |
NO SQL | |
BEGIN | |
DECLARE search_term, val TEXT; |
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
{ | |
"_embedded": [ | |
{ | |
"id": "RPT200090", | |
"created": "2020-07-22T14:45:37Z", | |
"modified": "2020-07-22T15:53:04Z", | |
"startDate": "2020-07-31", | |
"endDate": "2020-08-30", | |
"status": "arranging", | |
"agentRole": "managed", |
- X.509 - format of certificate for public and private keys
- CMK - customer master key, to encrypt the private key
- CA - certificate authority, entity that issues digital certificates. this is set in DNS record CAA to allow a CA to issue certificate for that domain
- https://crt.sh/?q=darwinbiler.com. - lets you see the certificates issued to your domain (certificate transparency log). browsers used this to detect any anomaly in certificate
- SCT - Signed Certificate Timestamp, ACM submits the certificate to at least two certificate transparency log servers. These servers add the certificate to their public databases and return a signed certificate timestamp (SCT) to the Amazon CA. it is then included in your X.509 certificate
- TLD - rightmost label in the domain name, like .com .edu .gov
- Apex domain - domain name + TLD example.com
- FQDN - complete DNS name
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
wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | sudo apt-key add - | |
sudo apt-add-repository "deb https://pkg.jenkins.io/debian-stable binary/" | |
apt-get update | |
apt-get install jenkins |
NewerOlder