I hereby claim:
- I am mhackersu on github.
- I am mhackersu (https://keybase.io/mhackersu) on keybase.
- I have a public key ASCQkUjaCC4gl2ALKNv3Zf24JBkk9AU3Ttqi0PTj72gg0Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
You can use root to perform following steps until a regular user is indicated
If one of these packages are not presented, kubeadm will report warnings or errors
pacman -S docker ebtables ethtool socat
LVM on LUKS Arch installation with systemd-boot
Sources:
#!/usr/bin/env bash | |
# | |
# Fetch secrets for local development from Azure KeyVault | |
# and print them to stdout as a bunch of env var exports. | |
# These secrets should be added to your local .env file | |
# to enable running integration tests locally. | |
# | |
KEY_VAULT=$1 | |
function fetch_secret_from_keyvault() { |
<div> | |
<style> | |
*, | |
*:before, | |
*:after { | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
box-sizing: border-box; | |
} |
<HTML> | |
<HEAD> | |
<!-- Anti-flicker snippet (recommended) --> | |
<style>.async-hide { opacity: 0 !important} </style> | |
<script>(function(a,s,y,n,c,h,i,d,e){s.className+=' '+y;h.start=1*new Date; | |
h.end=i=function(){s.className=s.className.replace(RegExp(' ?'+y),'')}; | |
(a[n]=a[n]||[]).hide=h;setTimeout(function(){i();h.end=null},c);h.timeout=c; | |
})(window,document.documentElement,'async-hide','dataLayer',4000, | |
{'13139655':true});</script> |
<!-- Global site tag (gtag.js) - Google Analytics --><script async src="https://www.googletagmanager.com/gtag/js?id=UA-58846608-1"></script><script>window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'UA-58846608-1', { 'optimize_id': 'GTM-MMTMTBJ'});</script> |
add_filter('woocommerce_cart_item_permalink','__return_false'); |
/* | |
* Disable Continue shopping message after add to cart. | |
*/ | |
add_filter( 'wc_add_to_cart_message', function( $string, $product_id = 0 ) { | |
$start = strpos( $string, '<a href=' ) ?: 0; | |
$end = strpos( $string, '</a>', $start ) ?: 0; | |
return substr( $string, $end ) ?: $string; | |
} ); |
/* | |
* External domains for add to cart redirect | |
*/ | |
add_filter( 'allowed_redirect_hosts', function( $hosts ) { | |
$hosts[] = 'staging.energyefficientsolutions.com'; // Add your external domain in here. | |
/* No http/https schema prefix. Duplicate for additional allowed domains */ | |
return $hosts; | |
} ); |