Convert the ISO
hdiutil convert kali-linux-light-2018.4-amd64.iso -format UDRW -o kali.imgGet the USB disk
diskutil listConvert the ISO
hdiutil convert kali-linux-light-2018.4-amd64.iso -format UDRW -o kali.imgGet the USB disk
diskutil list| #!/bin/bash | |
| # http://mywiki.wooledge.org/BashFAQ/105 | |
| set -e | |
| if [[ $(git config --get husky.hooks) == "false" ]]; then exit 0; fi | |
| yarn run lint-staged |
| import { withLeaflet, GridLayer } from "react-leaflet"; | |
| import L from "leaflet"; | |
| class Grid extends GridLayer { | |
| createLeafletElement() { | |
| const { url, cacheName } = this.props; | |
| const Layer = L.TileLayer.extend({ | |
| createTile: (coords, done) => { | |
| const { x, y, z } = coords; |
| /** | |
| * Copyright (c) 2019-present, ProductBoard, Inc. | |
| * All rights reserved. | |
| */ | |
| export default function transform(file, api) { | |
| const j = api.jscodeshift; | |
| const imports = j(file.source) | |
| .find(j.ImportDeclaration) |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env fish | |
| # Get the current Node.js version managed by nvm.fish | |
| set nvm_current_version (nvm current) | |
| # Check if a Node.js version is currently selected | |
| if test "$nvm_current_version" = "none" | |
| echo "Error: No Node.js version selected. Please use 'nvm use' to select a version." | |
| exit 1 | |
| end |
| // ==UserScript== | |
| // @name EasyLlama Anti Focus Detection | |
| // @namespace https://github.com/jukben | |
| // @version 1.2 | |
| // @description Prevents websites from detecting tab/window focus loss | |
| // @author jukben | |
| // @match *://*.mygo1.com/* | |
| // @match *://app.easyllama.com/* | |
| // @match *://app.vanta.com/* | |
| // @run-at document-start |