Skip to content

Instantly share code, notes, and snippets.

View didenko's full-sized avatar
💭
I may be slow to respond.

Vlad Didenko didenko

💭
I may be slow to respond.
View GitHub Profile
function fusr() {
[ -f "${1}" ] || return 1;
find /proc -lname "${1}" 2>/dev/null | cut -d/ -f3 | sort -nu | xargs ps -fp;
}
@didenko
didenko / timein.sh
Last active November 11, 2018 04:32
Cross-timezone calculations
function timein ()
{
[ "${#}" -lt 3 ] && {
echo 'timein <dest loc> [when] <src loc> [is] <src time>' 1>&2
echo -e 'e.g.:\ntimein America/Chicago when Europe/Berlin is tomorrow 14:30' 1>&2
echo -e 'or:\ntimein Asia/Ho_Chi_Minh America/New_York 2019/01/02 08:00' 1>&2
return 1
}
dest=${1}; shift
@didenko
didenko / yubikey_install.sh
Last active January 21, 2018 23:50
Yubikey on openSUSE
sudo zypper install u2f-server u2f-host pam_u2f ykclient
package main
import (
"fmt"
"log"
"github.com/pkg/errors"
)
type HTTPError struct {
package main
import (
"fmt"
"log"
"github.com/pkg/errors"
)
type HTTPError struct {
@didenko
didenko / CLA.md
Last active December 13, 2017 14:10
CLA

Preamble

This Contributor License Agreement is a derivative from the GitHub, Inc's version 298f3afd updated August 9, 2017, copied and modified under the individually granted CC-BY-4.0 terms on November 14, 2017.

Contributor License Agreement

The following terms are used throughout this agreement:

  • You - the person or legal entity including its affiliates asked to accept this agreement. An affiliate is any entity that controls or is controlled by the legal entity, or is under common control with it.

The license file referred to in this Developer Certificate of Origin is the LICENSE.md file located in the root directory of this project's repository.

Developer Certificate of Origin

Version 1.1

Copyright © 2004, 2006 The Linux Foundation and its contributors.

1 Letterman Drive

@didenko
didenko / syncthing.sh
Created August 28, 2017 23:31
Enable Syncthing automatic startup on login in macOS
#!/bin/bash
#----------------------------------------------------
#
# Copyright (C) 2017 Vlad Didenko
#
# This Source Code Form is subject to the terms
# of the Mozilla Public License, v. 2.0. If a copy
# of the MPL was not distributed with this file,
# You can obtain one at https://mozilla.org/MPL/2.0/
@didenko
didenko / mermaid_sd.html
Last active April 28, 2017 01:39
mermaid diagramming library template
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.rawgit.com/knsv/mermaid/7.0.0/dist/mermaid.min.js"></script>
<script>mermaid.initialize({ startOnLoad: true });</script>
<style>
@import url('https://fonts.googleapis.com/css?family=Dosis');
body { width: 95%; margin: 1em auto; text-align: center; }
.note { width: 180px; }
.noteText { font-family: 'Dosis', sans-serif; }
@didenko
didenko / Powershell confirmation wrapper
Last active April 1, 2017 14:41
Confirmation PowerShell script
powershell.exe -nologo -command "&" C:\bin\confirm.ps1 shutdown /r /t 15 /f /d p:0:0