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 | |
// Placeholder Classes | |
if ( ! class_exists( 'Placeholder_Block' ) ) { | |
class Placeholder_Block { | |
public $name; | |
function __construct( $name ) { | |
$this->name = $name; | |
add_action( 'init', array( $this, 'onInit' ) ); | |
} |
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
[aws] | |
symbol = " " | |
[c] | |
symbol = " " | |
[dart] | |
symbol = " " | |
[directory] |
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
<!-- (Dependency) Add this before the below script !--> | |
<script src="https://unpkg.com/[email protected]/dist/url.min.js"></script> | |
<script> | |
// Extract UTM parameters from function | |
let utm_source = getParameterByName('utm_source'); | |
let utm_medium = getParameterByName('utm_medium'); | |
let utm_campaign = getParameterByName('utm_campaign'); | |
let utm_content = getParameterByName('utm_content'); | |
let utm_term = getParameterByName('utm_term'); |
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
#use this profile if your terminal uses .bash_profile before .bashrc | |
JAVA_HOME = /path/to/java | |
export JAVA_HOME |