Last Tweet Screen Name
- 2012-02-08 16:26:43 @UxbridgeArts
- 2012-12-22 02:18:52 @crazietheamazie
- 2013-04-04 00:18:27 @JulianAssange_
- 2013-07-07 11:33:14 @morrison1982
- 2015-07-03 22:02:30 @SonicRuin
- 2015-08-17 21:09:23 @FrigginLipBalm
*** /usr/local/lib/python3.8/site-packages/youtube_dl/YoutubeDL.py 2020-01-14 08:51:17.908524990 -0500 | |
--- youtube_dl/YoutubeDL.py 2020-01-14 09:06:18.785934554 -0500 | |
*************** | |
*** 635,640 **** | |
--- 635,646 ---- | |
try: | |
template_dict = dict(info_dict) | |
+ ##### 2020-Jan-13 PAL - Fix 'Filename too long errors' - BEGIN | |
+ if 'title' in template_dict.keys(): |
#!/usr/bin/env bash | |
# tpoff.sh v1.0.9 - Sunday, February 9, 2020 | |
# Create commands (aliases) to toggle touch devices ON/OFF | |
XINPUT=/usr/bin/xinput | |
if [ -x $XINPUT ]; then | |
DEVNAMES=() | |
DEVNAMES+=("Synaptics TouchPad") | |
DEVNAMES+=("AlpsPS/2 ALPS DualPoint TouchPad") | |
DEVNAMES+=("AlpsPS/2 ALPS DualPoint Stick") |
Last Tweet Screen Name
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta charset="UTF-8"> | |
<title>My Blog Homepage</title> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
</head> | |
<body> | |
<header> |
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# markdown_parser.py - Sunday, May 7, 2023 | |
# Via ChatGPT | |
import os | |
import re | |
import sys | |
import argparse | |
import subprocess |
Sometimes it is useful to route traffic through a different machine for testing or development. At work, we have a VPN to a remote facility that we haven't bothered to fix for routing, so the only way to access a certain machine over that VPN is via an SSH tunnel to a machine that is reachable over the VPN. Other times, I have used this technique to test internet-facing requests against sites I am developing. It is pretty easy, and if you don't use firefox regularly, you can treat Firefox as your "Proxy" browser and other browsers can use a normal configuration (Although you can also configure an entire system to use the proxy, other articles exists that discuss this potential).