Skip to content

Instantly share code, notes, and snippets.

View NickPiscitelli's full-sized avatar
:octocat:
The Ocho

pickykneee NickPiscitelli

:octocat:
The Ocho
View GitHub Profile
@NickPiscitelli
NickPiscitelli / kitty-tab-select
Created February 3, 2023 00:17
Kitty kitten to select tab via fzf
#!/bin/bash
tabs="$( kitty @ ls | jq -r '.[] | .tabs[] | .title' )"
tab="$(fzf --reverse <<< "${tabs}")"
kitty @ focus-tab -m "window_title:${tab}"
# map ctrl+shift+p launch --allow-remote-control --type=overlay kitty-tab-select
@NickPiscitelli
NickPiscitelli / gemini.pl
Last active August 29, 2015 14:22
Gemini Cron Task
#!/usr/bin/env perl
use strict;
use warnings;
use Data::Dumper qw(Dumper);
use DBI;
use Getopt::Long;
my ($gemail, $guser, $gdays);
GetOptions(
@NickPiscitelli
NickPiscitelli / README.md
Last active August 29, 2015 13:57
Alt Coin libnotify Price Ticker - MintPal / SwissCEX Support

#Overview

Use libnotify to display coin markets fetched from either SwissCEX and/or MintPal. BTC/USD Prices from Bitstamp as well.

#Example

Basic (DOGE/BTC from Mintpal. No API Key Needed.)

./notify-ticker.pl --coins="doge" --to_satoshi

@NickPiscitelli
NickPiscitelli / README.md
Last active August 29, 2015 13:57
CryptoCurrency Altcoin Wallet Backup Manager - Manage Wallet backups among PCs using Dropbox (Directory is configurable)

Perl script to make management of alt coin wallets easier.

Support for performing limited actions of pre-configured coins.

Run on either all or coins passed in argument. Execute examples listed below.

Script Arguments

conf: Location of JSON Wallet conf file. (Defaults to ~/wallet_conf.json)