This file contains hidden or 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
| <IfModule mod_headers.c> | |
| Header set X-XSS-Protection "1; mode=block" | |
| Header set X-Content-Type-Options "nosniff" | |
| Header set X-Frame-Options "SAMEORIGIN" | |
| Header always set Strict-Transport-Security "max-age=63072000; includeSubDomains" | |
| Header set Referrer-Policy "same-origin" | |
| </IfModule> | |
| AddOutputFilterByType DEFLATE text/plain |
This file contains hidden or 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
| ModPagespeedDomain domain.com | |
| ModPagespeedMapOriginDomain 1.1.1.1 domain.com | |
| ModPagespeedEnableFilters convert_png_to_jpeg | |
| ModPagespeedEnableFilters sprite_images | |
| ModPagespeedEnableFilters insert_image_dimensions | |
| ModPagespeedEnableFilters move_css_above_scripts | |
| ModPagespeedEnableFilters move_css_to_head | |
| ModPagespeedEnableFilters canonicalize_javascript_libraries | |
| #ModPagespeedDisableFilters rewrite_javascript |
This file contains hidden or 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
| /** | |
| * | |
| * Advanced ad scheduling | |
| * | |
| * This script will apply ad schedules and set the bid modifier for the schedule | |
| * at each hour according to a multiplier timetable in a Google sheet. | |
| * | |
| * Version: 1.0 | |
| * brainlabsdigital.com | |
| * |
This file contains hidden or 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
| // This script reviews your GDN placements for the following conditions: | |
| // 1) Placements that are converting at less than $40 | |
| // 2) Placements that have cost more than $50 but haven't converted | |
| // 3) Placements that have more than 5K impressions and less than .10 CTR | |
| function main() { | |
| var body = "<h2>Google Display Network Alert</h2>"; | |
| body += "<h3>Placements that are converting at less than $40:</h3> " ; | |
| body += "<ul>"; |
This file contains hidden or 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
| /*************************************************************************************** | |
| * AdWords Countdown Ad Updater -- Find stale countdown ads and replace them with | |
| * Ads that are updated with new dates. | |
| * Version 1.0 | |
| * Created By: Derek Martin | |
| * DerekMartinLA.com or MixedMarketingArtist.com | |
| ****************************************************************************************/ | |
| var DESCRIPTION2_TEXT = "Sale Ends In" |
This file contains hidden or 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
| /*********************************************************************************************** | |
| * AdWords Account Optimization - Review Google Display Network Site Placement Quality. | |
| * Analyze Display Network Placements that have accrued more than $20 of cost MTD against | |
| * Standard SEO metrics (PageAuthority, DomainAuthority, # of Backlinks, Age of Site) and report back | |
| * Any questionable placements that are strong targets for exclusion. | |
| * Created By: Derek Martin | |
| * DerekMartinLA.com | |
| ****************************************************************************************/ | |
| // CONSTANTS |
This file contains hidden or 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
| a = setInterval(function () { | |
| window.scrollTo(0,document.body.scrollHeight); | |
| $('.not-following .user-actions-follow-button.js-follow-btn').click(); | |
| }, 4000); | |
| /* changed setinterval to 4k ms - original source here https://medium.com/@karanjthakkar/how-i-grew-from-300-to-5k-followers-in-just-3-weeks-2436528da845 | |
| Just browse to someones follower list, hit F12 on chrome and plug this snippet into the console tab and hit enter |
This file contains hidden or 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
| /* | |
| Just nacigate to twitter.com/following (while logged in), hit f12 (on chrome) and paste this snippet into the console tab | |
| originally found here: http://www.easytins.com/2014/01/how-to-unfollow-many-twitter-users.html | |
| */ | |
| setInterval(function(){t= | |
| $(".following button:eq | |
| (0)");if(!t |
This file contains hidden or 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 ("AWS_ACCESS_KEY_ID", "xxxxx"); | |
| define ("MERCHANT_ID", "xxxxx"); | |
| define ("MARKETPLACE_ID", "xxxxx"); | |
| define ("AWS_SECRET_ACCESS_KEY","xxxxx"); | |
| $base_url = "https://mws.amazonservices.com/Products/2011-10-01"; | |
| $method = "GET"; | |
| $host = "mws.amazonservices.com"; | |
| $uri = "/Products/2011-10-01"; |