Skip to content

Instantly share code, notes, and snippets.

View djiwandou's full-sized avatar
🎯
Focusing

djiwandou djiwandou

🎯
Focusing
View GitHub Profile
@djiwandou
djiwandou / postmortems.md
Created November 14, 2023 22:38 — forked from spaceninja/postmortems.md
Postmortem Doc from Cloud Four

Incident Postmortems

Postmortem documents are a ritual designed to examine serious incidents or outages. Google’s book on Site Reliability Engineering says:

A postmortem is a written record of an incident, its impact, the actions taken to mitigate or resolve it, the root cause(s), and the follow-up actions to prevent the incident from recurring.

Purpose

We practice postmortems to ensure we understand and address the root cause of severe incidents such as outages, data loss, or serious production bugs.

import 'package:flutter/material.dart';
import 'package:flutter_tdd/home/home_page.dart';
import 'package:flutter_test/flutter_test.dart';
void main() {
testWidgets('home page is created', (WidgetTester tester) async {
final testWidget = MaterialApp(
home: HomePage(),
);
@djiwandou
djiwandou / Dialog.cpp
Created August 22, 2020 18:29 — forked from EXL/1-ReadMe.md
Shutdowner - simple countdown timer with monitoring user activity and shutdown computer after time up
#include "Dialog.h"
#include "ui_Dialog.h"
#include "LCDNumber.h"
#include <QSettings>
Dialog::Dialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::Dialog)