I hereby claim:
- I am dougbeal on github.
- I am murderofcrows (https://keybase.io/murderofcrows) on keybase.
- I have a public key ASBRT2_bdU4um4Lw_Qiud-fMwSMBsNpvJPSIcNhLfXm_eQo
To claim this, I am signing this object:
| function auto_approve_bridgy_comments($approved, $commentdata) { | |
| return strpos($commentdata['comment_agent'], 'Bridgy (https://brid.gy/about) AppEngine-Google') !== false ? 1 : $approved; | |
| } | |
| add_filter('pre_comment_approved', 'auto_approve_bridgy_comments', '99', 2); |
| <?php | |
| /* | |
| Default Template | |
| * The Goal of this Template is to be a general all-purpose model that will be replaced by customization in other templates | |
| */ | |
| $kind = get_post_kind_slug( get_the_ID() ); | |
| $meta = new Kind_Meta( get_the_ID() ); | |
| $author = Kind_View::get_hcard( $meta->get_author() ); | |
| $cite = $meta->get_cite(); |
I hereby claim:
To claim this, I am signing this object:
| protocol TextContaining { | |
| var isEmpty: Bool { get } | |
| } | |
| extension String: TextContaining { | |
| } | |
| extension Optional where Wrapped: TextContaining { | |
| var isEmpty: Bool { | |
| switch self { |
| require 'digest/md5' | |
| hash = {} | |
| Dir.glob("**/*", File::FNM_DOTMATCH).each do |filename| | |
| next if File.directory?(filename) | |
| # puts 'Checking ' + filename | |
| key = Digest::MD5.hexdigest(IO.read(filename)).to_sym | |
| if hash.has_key? key |
| #developed/run from chrome CoffeeScript console | |
| for cell in $('.usernewepisode') | |
| cellid = cell.href.split('/').slice(-1) | |
| delete_url = "https://overcast.fm/podcasts/delete_item/#{cellid}" | |
| console.log delete_url | |
| window.open delete_url, "_blank" |
| #!/bin/sh | |
| sed -n 's/.*htmlUrl="\([^"]*\)".*/\1/p' feedly.opml |
| (require 'cl) | |
| (defun load-init-file () | |
| (let* ( | |
| (user (getenv "USER")) | |
| (repo "/git/home") | |
| (locations | |
| (list | |
| (concat "/Users/" user repo) | |
| (concat "/home/" user repo) | |
| (concat "C:/cygwin/home/" user repo ) |