Skip to content

Instantly share code, notes, and snippets.

@Chick3nman
Chick3nman / TESLA_A100_PCIE_v6.1.1
Created October 3, 2020 23:03
Hashcat v6.1.1 benchmark on the Nvidia Tesla A100 PCIE variant GPU
NVIDIA Driver Version: 450.80.02 CUDA Version: 11.0
This is the PCIE variant of the Nvidia Tesla A100 GPU
The PCIE variant is limited to 250W and this limit is visible in the faster algorithms benchmarked
Clock speed is also limited on this card, which explains some of the numbers being lower than expected
When comparing to the RTX 3090, consider the difference in Power and Clock speed limitation, as well as the use of HBM2e memory instead of GDDR6x
A benchmark of the full SMX4 A100 variant will follow as I get access
hashcat (v6.1.1) starting in benchmark mode...
@darconeous
darconeous / tesla-key-card-protocol.md
Last active April 5, 2024 07:09
Tesla Key Card Protocol

Tesla Key Card Protocol

Researched by Robert Quattlebaum darco@deepdarc.com.

Last updated 2020-02-03.

Image of Tesla Key Card Image of Tesla Model 3 Key Fob

@runesoerensen
runesoerensen / AppHarborMiddleware.cs
Created June 14, 2014 01:12
Sample OWIN middleware that modifies requests based on standard nginx headers (used on AppHarbor)
public class AppHarborMiddleware : OwinMiddleware
{
public AppHarborMiddleware(OwinMiddleware next)
: base(next)
{
}
public override Task Invoke(IOwinContext context)
{
if (string.Equals(context.Request.Headers["X-Forwarded-Proto"], "https", StringComparison.InvariantCultureIgnoreCase))
@trey
trey / happy_git_on_osx.md
Last active February 18, 2024 10:46
Creating a Happy Git Environment on OS X

Creating a Happy Git Environment on OS X

Step 1: Install Git

brew install git bash-completion

Configure things:

git config --global user.name "Your Name"

git config --global user.email "you@example.com"