I hereby claim:
- I am samuelcotterall on github.
- I am samuelcotterall (https://keybase.io/samuelcotterall) on keybase.
- I have a public key ASDCUvlRBQ0MZrwwUUIhN0dQqtl80iB8vqWjuwxmbZSQKQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
{ | |
"editor.fontSize": 13, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": false, | |
"editor.renderWhitespace": "all", | |
"editor.tabSize": 2, | |
"workbench.iconTheme": "vs-seti", | |
"editor.cursorStyle": "line-thin", | |
"trailing-spaces.trimOnSave": true, | |
"sync.gist": "", |
// declarations | |
var positions = []; | |
// Returns a random integer between min (included) and max (excluded) | |
// Using Math.round() will give you a non-uniform distribution! | |
function getRandomInt(min, max) { | |
return Math.floor(Math.random() * (max - min)) + min; | |
} | |
// generate random positions |
add_filter('show_admin_bar', '__return_false'); |
function newsPost_block_func() { | |
global $post; | |
$args = array( | |
'post_type' => array( 'post' ), | |
); | |
$query = new WP_Query($args); | |
var_dump($query->have_posts()); | |
} | |
add_shortcode( 'newsPost_block', 'newsPost_block_func'); |
function newsPost_block_func() { | |
global $post; | |
$args = array(); | |
$query = new WP_Query($args); | |
var_dump($query->have_posts()); | |
} | |
add_shortcode( 'newsPost_block', 'newsPost_block_func'); |
$("#myformid").find("input, select").on('change', function(){ | |
$("#myElement").addClass("myclass"); | |
}); |
function cl_acf_set_language() { | |
return acf_get_setting('default_language'); | |
} | |
function get_global_option($name) { | |
echo acf_get_setting('current_language'); // it | |
add_filter('acf/settings/current_language', 'cl_acf_set_language'); | |
echo acf_get_setting('current_language'); // en | |
$option = get_field($name); | |
remove_filter('acf/settings/current_language', 'cl_acf_set_language'); | |
echo acf_get_setting('current_language'); // it |
var userInfo = passport.deserializeUser(function(id){ | |
return id; | |
}); | |
User.findById(userInfo, function(err, user) { | |
}); |