Skip to content

Instantly share code, notes, and snippets.

View ricardovsilva's full-sized avatar

Ricardo da Verdade Silva ricardovsilva

View GitHub Profile
function Test-Password {
[CmdletBinding()]
param (
[Parameter(ValueFromPipeline=$true)]
[string]$Password
)
begin {
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
}
@jj1bdx
jj1bdx / monochrome.md
Last active April 28, 2019 13:59
Make screen/display monochrome

Make/toggle screen/display monochrome/grayscale

macOS

System Preferences > Accessibility > Display > Use Grayscale

(Other suggested features: Increase contrast, Differentiate without color)

Windows

@rtt
rtt / tinder-api-documentation.md
Last active October 6, 2025 20:20
Tinder API Documentation

Tinder API documentation

Note: this was written in April/May 2014 and the API may has definitely changed since. I have nothing to do with Tinder, nor its API, and I do not offer any support for anything you may build on top of this. Proceed with caution

http://rsty.org/

I've sniffed most of the Tinder API to see how it works. You can use this to create bots (etc) very trivially. Some example python bot code is here -> https://gist.github.com/rtt/5a2e0cfa638c938cca59 (horribly quick and dirty, you've been warned!)