-
Partition USB to 3 sections (KaliLinux, Persistence, USBStorage)
-
Run Mac Linux USB Loader for KaliLinux partition and install with iso
-
In KaliLinux partition, set 'efi/boot/enterprise.cfg' to this:
entry Kali
SUFFIXES = {1000: ['KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'], | |
1024: ['KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB']} | |
def approximate_size(size, a_kilobyte_is_1024_bytes=True): | |
'''Convert a file size to human-readable form. | |
Keyword arguments: | |
size -- file size in bytes | |
a_kilobyte_is_1024_bytes -- if True (default), use multiples of 1024 | |
if False, use multiples of 1000 |
# Local reset: | |
git reset --hard fj5789sufj | |
# Remote reset: | |
git push -f origin fj5789sufj:master |
A collection of simple tips to help up your jQuery game.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ | |
██ ██ | |
█▌ - FUN ON THE TERMINAL - █▌ | |
█▌ PUBLIC TELNET ASCII ART, GAMES, ETC (ALL OSes) █▌ | |
█ ▐▌ | |
█ ▐▌ | |
█ Connect to other servers through telnet to view their animated ASCII art, ▐▌ | |
█ games, etc they offer the public. If no port is specified than it is the ▐▌ | |
█ default port 23; you don't need to specify it. ▐▌ | |
█ ▐▌ |
[{"value":"ACURA","title":"Acura","models":[{"value":"CL_MODELS","title":"CL Models (4)"},{"value":"2.2CL","title":" - 2.2CL"},{"value":"2.3CL","title":" - 2.3CL"},{"value":"3.0CL","title":" - 3.0CL"},{"value":"3.2CL","title":" - 3.2CL"},{"value":"ILX","title":"ILX"},{"value":"INTEG","title":"Integra"},{"value":"LEGEND","title":"Legend"},{"value":"MDX","title":"MDX"},{"value":"NSX","title":"NSX"},{"value":"RDX","title":"RDX"},{"value":"RL_MODELS","title":"RL Models (2)"},{"value":"3.5RL","title":" - 3.5 RL"},{"value":"RL","title":" - RL"},{"value":"RSX","title":"RSX"},{"value":"SLX","title":"SLX"},{"value":"TL_MODELS","title":"TL Models (3)"},{"value":"2.5TL","title":" - 2.5TL"},{"value":"3.2TL","title":" - 3.2TL"},{"value":"TL","title":" - TL"},{"value":"TSX","title":"TSX"},{"value":"VIGOR","title":"Vigor"},{"value":"ZDX","title":"ZDX"},{"value":"ACUOTH","title":"Other Acura Models"}]},{"value":"ALFA","title":"Alfa Romeo","models":[{"value":"ALFA164","title":"164"},{"value":"ALFA8C","title":"8C Competizione" |
<?php | |
session_start(); | |
// ***************************************** // | |
// ********** DECLARE VARIABLES ********** // | |
// ***************************************** // | |
$username = 'username'; | |
$password = 'password'; |
var panel = new Ext.form.FormPanel({ | |
title: 'Example', | |
width: 350, | |
items: [], | |
listeners: { | |
add: function(me, component, index) { | |
component.on('change', function(f,n,o) { | |
alert('detected! '+f.label+' value changed from '+o+' to '+n); | |
console.log(component.startValue); | |
}); |
# Locate the 'Info.plist' by right clicking app and 'Show Package Contents' | |
# Add this just before the closing of the `</dict>` tag near where you see | |
# something similar to `<string>MainMenu</string><key>NSPrincipalClass</key>` | |
<key>LSUIElement</key> | |
<true/> |
#! /usr/bin/env python | |
""" Convert values between RGB hex codes and xterm-256 color codes. | |
Nice long listing of all 256 colors and their codes. Useful for | |
developing console color themes, or even script output schemes. | |
Resources: | |
* http://en.wikipedia.org/wiki/8-bit_color | |
* http://en.wikipedia.org/wiki/ANSI_escape_code |