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
jQuery('#wget').remove(); | |
jQuery('body').append('<textarea id="wget" style="width: 100%; height: 640px"></textarea>'); | |
jQuery('a').each(function(){ | |
jQuery('#wget').append("wget -O " + jQuery(this).text().trim().replace(/\s+/g, '-').replace(/\\/g, '-').toLowerCase() + ".pdf http://madstyle1972.com/Repair/" + jQuery(this).attr('href') + "\n"); | |
}); | |
jQuery('#wget').select(); |
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
<?php | |
//Change lines 6 and 7 to have your email address and password, and folder name. | |
//Install stunnel to use this, the default config has gmail imap already setup. | |
$messagesToDeleteAtOnce = 100; | |
$socket = fsockopen("127.0.0.1", 143); | |
waitForResponse($socket); | |
sendCommand($socket, "a login youremailaddresshere password"); | |
sendCommand($socket, "a select foldername"); | |
while(true){ |
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
<NotepadPlus> | |
<UserLang name="OpenSCAD" ext="scad" udlVersion="2.1"> | |
<Settings> | |
<Global caseIgnored="no" allowFoldOfComments="no" foldCompact="no" forcePureLC="0" decimalSeparator="0" /> | |
<Prefix Keywords1="no" Keywords2="no" Keywords3="no" Keywords4="no" Keywords5="no" Keywords6="no" Keywords7="no" Keywords8="no" /> | |
</Settings> | |
<KeywordLists> | |
<Keywords name="Comments">03/* 04*/ 00// 01 02</Keywords> | |
<Keywords name="Numbers, prefix1"></Keywords> | |
<Keywords name="Numbers, prefix2"></Keywords> |
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
<?php | |
/* | |
Plugin Name: Novak Solutions Memberium De-Dupe Contact | |
Plugin URI: | |
Description: This plugin will automatically de-dupe contacts from orders when redirect to a thankyou page. | |
Author: Joey Novak | |
Version: 0.1a | |
Author URI: http://joeynovak.com | |
*/ |
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
#define bump(x) LATB7 = 1; __delay_us(x); LATB7 = 0; __delay_us(x); | |
#define bumpIfBitSet(x, y) if(x){ bump(y * 2) } else { bump(y) } | |
TRISBbits.TRISB7 = 0; | |
bump(10); | |
bumpIfBitSet(PCONbits.STKOVF, 50); | |
bumpIfBitSet(PCONbits.STKUNF, 50); | |
bumpIfBitSet(PCONbits.nRWDT, 50); | |
bumpIfBitSet(PCONbits.nRMCLR, 50); | |
bumpIfBitSet(PCONbits.nRI, 50); |
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
create table | |
mv_simple_statistics_data_most_recent | |
select | |
subject, | |
`key`, | |
value, | |
previous_value, | |
value-previous_value as value_delta, | |
`date`, | |
previous_date, |