This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# hosts-to-vm.sh | |
# | |
# Made for use alongside the excellent ievms - | |
# https://github.com/xdissent/ievms | |
# | |
# Will export the local hosts (from /etc/hosts) | |
# to a batch script & add that batch script to a Windows VM | |
# The batch script will be executed to import the hosts onto the VM | |
# The batch file seems convoluted, until you only want to append the new hosts. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Flashback.k test - | |
# Quick check to see if the Mac has the signs that are mentined at f-secure.com | |
# http://www.f-secure.com/v-descs/trojan-downloader_osx_flashback_k.shtml for more info | |
# | |
# Steps From f-secure.com... | |
#1. Run the following command in Terminal: | |
#defaults read /Applications/Safari.app/Contents/Info LSEnvironment | |
#2. Take note of the value, DYLD_INSERT_LIBRARIES | |
#3. Proceed to step 8 if you got the following error message: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Arch-First-Update.sh | |
# For Raspberry Pi | |
# | |
# Based on archlinuxarm-29-04-2012 | |
# SHA-1 b84d1eaba2ec64982da40ccd7dba06b186f6954 | |
# | |
# See http://www.raspberrypi.org/phpBB3/viewtopic.php?f=53&t=8512&p=107921#p107921 | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# get-logs.sh (rename to get-logs.command to make clickable version) | |
# Get all the logs on a Mac | |
# | |
# Requires Admin account & password. | |
# Results end up in directory next to the script | |
# Logs/Date/hostname/folders | |
# | |
echo `basename "$0"` "\nRequires Admin account & password.\t [ctrl+c to abort]" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# NOTE: uses sudo to access the protected Time Machine data. | |
# | |
# Backup-iOS-Apps.sh | |
# | |
# Find all '.ipa' apps in a directory | |
# Copies found apps to a destination folder. The destination will contain a date stamped folder of Apps | |
# e.g. condenses iOS apps within Time Machine backups into individual app versions and copies in one folder. | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# AHT My Disk | |
# | |
# Copy Apple Hardware Test to a volume and bless the hardware test to be bootable | |
# | |
# Useful list of AHT & models from upekkha - https://github.com/upekkha/AppleHardwareTest thx u :) | |
# find your model details & get the AHT disk image | |
## sysctl hw.model | awk '{ print $2 }' | |
## ioreg -l | grep board-id | awk -F\" '{ print $4 }' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# place in PokemonGo-Map directory to use with | |
# https://github.com/PokemonGoMap/PokemonGo-Map | |
from pogom.app import Pogom | |
from pogom import models | |
import json | |
from pogom.models import Pokemon, init_database | |
import os.path | |
import sys | |
outputFile = 'spawns.json' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# drop into alarms/Telegram/ & run in that directory | |
import telepot | |
import json | |
import os | |
import sys | |
import time | |
target_chat = "TELEGRAM_CHAT-ID" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
patch < file.patch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find / -iname "*.txt" 2>/dev/null |
OlderNewer