Skip to content

Instantly share code, notes, and snippets.

View Hakky54's full-sized avatar
😈
Do What’s Right Not Easy

Hakan Altındağ Hakky54

😈
Do What’s Right Not Easy
View GitHub Profile
@Hakky54
Hakky54 / README.md
Created December 7, 2023 12:32 — forked from koshatul/README.md
use Apple Keychain to store GPG Passphrases

gpg-agent setup

Need to setup gpg-agent first, on OSX I use keychain (it also does ssh-agent)

$ brew info keychain
keychain: stable 2.8.5
User-friendly front-end to ssh-agent(1)
https://www.funtoo.org/Keychain
/usr/local/Cellar/keychain/2.8.5 (7 files, 108.5KB) *
@Hakky54
Hakky54 / starcounter.js
Last active August 28, 2022 01:55 — forked from yyx990803/starcounter.js
Count your total stars!
var https = require('https'),
user = process.argv[2],
opts = parseOpts(process.argv.slice(3))
request('/users/' + user, function (res) {
if (!res.public_repos) {
console.log(res.message)
return
}
var pages = Math.ceil(res.public_repos / 100),
@Hakky54
Hakky54 / openssl_commands.md
Last active May 30, 2024 20:44 — forked from p3t3r67x0/openssl_commands.md
Some list of openssl commands for check and verify your keys

OpenSSL 🔐

Install

Install the OpenSSL on Debian based systems

sudo apt-get install openssl
@Hakky54
Hakky54 / README.md
Created October 14, 2019 04:46 — forked from hofmannsven/README.md
Git Cheatsheet