We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
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
wikipedia.org | |
www.wikipedia.org | |
en.wikipedia.org | |
eo.wikipedia.org |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
{ | |
"u1faa6": "headstone", | |
"u0038-ufe0f-u20e3": "keycap-8", | |
"u1f469-u200d-u1f9b1": "woman-curly-hair", | |
"u1f96b": "canned-food", | |
"u1f362": "oden", | |
"u2620-ufe0f": "skull-and-crossbones", | |
"u1f1ff-u1f1f2": "flag-zambia", | |
"u1f5e8-ufe0f": "left-speech-bubble", | |
"u1f3ae": "video-game", |
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 | |
set -euo pipefail | |
INFO='\e[38;05;14m' | |
NC='\033[0m' # No Color | |
# https://github.com/hodgesmr/mastodon_digest | |
cd ~/Projects/github/mastodon_digest/ | |
echo -e "${INFO}🐘 getting latest...${NC}"; | |
git fetch && git pull | |
echo -e "${INFO}generating content index...${NC}"; |
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/python3 | |
from mastodon import Mastodon, StreamListener | |
# etc... | |
class TimelineListener(StreamListener): | |
def __init__(self): | |
print("Listener created.") | |
def on_notification(self, notification): |
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
/* | |
https://userstyles.world/style/7330/default-slug | |
https://gist.github.com/dieseltravis/77c99bef0312486639d5aad46139eb22 | |
*/ | |
a.button[href='/publish'], | |
.compose-form__publish-button-wrapper button.button.button--block, | |
.compose-form__actions .compose-form__submit button{ | |
display: flex; | |
align-items: center; |
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 | |
set -euo pipefail | |
# itch.io user name | |
user=travishardiman | |
# itcg.io project name | |
project=turtles | |
itch="$user/$project" | |
# base folder where each of the export folders are | |
folder=~/Projects/godot-projects/turtlescript/bin/deploy | |
# project.godot 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
div[aria-label='NFT profile picture and Opens NFT details'] > div, | |
div[aria-label='NFT profile picture'] > div { | |
background-image: url('data:image/jpeg;base64,/9j/4QBKRXhpZgAATU0AKgAAAAgAAwEaAAUAAAABAAAAMgEbAAUAAAABAAAAOgEoAAMAAAABAAIAAAAAAAAAAAEsAAAAAQAAASwAAAAB/9sAQwAgFhgcGBQgHBocJCIgJjBQNDAsLDBiRko6UHRmenhyZnBugJC4nICIropucKDaoq6+xM7Qznya4vLgyPC4ys7G/9sAQwEiJCQwKjBeNDRexoRwhMbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbGxsbG/8IAEQgAgACAAwEiAAIRAQMRAf/EABgAAAMBAQAAAAAAAAAAAAAAAAABAgME/8QAFgEBAQEAAAAAAAAAAAAAAAAAAAEC/9oADAMBAAIQAxAAAAHkqSByxpot4he3MzpWW0SqKvp5CWBvWZV5rmqCRghgmBrrzdUJirQ4A6ojrlxOhzXLPZByz15JgqViuLM62VnQcuUdG3JrNdDwua0jFWbRDTKdMrGrRk0WMQbax1Z1nVTLC0sxW0VllsIlrgYAayDR0b82+dVFCq4IqGVAZ2dHIpQAsYIrs4eqW6mpqM95BXiKGXOSasABpoNJZ2mWmdtPIeSLAbTOOjnsFQf/xAAjEAACAgEEAgIDAAAAAAAAAAAAAQIRIAMQEiETMTBBIiNA/9oACAEBAAEFAslR+K2iO9rPZFd2LG8LOQpIdHRZbOKKiVE6+FP+HmkvKjzHAqJNoqzgcGcGcWVj9UzhIt7RzawUuJ5pHmkcNNH6kdc83lOVysj2UKxneEtkSWMDiIZRRWz2ianrDSwW72XtGpjpllliLwXv0m7eGn7zezyTpiaieSI5xL3fwwdqu6R |
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
# From cmd: | |
# powershell.exe -file Add-Firewall-Ip.ps1 -newIp "8.8.8.8" | |
# From Powershell: | |
# & ./Add-Firewall-Ip.ps1 -newIp "8.8.8.8" | |
param($newIp = "") | |
$rules = Get-NetFirewallRule -DisplayName "Remote Desktop*" | |
foreach ($r in $rules) { | |
# get list of IPs as an array | |
$ips = @(($r | Get-NetFirewallAddressFilter).RemoteAddress) |
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
// this doesn't work: | |
/* | |
h = this.GetHash(); | |
x = {last 10-digit prime found in consecutive digits of h in base-10}; | |
requests.post('https://api.alpaca.markets/v2/puzzle/202108/solve', json={'answer': account.id.int * x, 'email': your_waitlist_email}) | |
*/ | |
// get basic hashes with Powershell | |
//@('SHA1', 'SHA256', 'SHA384', 'SHA512', 'MD5') | % { Get-FileHash -Path ~\Downloads\110-days-after-lehman-collapsed.jpg -Algorithm "$_" } |
NewerOlder