Skip to content

Instantly share code, notes, and snippets.

View ggalletty's full-sized avatar

Giammarco Galletti ggalletty

View GitHub Profile
@ggalletty
ggalletty / broken-config.json
Created June 27, 2024 09:02
DLP Configuration
{
"infoTypes": [
{
"name": "ARGENTINA_DNI_NUMBER"
},
{
"name": "AUSTRALIA_DRIVERS_LICENSE_NUMBER"
},
{
"name": "AUSTRALIA_MEDICARE_NUMBER"
@ggalletty
ggalletty / userscript.js
Created May 13, 2022 07:36
Merge Google Calendar Events
// ==UserScript==
// @name Merge events for Google Calendar
// @namespace https://greasyfork.org/en/users/6254-doublemms
// @license MIT
// @description Merge same events on from calendars in Google Calendar. Fork of imightbeamy/gcal-multical-event-merge cross-browser compatible.
// @include https://www.google.com/calendar/*
// @include http://www.google.com/calendar/*
// @include https://calendar.google.com/*
// @include http://calendar.google.com/*
// @version 1
@ggalletty
ggalletty / nodes.json
Last active November 15, 2018 16:24
D3 Nodes Source
{
"nodes": [
{"id": 1, "name": "Main", "type": "router"},
{"id": 2, "name": "MacBook", "type": "station"},
{"id": 3, "name": "Bravia TV", "type": "station"},
{"id": 4, "name": "Bedroom Extender", "type": "extender"},
{"id": 5, "name": "Mark's iPhone", "type": "station"},
{"id": 6, "name": "Smart Scale", "type": "station"},
{"id": 7, "name": "Kitchen Extender", "type": "extender"},
{"id": 8, "name": "Candy Bianca", "type": "station"},
@ggalletty
ggalletty / wp-password_query.sql
Last active August 29, 2015 14:00
SQL query to hard-reset WordPress account password. #SQL #WordPress
update wp_users set user_pass=MD5('newpassword') where user_login='username'