Skip to content

Instantly share code, notes, and snippets.

@kotobukid
kotobukid / dirty_search.js
Last active September 17, 2020 09:44
Human Scraping (greasemonkey)
// ==UserScript==
// @name Sample Script 2
// @namespace https://daqua.jp
// @description Human scraper
// @include http://r-r.arclight.co.jp/backnumber
// @require https://code.jquery.com/jquery-3.5.1.min.js
// @require https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.11.0/underscore-min.js
// ==/UserScript==
const search_box = $('<input type="text" id="simple_search"></input>');
@egorsmkv
egorsmkv / build-git.md
Last active May 5, 2023 04:19
Build git from source code on CentOS 7

Build git from source code

1) Go to https://git-scm.com/ and check out the latest version of Git

Currently, the latest version is 2.18.0. Download and extract it and go to the folder of the source code:

wget https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.18.0.tar.gz
tar xf git-2.18.0.tar.gz
cd git-2.18.0/