Skip to content

Instantly share code, notes, and snippets.

View roman0x58's full-sized avatar
πŸ„β€β™‚οΈ

Belikin Roman roman0x58

πŸ„β€β™‚οΈ
View GitHub Profile
find . -depth -type d -name target -exec rm -rf {} +
@roman0x58
roman0x58 / gist:18a8bb320422724dd5a0af606253d4d5
Created August 16, 2022 07:28
Remove known_host fingerprint
ssh-keygen -f "/home/xxxx/.ssh/known_hosts" -R "xxx.com"
@roman0x58
roman0x58 / gist:e668a37ae101332e26aee1d964cc437f
Created February 15, 2021 12:56
change PNG color with imagemagick
convert xxx.png -fuzz 75% -fill red -opaque white xxx_red.png
@roman0x58
roman0x58 / socks5.sh
Created May 1, 2019 10:36
socks5 tunnel
ssh -C2TnN -D 1080 [email protected]
seq 10000 | parallel -n0 -j100 "curl -s --header "Connection: keep-alive" "http://localhost:9000" > /dev/null"
@roman0x58
roman0x58 / dom.ts
Created September 2, 2017 06:44
DOM TS
export class supports {
static classList(): boolean {
return 'classList' in document.documentElement
}
}
export class cls {
static has(el: HTMLElement, className: string): boolean {
if (supports.classList()) {
cat /var/log/logifle | grep -Po 'connection timed out: \K.*\w+(?= to)' | sort | uniq -c
@roman0x58
roman0x58 / xhr.js
Created May 17, 2017 17:22
simple xhr request
export const request = (url) => {
const xhr = new XMLHttpRequest()
const process = (method, body) => {
xhr.open(method, url, true)
xhr.setRequestHeader('Content-Type', 'application/json;charset=UTF-8')
xhr.send(body)
return new Promise((resolve, reject) => {
xhr.onreadystatechange = xhr.onerror = () => {
if (xhr.readyState === XMLHttpRequest.DONE) xhr.status >= 200 && xhr.status < 300 ?
resolve(JSON.parse(xhr.responseText)) : reject(xhr.responseText)
@roman0x58
roman0x58 / tmux.hotkeys
Created January 28, 2016 11:44
tmux hotkeys
Control-U β€” pages up
Control-D β€” pages up
^ β€” goes to the beginning of a line
$ β€” goes to the end of a line
g β€” goes to the beginning of scroll history
G β€” goes to the end of scroll history
/ β€” search down
? β€” search up
@roman0x58
roman0x58 / backbone-event-relay.coffee
Last active December 10, 2015 10:45
Backbone event relay
((root, props) ->
relayEvent = ->
a = _.chain(arguments).toArray()
a.unshift(@) if a.size().value() is 2
((from, to, eventName) ->
from.on(eventName, ->
a = _.chain(arguments)
.toArray()
.unshift(eventName)
to.trigger.apply(to, a.value())