Skip to content

Instantly share code, notes, and snippets.

View frnwtr's full-sized avatar
🦧
I may be slow to respond.

Walter Franchetti frnwtr

🦧
I may be slow to respond.
View GitHub Profile
@frnwtr
frnwtr / resume.json
Last active May 5, 2025 11:51
My resume
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"meta": {
"theme": "professional"
},
"basics": {
"name": "Walter Franchetti",
"label": "Senior Backend Developer",
"image": "https://wa.lter.it/_vercel/image?url=_astro%2Ffrnwtr.4pxvWLgm.png&w=1080&q=100",
"email": "[email protected]",
const WordpressPurgeCSS = {
whitelist: [
"rtl",
"home",
"blog",
"archive",
"date",
"error404",
"logged-in",
"admin-bar",
### Keybase proof
I hereby claim:
* I am frnwtr on github.
* I am frnwtr (https://keybase.io/frnwtr) on keybase.
* I have a public key whose fingerprint is 5C60 02A8 1C71 387C C94D 4F4D 019D 688B 8386 96B3
To claim this, I am signing this object:
@frnwtr
frnwtr / wp_facebook_cache_update.php
Last active January 3, 2016 00:39
Auto update Facebook OG cache on Wordpress post save
<?php
function facebook_cache_update( $post_id ) {
// If this is just a revision, don't update
if ( wp_is_post_revision( $post_id ) )
return;
$url="https://graph.facebook.com/";
$post_url = get_permalink( $post_id );
$response = wp_remote_post( $url, array(