Skip to content

Instantly share code, notes, and snippets.

Avatar
🏠
Working from home

Benjamin Bolte codekansas

🏠
Working from home
View GitHub Profile
@myobie
myobie / ci.yml
Last active March 10, 2023 12:40
Don't run GitHub Actions for pull requests that are drafts
View ci.yml
on:
push:
branches:
- master
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
@irbull
irbull / OpenSSLExample.cpp
Created August 11, 2016 18:32
Code signing and verification with OpenSSL
View OpenSSLExample.cpp
#include <iostream>
#include <openssl/aes.h>
#include <openssl/evp.h>
#include <openssl/rsa.h>
#include <openssl/pem.h>
#include <openssl/ssl.h>
#include <openssl/bio.h>
#include <openssl/err.h>
#include <assert.h>
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active March 31, 2023 14:21
tmux shortcuts & cheatsheet
View tmux-cheatsheet.markdown

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname