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
ln -s /usr/local/Cellar/[email protected]/1.1.1k/lib/libcrypto.dylib /usr/local/lib/libcrypto.dylib | |
ln -s /usr/local/Cellar/[email protected]/1.1.1k/lib/libssl.dylib /usr/local/lib/libssl.dylib |
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
package main | |
import ( | |
"bytes" | |
"fmt" | |
"image/png" | |
"io/ioutil" | |
"time" | |
) |
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
#!/usr/bin/python | |
""" | |
ETL for Fastly views. | |
""" | |
import datetime | |
import re | |
import luigi |
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 datetime | |
import jaydebeapi; | |
import luigi | |
import luigi.s3 | |
import sources | |
class AthenaLoad(sources.RedshiftLoad): |
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
""" | |
Base classes for Athena queries and loads. | |
""" | |
import datetime | |
import jaydebeapi; | |
import luigi | |
import luigi.s3 |
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
#include <stdio.h> | |
#include <math.h> | |
#include <vips/vips.h> | |
#include <stdlib.h> | |
#include <glib-object.h> | |
gboolean use_copy_hack = FALSE; | |
gboolean save_original = FALSE; | |
void process(VipsImage* src); |