Skip to content

Instantly share code, notes, and snippets.

View baldawayash15's full-sized avatar
🎯
Focusing

Yash Baldawa baldawayash15

🎯
Focusing
  • Pune
View GitHub Profile
<?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' ) );
}
@baldawayash15
baldawayash15 / starship.toml
Last active July 21, 2023 13:30
Starship Custom Terminal Config
[aws]
symbol = " "
[c]
symbol = " "
[dart]
symbol = " "
[directory]
@baldawayash15
baldawayash15 / utm_tracking_new.html
Last active November 9, 2022 16:36
UTM Tracking for Website Referrer and URL Parameters
<!-- (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');
@baldawayash15
baldawayash15 / .bash_profile
Last active June 22, 2019 12:17
JAVA HOME Environment on Linux
#use this profile if your terminal uses .bash_profile before .bashrc
JAVA_HOME = /path/to/java
export JAVA_HOME