Skip to content

Instantly share code, notes, and snippets.

View vaniacer's full-sized avatar

Ivan vaniacer

View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rawiriblundell
rawiriblundell / regen_knownhosts
Last active January 9, 2023 05:14
Regenerate your known_hosts file after rotating your keys
#!/bin/bash
# Regenerate your known_hosts file after rotating your keys
# Generate a list of hosts that we're more likely to care about, divined from our shell history
# Adjust filtering in the final 'grep -Ev' to suit your needs
# n.b. typos and stale entries will fail in subsequent steps, so don't sweat this too much
get_historical_hosts() {
grep "^ssh " "${HOME}/.bash_history" |
tr " " "\n" |
grep -Ev '^ssh$|^-v+|^-[a-zA-Z]$|^.*.pem$|^".*.pem"$|^raw$|^$|^~|^.$' |
@ipbastola
ipbastola / jq to filter by value.md
Last active February 10, 2025 08:36
JQ to filter JSON by value

JQ to filter JSON by value

Syntax: cat <filename> | jq -c '.[] | select( .<key> | contains("<value>"))'

Example: To get json record having _id equal 611

cat my.json | jq -c '.[] | select( ._id | contains(611))'

Remember: if JSON value has no double quotes (eg. for numeric) to do not supply in filter i.e. in contains(611)

@kwinsch
kwinsch / wildfly-install.sh
Last active October 20, 2017 08:32 — forked from sukharevd/wildfly-install.sh
Script to install JBoss Wildfly 10.x as service in Linux
#!/bin/bash
#title :wildfly-install.sh
#description :The script to install Wildfly 10.x
#more :http://sukharevd.net/wildfly-8-installation.html
#author :Dmitriy Sukharev
#date :2016-06-29T15:45-1600
#usage :/bin/bash wildfly-install.sh
#tested-version1 :10.1.0.Final
#tested-distros1 :Ubuntu 16.04
@alexey-milovidov
alexey-milovidov / rounding_dates.txt
Created June 20, 2016 20:57
Example of using date and datetime functions in ClickHouse.
:) SELECT toMonday(EventDate) AS k, count(), uniq(UserID) FROM hits_layer WHERE CounterID = 29761725 AND EventDate >= '2016-05-01' GROUP BY k ORDER BY k
SELECT
toMonday(EventDate) AS k,
count(),
uniq(UserID)
FROM hits_layer
WHERE (CounterID = 29761725) AND (EventDate >= '2016-05-01')
GROUP BY k
ORDER BY k ASC
@olih
olih / jq-cheetsheet.md
Last active March 31, 2025 22:13
jq Cheet Sheet

Processing JSON using jq

jq is useful to slice, filter, map and transform structured json data.

Installing jq

On Mac OS

brew install jq

@s4parke
s4parke / git-­truncate.sh
Created February 18, 2015 16:33
Simple bash script for truncating git repo history
#!/bin/bash
# Usage:
# ./git-truncate.sh SHA1
# Removes all the history prior to commit "SHA1"
git checkout --orphan temp $1
git commit -m "Truncated history of git repo"
git rebase --onto temp $1 master
git branch -D temp
@plentz
plentz / nginx.conf
Last active March 28, 2025 17:48
Best nginx configuration for improved security(and performance)
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048