Keybase proof
I hereby claim:
- I am artlung on github.
- I am artlung (https://keybase.io/artlung) on keybase.
- I have a public key ASBIdwaUOPWU_0J_rgMNDyNL1k6NuJdrZBcG2fgEjJeRawo
To claim this, I am signing this object:
Found earworm on 2020-05-12: An Angry Thunderstorm by White Noise Meditation: played 238 times. | |
Found earworm on 2018-10-18: Little Fluffy Clouds (7" Edit) by The Orb: played 245 times. | |
Found earworm on 2018-10-18: Little Fluffy Clouds (7" Edit) by The Orb: played 25 times. | |
Found earworm on 2015-04-15: Johannesburg by Gil Scott-Heron: played 16 times. | |
Found earworm on 2015-04-15: Ring Capacity (Green Lantern Song) by Kirby Krackle: played 39 times. | |
Found earworm on 2015-04-15: Senses Working Overtime by XTC: played 23 times. | |
Found earworm on 2015-04-15: Ch-Check It Out by Beastie Boys: played 22 times. | |
Found earworm on 2015-04-15: She's An Angel (live) by They Might Be Giants: played 32 times. | |
Found earworm on 2015-04-15: Kansas by The Wolfgang Press: played 24 times. | |
Found earworm on 2015-04-15: A Real Hero (feat. Electric Youth) by College: played 29 times. |
<?php | |
define('TRACK', false); | |
function isSpider($HTTP_USER_AGENT) { | |
$spiders = array( | |
'Baiduspider', | |
'msnbot', | |
'youdao', | |
'YandexBot', |
<?php | |
$i = 2001; | |
$types = ['jpg', 'png', 'gif']; | |
$years = range(2001, 2021); | |
foreach ($years as $year) { | |
foreach ($types as $type) { | |
echo "git lfs track blog/wp-content/uploads/{$year}/**/*.{$type};\n"; | |
} |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
I am artlung on github. I am artlung (https://keybase.io/artlung) on keybase. I have a public key ASBIdwaUOPWU_0J_rgMNDyNL1k6NuJdrZBcG2fgEjJeRawo
To claim this, I am signing this object:
<?php /* Template Name: Words Legacy Template */ ?> | |
<!DOCTYPE html> | |
<html prefix="og: http://ogp.me/ns#" <?php language_attributes(); ?>> | |
<head> | |
<title><?php echo wp_title('', false, 'left'); ?> : Joe Crawford (ArtLung.com)</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" /> | |
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" /> | |
<?php wp_head(); ?> |
#! /usr/local/bin/perl | |
require 'ctime.pl'; | |
require 'newgetopt.pl'; | |
#require '/usr/local/lib/perl5/ctime.pl'; | |
#require '/usr/local/lib/perl5/newgetopt.pl'; | |
#require '/usr/local/lib/perl5/sys/socket.ph'; | |
# | |
# ----> parse_hotlist <---- | |
# takes a file (default /chronos/c1/jerry/.hotlist |
# where /usr/home/username/public_html contains all your wordpress installs | |
# to run for the current directory and lower: | |
# find . -name wp-config.php | xargs chmod 600 | |
find /usr/home/username/public_html -name wp-config.php | xargs chmod 600 |
var tds = document.querySelectorAll('td'); | |
// Use in the console for https://en.wikipedia.org/wiki/List_of_largest_daily_changes_in_the_Dow_Jones_Industrial_Average | |
for (var i = 0; i<tds.length; i++) { | |
var td = tds[i]; | |
if (td.innerText.indexOf('2020-0') === -1) { | |
td.style.opacity = 0.3; | |
td.style.backgroundColor = td.style.backgroundColor.toString().replace(')', ',0.3)'); | |
} | |
} |
<?php | |
/** | |
* User: artlung | |
* Date: 2019-08-24 | |
* A variation of https://gist.github.com/artlung/210438 : | |
* | |
* "I have a list of URLs in 10 columns of a CSV file and I need a separate | |
* sitemap for each column. Can we modify this code accordingly?" | |
* | |
* This is a quick way to turn a simple comma-separated file |