docker run --rm \
-e IPFS_GATEWAY=https://cloudflare-ipfs.com \
quay.io/curl/curl:latest \
-i \
--url ipfs://bafkreih3wifdszgljcae7eu2qtpbgaedfkcvgnh4liq7rturr2crqlsuey
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name PreSearch Ads | |
// @namespace Violentmonkey Scripts | |
// @match https://presearch.com/search* | |
// @grant none | |
// @version 0.0.2 | |
// @author hellodword | |
// @run-at document-start | |
// ==/UserScript== |
a pre-release version that encodes a revision identifier (such as a Git commit hash) and a timestamp from a version control system A timestamp (yyyymmddhhmmss), which is the UTC time the revision was created. In Git, this is the commit time, not the author time.
git --no-pager log --format="%cd-%H" -1 --date=format:"%Y%m%d%H%M%S"
git describe --tags --abbrev=0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"encoding/xml" | |
"fmt" | |
"strings" | |
) | |
func main() { |