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
module.exports = { | |
root: true, | |
env: { browser: true, es2020: true }, | |
extends: [ | |
'eslint:recommended', | |
'plugin:react/recommended', | |
'plugin:react/jsx-runtime', | |
'plugin:react-hooks/recommended', | |
], | |
ignorePatterns: ['dist', '.eslintrc.cjs'], |
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
<?php | |
/** | |
* Debug HTTP requests in WordPress | |
* | |
* Fires after an HTTP API response is received and before the response is returned. | |
* | |
* Output in `wp-content\debug.log` file: | |
* | |
* [24-Apr-2019 06:50:16 UTC] ------------------------------ | |
* [24-Apr-2019 06:50:16 UTC] https://downloads.wordpress.org/plugin/elementor.2.5.14.zip |
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 RawHTML = ({children, className = ""}) => | |
<div className={className} dangerouslySetInnerHTML={{ __html: children.replace(/\n/g, '<br />')}} /> |
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
#Dig HowTo [https://www.madboa.com/geek/dig/] | |
# get the address(es) for yahoo.com | |
dig yahoo.com A +noall +answer | |
# get a list of yahoo's mail servers | |
dig yahoo.com MX +noall +answer | |
# get a list of DNS servers authoritative for yahoo.com | |
dig yahoo.com NS +noall +answer |
NewerOlder