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
[ | |
{ | |
"nodeType":"embedded-entry-block", | |
"content":[ | |
], | |
"data":{ | |
"target":{ | |
"sys":{ | |
"space":{ |
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 global broad stuff | |
import os | |
import os.path | |
import shutil | |
import re | |
from optparse import OptionParser | |
# Import PDF Miner specific stuff to use as library | |
from pdfminer.pdfinterp import PDFResourceManager, PDFPageInterpreter | |
from pdfminer.converter import TextConverter |
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
/** | |
* ########################################################################### | |
* # Name: Hubspot Automation # | |
* # Description: This script let's you connect to Hubspot CRM and retrieve # | |
* # its data to populate a Google Spreadsheet. # | |
* # Date: March 11th, 2018 (Updated 8/28/2018) # | |
* # Author: Alexis Bedoret (Adapted to Engagements by Philip Johnson) # | |
* # Source: https://gist.github.com/pjatx/2f5a4df0885332ff753519ddc69a141f # | |
* # Detail of the original turorial: https://goo.gl/64hQZb # | |
* ########################################################################### |
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
// Match with Regex | |
\[([\w\s]*)\]\(([\w/\\:\.\-\?\&]*)\) | |
// Replace | |
<a target="_blank" href="$2">$1</a>\n |
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
<% if paginate && num_pages > 1 %> | |
<nav aria-label="Blog Navigation" class="blog-navigation"> | |
<ul class="pagination"> | |
<% if prev_page %> | |
<li class="page-item"> | |
<%= link_to 'Previous', prev_page, class: 'page-link', tabindex: '-1' %> | |
</li> | |
<% else %> | |
<li class="page-item disabled"> |