- Is the problem well defined
- why is the problem occurring
- what is the outcome of the problem
- why hasn't it come up earlier
- what are possible solutions
- can you reproduce it in automated manner
- write automated test reproducing error
- if a problem is rather statistical, can you measure changes in a very fast and repeatable way
- describe manual tests if they were performed
- can you check if the change doesn't break anything else
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Copy given string into clipboard. | |
* | |
* @param s string that should be copied into clipboard | |
*/ | |
def yank(s: String) = { | |
val stringSelection = new java.awt.datatransfer.StringSelection(s) | |
val clipboard = java.awt.Toolkit.getDefaultToolkit().getSystemClipboard() | |
clipboard.setContents(stringSelection, null) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//! ```cargo | |
//! [dependencies] | |
//! | |
//! axum = "0.6.20" | |
//! lazy_static = "1.4.0" | |
//! serde = "1.0.183" | |
//! serde_json = "1.0.104" | |
//! tokio = { version = "1.30.0", features = ["full"] } | |
//! ``` | |
use axum::response::IntoResponse; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![no_std] | |
#![no_main] | |
use aya_bpf::helpers::bpf_get_current_pid_tgid; | |
use aya_bpf::helpers::gen::bpf_ktime_get_ns; | |
use aya_bpf::helpers::bpf_probe_read_user_str_bytes; | |
use aya_bpf::helpers::bpf_probe_read_kernel_str_bytes; | |
use aya_bpf::BpfContext; | |
use aya_bpf::{ | |
macros::map, | |
macros::{uprobe, uretprobe}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# Usage: pager_duty.py <MM.YYYY> <User Name> | |
# Example: ./pager_duty.py 12.2023 "Maciej Flak" | |
import http.client | |
import json | |
import sys | |
import os | |
from datetime import datetime, timedelta |
OlderNewer