Product: Sagitta Brutalis 1080 (PN S3480-GTX-1080-2697-128)
Software: Hashcat v3.00-beta-145-g069634a, Nvidia driver 367.18
Accelerator: 8x Nvidia GTX 1080 Founders Edition
Product: Sagitta Brutalis 1080 (PN S3480-GTX-1080-2697-128)
Software: Hashcat v3.00-beta-145-g069634a, Nvidia driver 367.18
Accelerator: 8x Nvidia GTX 1080 Founders Edition
(function (history, trackingId, options) { | |
const generateId = () => { | |
return '_' + Math.random().toString(36).substr(2, 9); | |
}; | |
const getId = () => { | |
if (!localStorage.cid) { | |
localStorage.cid = generateId() | |
} | |
return localStorage.cid; | |
}; |
export interface S { | |
styler: (css: any) => string; | |
bind: (css: any) => any; | |
} | |
export const classes: S = { | |
styler: (css, ...args: any[]): string => { | |
const r: string[] = [] | |
if (args.length) { |
Download the appropriate Kali Linux .iso
I used a 64 bit .iso
image, downloaded via HTTP. I downloaded the amd64 weekly version, as the pool
linux headers (needed below for installation of wireless drivers) were ahead of the stable release kernel.
Download the SHA256SUMS
and SHA256SUMS.gpg
files from the same location.
export interface S { | |
bind: (css: any, args: Array<any>) => string; | |
styler: (css: any) => void; | |
} | |
export const classes: S = { | |
styler: (css, ...args: Array<any>): string => { | |
const r: Array<string> = [] | |
if (args.length) { |
handleKeypressName(e) { | |
const regexp = /[^A-Za-z -]/; | |
e = e || window.event; | |
const charCode = (typeof e.which == "number") ? e.which : e.keyCode; | |
const typedChar = String.fromCharCode(charCode); | |
const matched = !(regexp.test(typedChar)); | |
if (!matched) { | |
e.preventDefault(); |
import React from 'react' | |
import axios, { post } from 'axios'; | |
class SimpleReactFileUpload extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state ={ | |
file:null | |
} |
/** | |
* A port, cleanup and simplification of https://github.com/thejameskyle/react-loadable | |
* MIT License Copyright 2017 Chris Sattinger | |
*/ | |
import React from "react"; | |
export function Loading({ loading = true }) { | |
return loading | |
? <i className="fa fa-spinner fa-spin" aria-hidden="true" /> | |
: null; |
Things I had to do using Homebrew to get my local web dev environment back up and running after migration to OSX Sierra + Xcode 8.1.
Note: I used brew reinstall
because I had already installed most of this previously under Yosemite. Probably better ways to do this, but this is what worked for me.
brew doctor
brew tap homebrew/dupes
brew tap homebrew/versions
SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY','')); |