Skip to content

Instantly share code, notes, and snippets.

View haster's full-sized avatar

Sven Haster haster

View GitHub Profile
@wgroenewold
wgroenewold / Topicus Keyhub webhooks to Slack
Last active August 7, 2018 06:44
Topicus Keyhub webhooks to Slack
<?php
/**
* Class keyhub. Houses everything to bind to Keyhub.
*/
class glue_keyhub{
private $slack_appurl;
/**
@magnetikonline
magnetikonline / README.md
Last active April 10, 2026 16:48
Bash string manipulation cheatsheet.

Bash string manipulation cheatsheet

Assignment
Assign value to variable if variable is not already set, value is returned.

Combine with a : no-op to discard/ignore return value.
${variable="value"}
: ${variable="value"}