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
var Walker = require('puppeteer-walker') | |
var fs = require('fs') | |
var walker = Walker() | |
fs.writeFile('output.csv', 'URL, Title, H2\r\n', 'utf8', function (err) { | |
console.log(`Header written`) | |
}) | |
walker.on('end', () => console.log('finished walking')) |
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
import praw | |
import csv | |
import datetime | |
# Create an app: https://www.reddit.com/prefs/apps | |
# Use http://localhost:8080 as redirect uri | |
username = "" | |
password = "" | |
clientid = "" | |
clientsecret = "" |
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
<form action="https://searchwilderness.com/" method="get" target="_top"> | |
<input name="s" placeholder="Search The Blog" required="" type="text"> | |
<input type="submit" value="Search"> | |
</form> |
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 | |
if (!empty($_POST)) { | |
header("access-control-allow-credentials:true"); | |
header("access-control-allow-headers:Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token"); | |
header("access-control-allow-methods:POST, GET, OPTIONS"); | |
header("access-control-allow-origin:".$_SERVER['HTTP_ORIGIN']); | |
header("access-control-expose-headers:AMP-Access-Control-Allow-Source-Origin"); | |
// change to represent your site's protocol, either http or https | |
header("amp-access-control-allow-source-origin:https://".$_SERVER['HTTP_HOST']); | |
header("Content-Type: application/json"); |
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
<!doctype html> | |
<html amp> | |
<head> | |
<meta charset="utf-8"> | |
<script async src="https://cdn.ampproject.org/v0.js"></script> | |
<script async custom-element="amp-form" src="https://cdn.ampproject.org/v0/amp-form-0.1.js"></script> | |
<script async custom-template="amp-mustache" src="https://cdn.ampproject.org/v0/amp-mustache-0.1.js"></script> | |
<link rel="canonical" href="http://localhost"> | |
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1"> | |
<style amp-custom> |
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
// Source: https://www.simoahava.com/analytics/google-analytics-client-id-amp-pages/ | |
// REST API for GTM container | |
add_action( 'rest_api_init', function() { | |
register_rest_route( | |
'amp-gtm', | |
'/amp.json', | |
array( | |
'methods' => 'GET', | |
'callback' => 'retrieve_gtm_json', | |
) |
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
import requests | |
import json | |
import csv | |
import os | |
# For details about AMPBench and the API: | |
# https://github.com/ampproject/ampbench | |
urlinput = os.path.join(os.path.dirname(__file__), input('Enter input text file: ')) | |
urls = open(urlinput, "r") |
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
library(igraph) | |
map <- function(x, range = c(0,1), from.range=NA) { | |
if(any(is.na(from.range))) from.range <- range(x, na.rm=TRUE) | |
## check if all values are the same | |
if(!diff(from.range)) return( | |
matrix(mean(range), ncol=ncol(x), nrow=nrow(x), | |
dimnames = dimnames(x))) | |
## map to [0,1] |
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
# Requires pandas. For Windows users, I recommend installing the Anaconda Python distirbution. | |
# Requires the pytrends library. To install, run "pip install pytrends". | |
from pytrends.pyGTrends import pyGTrends | |
import time | |
import os | |
from random import randint | |
import pandas as pd | |
# Add your Gmail username to the google_username variable and your Gmail password to the google_password variable. | |
google_username = "" |
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
# library imports | |
import pandas as pd | |
from bokeh.io import output_notebook, show | |
from bokeh.plotting import figure, output_file, ColumnDataSource | |
from bokeh.models import HoverTool, BoxAnnotation, BoxSelectTool, BoxZoomTool, WheelZoomTool, ResetTool | |
from bokeh.resources import CDN | |
from bokeh.embed import file_html | |
# Import csv into pandas dataframe, direct to KNIME version to follow |