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
| find . -name '*.html' -exec sed -i '' 's/http:/https:/g' {} + |
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
| for f in *.mp4 ; do echo file \'$f\' >> list.txt; done && ffmpeg -f concat -safe 0 -i list.txt -c copy stitched-video.mp4 && rm list.txt | |
| # https://stackoverflow.com/questions/28922352/how-can-i-merge-all-the-videos-in-a-folder-to-make-a-single-video-file-using-ffm |
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
| import pandas as pd | |
| from sheets import send_to_sheets | |
| df = pd.DataFrame.from_dict(data, orient='index') | |
| send_to_sheets(df, 'Optional Sheet Name') |
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
| curl -u '{API key}:{API secret key}' \ | |
| --data 'grant_type=client_credentials' \ | |
| 'https://api.twitter.com/oauth2/token' |
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
| # Main | |
| def main(interval): | |
| global API | |
| API = initialize_analyticsreporting() | |
| start_date = datetime.strptime(START_DATE, '%Y-%m-%d').date() | |
| end_date = datetime.strptime(END_DATE, '%Y-%m-%d').date() | |
| cache = defaultdict(int) | |
| counts = [] |
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
| # Regex to count paths with 4 slashes | |
| (\/[^\/]*){4} | |
| # Regex to count paths with starting text | |
| \/issues(\/[^\/]*){3} |
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
| import re | |
| words = re.findall(r'\w+', open('term-list.csv').read().lower()) | |
| counts = Counter(words).most_common(500) |
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
| { | |
| "keywords": [ | |
| { | |
| "text": "natural gas", | |
| "relevance": 0.957925 | |
| }, | |
| { | |
| "text": "natural gas meters", | |
| "relevance": 0.832745 | |
| }, |
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
| /* 1 */ | |
| (function(factory) { | |
| if (typeof define === 'function' && define.amd) { | |
| // AMD | |
| define(['jquery'], factory); | |
| } else if (typeof module === 'object' && module.exports) { | |
| // CommonJS | |
| module.exports = factory(require('jquery')); | |
| } else { | |
| // Browser globals |
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
| // removes WordPress inline style width on captions | |
| add_filter( 'img_caption_shortcode_width', '__return_zero' ); |
NewerOlder