Skip to content

Instantly share code, notes, and snippets.

View dglozano's full-sized avatar

Diego Garcia Lozano dglozano

View GitHub Profile
@pksunkara
pksunkara / config
Last active April 17, 2025 05:11
Sample of git config file (Example .gitconfig) (Place them in $XDG_CONFIG_HOME/git)
[user]
name = Pavan Kumar Sunkara
email = [email protected]
username = pksunkara
[init]
defaultBranch = master
[core]
editor = nvim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
pager = delta
public class Event<T> {
private boolean hasBeenHandled;
private T content;
public Event(T content) {
this.content = content;
this.hasBeenHandled = false;
}