Skip to content

Instantly share code, notes, and snippets.

{
"name": "My workflow",
"nodes": [
{
"parameters": {},
"id": "70b5ade4-5c5b-49ac-af15-f8bbb2db9e8d",
"name": "When clicking \"Execute Workflow\"",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
@attiks
attiks / delete-stale-branches.sh
Last active April 16, 2021 09:16 — forked from gparlakov/delete-stale-branches.sh
Delete Stale Branches
#!/usr/bin/env bash
usage() {
echo "Usage: $0 [-y] [-l]" 1>&2;
echo "Uses dry run by default, specify -y to actually delete" 1>&2;
echo "Use -l to delete local branches" 1>&2;
echo "Assumes the main branch is called 'main'" 1>&2;
echo "Set main branch using git config core.main-branch 'main'" 1>&2;
exit 1;
}
@attiks
attiks / diff.patch
Last active January 30, 2020 07:38
Islandora docker
diff --git a/docker/ansible/Dockerfile b/docker/ansible/Dockerfile
index 1ab5c73..281a536 100644
--- a/docker/ansible/Dockerfile
+++ b/docker/ansible/Dockerfile
@@ -6,7 +6,9 @@ ENV ISLANDORA_DISTRO="centos/7" \
WORKDIR /root/playbook
RUN yum -y install epel-release && \
- yum -y install git ansible openssh-clients
+ yum -y install git openssh-clients && \

Keybase proof

I hereby claim:

  • I am attiks on github.
  • I am attiks (https://keybase.io/attiks) on keybase.
  • I have a public key whose fingerprint is 23EF 9F8A 58E7 5DC6 D958 3846 1096 EDB4 61CF 7E35

To claim this, I am signing this object:

Install simp_le as a normal user Inside the simp_le directory create a directory certs Inside certs add generate.sh

Technical Consultancy Contract

Between us [company name] and you [customer name]

Summary

@attiks
attiks / canary.sh
Last active August 29, 2015 14:02
Chromium 'Canary' for Linux
wget -O chromium.zip https://download-chromium.appspot.com/dl/Linux_x64
unzip -o chromium.zip
rm chromium.zip
cd chrome-linux
sudo chown root:root chrome_sandbox && sudo chmod 4755 chrome_sandbox && export CHROME_DEVEL_SANDBOX="$PWD/chrome_sandbox"
./chrome --user-data-dir=~/.config/chromium-canary --enable-experimental-web-platform-features &