Skip to content

Instantly share code, notes, and snippets.

View agaskill's full-sized avatar

Andrew Gaskill agaskill

View GitHub Profile
@agaskill
agaskill / BrightmetricsOData.md
Last active August 19, 2020 16:20
Brightmetrics OData Instructions

OData / API Export instructions

Addressing

If you use a tool that supports connecting to OData v4 data sources, you can connect to the URL https://webapp.brightmetrics.com/OData.ashx

If you are exporting data from an individual report directly, not using OData, the URL for each individual report is available in the UI.

This documentation explains how to use the API, but for the full OData specification please refer to https://www.odata.org/documentation/

Keybase proof

I hereby claim:

  • I am agaskill on github.
  • I am agaskill (https://keybase.io/agaskill) on keybase.
  • I have a public key ASDDrQJmMdwqJnbfv6QLEUlTMRONO1uhOfdf5A3lJeL2Vwo

To claim this, I am signing this object:

@agaskill
agaskill / OptionNotNull.cs
Last active August 14, 2018 18:58
C# Option and NotNull types
namespace Example
{
// making this a value type (struct) prevents it from ever being null itself
struct Option<T> where T : class
{
T value;
public static Option<T> None = new Option<T>(null);