Skip to content

Instantly share code, notes, and snippets.

View messutied's full-sized avatar
🎯
Focusing

Eduardo Messuti messutied

🎯
Focusing
View GitHub Profile
Incident
Investigating
identify -> Identified
monitoring -> Monitoring
resolve -> Resolved
Identified
monitoring -> Monitoring
resolve -> Resolved
Monitoring
resolve -> Resolved
@messutied
messutied / SketchSystems.spec
Last active July 30, 2025 14:16
Essential Maintenance
Essential Maintenance
In Progress
to verify -> Verifying
completed -> Completed
Verifying
back to in progress -> In Progress
verified -> Completed
Completed
@messutied
messutied / SketchSystems.spec
Last active July 30, 2025 14:15
Planned Maintenance
Planned Maintenance
Scheduled
start -> In Progress
In Progress
to verify -> Verifying
Verifying
back to in progress -> In Progress
verified -> Completed
Completed
<script>
window.statuspalWidget = {
subdomain: 'meta',
selector: '.sp-status', // Optional
position: 'top', // Optional [top | bottom | left | right] - defaults to top.
// Customise copy below
copy: {
status: {
ok: 'All systems operational 1',
scheduled: 'Ongoing scheduled maintenance',
.metrics .metric .metric--chart-container, .metrics .metric .metric--chart-container svg {
background: transparent !important;
}
.metrics .metric .metric--chart-container svg .bg {
fill: transparent !important;
}
svg text {
fill: #9cb3c9 !important;
}
svg .gridlayer, svg .zerolinelayer {
@messutied
messutied / 0-readme.md
Last active August 11, 2022 13:12
Statuspal status page email templates

Statuspal Status Page Email Template Customization HTML

Use this HTML files to customize your Statuspal status page email template in order to include a company logo, add your business address or otherwise to modify the looks to suit your branding.

Screenshot 2022-07-19 at 12 37 13

Configure your logo

In order to configure your company logo just replace the image under the .header class.

@messutied
messutied / statuspal_subscription_modal_mod.js
Last active September 29, 2020 13:12
This JS snipped makes the subscription modal in a Statuspal status page to open with the "Select services" option checked by default.
document.addEventListener("DOMContentLoaded", function() {
var $ = document.querySelector.bind(document);
var subButton = $('.subscribe');
var input = $('[name="subscription[filter]"][value="services"]');
subButton.addEventListener('click', function () {
setTimeout(function () {
input.checked = true;
input.dispatchEvent(new Event('change'));
}, 0);
});
@messutied
messutied / en.yaml
Created June 4, 2020 10:49
Statuspal english localization file
subscribe_to_updates_1: Subscribe
subscribe_to_updates_2: to Updates
subscribe_to_updates_confirmation: You have been subscribed!
overall_status:
operational: All Systems Operational
issue_singular: There is an ongoing Incident
issue_plural: There are ongoing Incidents
maintenance_singular: There is an ongoing Maintenance
maintenance_plural: There are ongoing Maintenances
about: This is {{name}}'s status page, here you'll find the current status and incident history of {{name}}
@messutied
messutied / custom_footer.html
Last active February 13, 2020 12:08
Statuspal Custom Header & Footer Example
@messutied
messutied / share_to_whatsapp.js
Last active February 19, 2022 22:54
Share to whatsapp bookmarklet
// Following this guide: https://faq.whatsapp.com/en/general/26000030
javascript:(
function(){
const YOUR_PHONE='';
window.open(`https://api.whatsapp.com/send?phone=${YOUR_PHONE}&text=${encodeURIComponent(location.href)}`);
}
)();