This file contains hidden or 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
// | |
// airtag-decryptor.swift | |
// | |
// Decrypt all beacons files from ~/Library/com.apple.icloud.searchpartyd - updated when FindMy is running | |
// Results in /tmp/com.apple.icloud.searchpartyd - same file hierarchy | |
// | |
// Created by Matus on 28/01/2024. - https://gist.github.com/YeapGuy/f473de53c2a4e8978bc63217359ca1e4 | |
// Modified by Airy | |
// | |
import Cocoa |
This file contains hidden or 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
from tornado import websocket, web, ioloop | |
import json | |
clients = [] | |
class SocketHandler(websocket.WebSocketHandler): | |
def check_origin(self, origin): | |
return True | |
def open(self, key=None): |
This file contains hidden or 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
import discord | |
import asyncio | |
import os.path | |
import sys | |
import json | |
try: | |
import apiai | |
except ImportError: |
This file contains hidden or 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
Driver: VRT/Virtual Raster | |
Files: nantucket2.vrt | |
out/AE00N41_218745W070_1562792008070000000000OL00_GG001002003.tif | |
out/AE00N41_218748W070_0312812008070000000000OL00_GG001002003.tif | |
out/AE00N41_218748W070_0937862008070000000000OL00_GG001002003.tif | |
out/AE00N41_218750W069_9687812008070000000000OL00_GG001002003.tif | |
out/AE00N41_281246W069_9687852008070000000000OL00_GG001002003.tif | |
out/AE00N41_281247W070_0937842008070000000000OL00_GG001002003.tif | |
out/AE00N41_281248W070_0312852008070000000000OL00_GG001002003.tif | |
out/AE00N41_281248W070_2187822008070000000000OL00_GG001002003.tif |
This file contains hidden or 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
var map, map_canvas, latlng, center; | |
function init() { | |
map = new OpenLayers.Map('map_canvas'); | |
layer = new OpenLayers.Layer.OSM("OSM Map"); | |
map.addLayer(layer); | |
pattern = new OpenLayers.Layer.XYZ("Folded", "fake_url", { | |
isBaseLayer: false, |
This file contains hidden or 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
var mapPanel, store, gridPanel, mainPanel; | |
Ext.onReady(function() { | |
// create map instance | |
var map = new OpenLayers.Map(); | |
var wmsLayer = new OpenLayers.Layer.Google( | |
"Google Physical", | |
{type: G_PHYSICAL_MAP, sphericalMercator:true}) | |
// create vector layer |
This file contains hidden or 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
drush_shell_exec('tar -tf %s', $filename); | |
$info = drush_shell_exec_output(); | |
if ($info) { | |
// Use info to check for tarbomb. | |
abc |