Skip to content

Instantly share code, notes, and snippets.

View eguicciardi's full-sized avatar

Emanuele Guicciardi eguicciardi

View GitHub Profile
@eguicciardi
eguicciardi / alacritty.toml
Created October 3, 2024 14:14
Alacritty configuration
import = ["~/.config/alacritty/catppuccin/catppuccin-macchiato.toml"]
live_config_reload = true
working_directory = "Development"
[env]
TERM = "xterm-256color"
[window]
decorations = "Full"
dynamic_padding = false
@eguicciardi
eguicciardi / postman_jwt_token.js
Created April 11, 2022 08:20
Set JWT Token with Postman
try {
// If access.token is returned, save it on the collection variable "jwtToken"
var jwtToken = pm.response.json()?.access?.token || false;
if(jwtToken) {
pm.collectionVariables.set("jwtToken", jwtToken);
}
} catch(error) {}

Keybase proof

I hereby claim:

  • I am eguicciardi on github.
  • I am eguicciardi (https://keybase.io/eguicciardi) on keybase.
  • I have a public key ASBEpO2qYbSIL0RKpMc_jWlFT9KsTizAygzPz9PFW86LTwo

To claim this, I am signing this object:

@eguicciardi
eguicciardi / wpm_get_post.php
Created April 18, 2019 15:03
Wordpress + WPML + get_posts() get by current language or force language
/* Example args for get_posts() */
$query_args = array(
'posts_per_page' => -1,
'orderby' => 'title',
'order' => 'ASC',
'post_status' => 'publish',
'suppress_filters' => false
);
@eguicciardi
eguicciardi / drupal_batch_drush_example.php
Last active November 2, 2020 02:17
Drupal 7.x Batch API example tied with a Drush command
<?php
function mymodule_setup_batch($start=1, $stop=100000) {
$dataset = array(); // A very large dataset
$chunks = array_chunk($dataset, 20); // Divide the dataset
$operations = array();
$count_chunks = count($chunks);
$i = 1;
@eguicciardi
eguicciardi / d7_password_reset.php
Last active February 22, 2017 21:46
Function to reset a user's password
<?php
function password_reset(){
global $user;
$hashthepass = 'password'; /* Your password value*/
require_once DRUPAL_ROOT . '/' . variable_get('password_inc', 'includes/password.inc');
$hashthepass = user_hash_password(trim($hashthepass));
if (!$hashthepass) {
@eguicciardi
eguicciardi / ajaurl.js
Created March 25, 2014 13:33
Wordpress AjaxURL
<script type="text/javascript">
var ajaxurl = "<?php echo admin_url('admin-ajax.php'); ?>";
</script>
@eguicciardi
eguicciardi / drupal_js.js
Created December 24, 2013 14:07
drupal_add_js()
drupal_add_js(array('myModule' => array('key' => 'value')), 'setting');
Drupal.behaviors.makeMeSmelly = {
attach: function (context, settings) {
// Questo codice viene eseguito solo una volta
context.once(function() {
$('h1', this).addClass('.titolone');
}
// Questo invece viene eseguito ad ogni richiesta
$('h1').addClass('.titoloneone');
}
@eguicciardi
eguicciardi / beahavior_1.js
Last active December 30, 2015 03:19
Drupal 7.x behaviors snippet
Drupal.behaviors.NomeModuloCustom = {
attach: function (context, settings) {
$('h1').addClass('.titolone');
}
}