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
// ==UserScript== | |
// @name 3D DOM viewer (Fortyseven hack) | |
// @namespace https://gist.github.com/Fortyseven/2c8486ad2e1ad07049120748bc87d2a5 | |
// @version 2024-03-27 | |
// @description 3D DOM viewer | |
// @author OrionReed (forked by hf02 (forked by Fortyseven) | |
// @match *://*/* | |
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
// @grant GM_registerMenuCommand | |
// ==/UserScript== |
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
You are a forensic information analyst. The user will provide you a block of text from a news article, or other source. | |
You are to extract and summarize all the important pieces of information in the text. | |
You will then create a list all of the locations and organizations involved and who and where they are. | |
You will then create a list all of the people involved and who they are. | |
Create a timeline of events based on the dates and times provided in the text, where applicable. |
This file has been truncated, but you can view the full file.
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
{ | |
"gvlSpecificationVersion":3, | |
"tcfPolicyVersion":4, | |
"features":{ | |
"1":{ | |
"illustrations":[ | |
], | |
"id":1, | |
"name":"Match and combine data from other data sources", |
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
#! /usr/bin/env python | |
import argparse | |
# yes we could just slot in the country code but I wanted to | |
# do more with this, and I get the benefit of a dict with the | |
# valid entries in it | |
PLAYLISTS_BY_COUNTRY = { |
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
#!/usr/bin/env python3 | |
from posixpath import basename | |
from rich import print | |
from rich.table import Table | |
from rich.console import Console | |
import argparse | |
import re | |
import os | |
import sys |
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
#!/usr/bin/env python3 | |
''' | |
Creates a montage grid of frames from a video file with frame and | |
time offset labels to help give a basic summary of the video file contents. | |
''' | |
# ---------------------------------------------------------------------------- | |
# REQUIRES: This script requires `ffmpeg`` (including `ffprobe``) and | |
# imagemagick (with `convert` and `montage`) to be available on the path. | |
# |
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
import subprocess | |
from urllib.parse import unquote | |
from gi.repository import Nemo, GObject, Gtk | |
EXCLUDE_FIELDS = ["ExifTool Version Number"] | |
class ExifInfo(GObject.GObject, Nemo.PropertyPageProvider): | |
def get_property_pages(self, files): | |
if len(files) != 1: |
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
#!/usr/bin/env python | |
# import requests | |
import argparse | |
from lxml import etree | |
from termcolor import colored | |
COLORS = [ | |
# 'grey', | |
'red', |
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 | |
if [ -z "$1" ]; then | |
echo "usage: data-url file" >&2 | |
exit 1 | |
fi | |
mimetype=$(file -bN --mime-type "$1") | |
content=$(base64 < "$1") | |
echo "data:$mimetype;base64,$content" |
This file has been truncated, but you can view the full file.
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
<table style='max-width:1280px'> | |
<tr><td>17_AKB_May_2021</td><td><a href='https://twitter.com/search?src=typed_query&q=%23AKB15'>#AKB15</a></td><td><a href='https://abs.twimg.com/hashflags/17_AKB_May_2021/17_AKB_May_2021.png'><img src='https://abs.twimg.com/hashflags/17_AKB_May_2021/17_AKB_May_2021.png'/></a></td></tr> | |
<tr><td>17_AKB_May_2021</td><td><a href='https://twitter.com/search?src=typed_query&q=%23AKB'>#AKB</a></td><td><a href='https://abs.twimg.com/hashflags/17_AKB_May_2021/17_AKB_May_2021.png'><img src='https://abs.twimg.com/hashflags/17_AKB_May_2021/17_AKB_May_2021.png'/></a></td></tr> | |
<tr><td>17_AKB_May_2021</td><td><a href='https://twitter.com/search?src=typed_query&q=%238'>#8</a></td><td><a href='https://abs.twimg.com/hashflags/17_AKB_May_2021/17_AKB_May_2021.png'><img src='https://abs.twimg.com/hashflags/17_AKB_May_2021/17_AKB_May_2021.png'/></a></td></tr> | |
<tr><td>17_AKB_May_2021</td><td><a href='https://twitter.com/search?src=typed_query&q=%23'>#</a></td><td><a href='https://abs.twimg.com/has |