I hereby claim:
- I am robertshippey on github.
- I am robertshippey (https://keybase.io/robertshippey) on keybase.
- I have a public key whose fingerprint is 9D1F 8CC8 E2AE EC42 2999 6349 553F A72F 02C6 E111
To claim this, I am signing this object:
<?xml version="1.0"?> | |
<opml version="1.1"> | |
<head> | |
<title>Castro 2 Podcast Feeds</title> | |
</head> | |
<body> | |
<outline xmlUrl="https://audioboom.com/channels/4920499.rss" text="Oddity" title="Oddity" type="rss" version="RSS"/> | |
<outline xmlUrl="http://feeds.soundcloud.com/users/soundcloud:users:206732011/sounds.rss" text="Polite Conversations" title="Polite Conversations" type="rss" version="RSS"/> | |
<outline xmlUrl="https://audioboom.com/channels/4946439.rss" text="What Am Politics?" title="What Am Politics?" type="rss" version="RSS"/> | |
<outline xmlUrl="http://rss.acast.com/talkingpolitics" text="TALKING POLITICS" title="TALKING POLITICS" type="rss" version="RSS"/> |
SELECT | |
`wp_users`.`user_email` AS `Email`, | |
`T1`.`meta_value` AS `First Name`, | |
`T2`.`meta_value` AS `Last Name`, | |
`T3`.`meta_value` AS `Total Spent`, | |
`T4`.`meta_value` AS `Total Orders`, | |
`T5`.`meta_value` AS `Country Code`, | |
`T6`.`meta_value` AS `City`, | |
`T7`.`meta_value` AS `Address1`, | |
`T8`.`meta_value` AS `Address2`, |
I hereby claim:
To claim this, I am signing this object:
See https://github.com/RobertShippey/MCU/blob/master/MCU.csv |
//map global variables with front end class names | |
$globals: ( | |
"text" : $text-color, | |
"bg" : $bg-color, | |
"pg" : $pg-color, | |
"primary" : $primary-color, | |
"secondary" : $secondary-color, | |
"tertiary" : $tertiary-color); | |
// for each vairable |
<?php | |
$folder = '/path/to/folder/'; | |
$watermark = '/path/to/Logo.jpg'; | |
$files = scandir($folder); | |
foreach($files as $file) { | |
//do your work here | |
var_dump($folder.$file); | |
// Load the stamp and the photo to apply the watermark to |
<script> | |
function switchFrame(a) { | |
f = document.getElementById("preview"); | |
l = document.getElementById("endLink"); | |
if( f.src == a.href ) { | |
if( f.style.display == "inline" ) { | |
f.style.display = "none"; | |
l.style.display = "none"; | |
} else { | |
f.style.display = "inline"; |
url = "http://whatever.com/" | |
reference_page = "" | |
current_page = "" | |
wait_time = 5 * 60 #seconds | |
setup( ) | |
while True: | |
download_page( ) | |
if not same_as_reference( ): |
#!/usr/bin/env python | |
from pypodio2 import api | |
import sys, shutil, os, json | |
c = api.OAuthClient(sys.argv[1],sys.argv[2], sys.argv[3], sys.argv[4]) | |
orginfo = c.transport.get(url = '/org/') | |
def writerawtext(filename, data): | |
try: |
<script type="text/javascript" src="http://api.geoloqi.com/js/geoloqi.min.js"></script> | |
<script type="text/javascript"> | |
geoloqi.init(); | |
geoloqi.auth = {'access_token': 'ecfd-02969442b655bda83da16a6abab0fea5b4f44dc3'}; | |
function getLastLocation() { | |
geoloqi.get('place/nearby', function(result, error) { | |
document.write(response.places.name); | |
}); |