Skip to content
View Atrix1987's full-sized avatar

Organizations

@PureMetrics @nextstephq

Block or report Atrix1987

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. gcm-android-client gcm-android-client Public

    A library which helps you register Google Cloud Messaging tokens and listen for GCM messages.

    Java 41 10

  2. PureMetrics/puremetrics-android-sdk PureMetrics/puremetrics-android-sdk Public

    PureMetrics Measurement Android SDK

    Java 3

  3. A Sample state machine spec which sh... A Sample state machine spec which shows wiring up lambdas execution in parallel, a choice state, a pass state, input paths and result paths
    1
    {
    2
      "Comment": "Load Data from Firebase and send it to AWS Cloud Search",
    3
      "StartAt": "CalculateInterval",
    4
      "States": {
    5
        "Get data from Firebase": {
  4. Snippet of an amplitude data import ... Snippet of an amplitude data import pipeline
    1
    //Configuring the options etc
    2
    
                  
    3
    Pipeline p = Pipeline.create(options);
    4
    p.apply(TextIO.Read.named("ReadFiles").from(options.getInputFile()).withCompressionType(CompressionType.GZIP))
    5
      .apply(new ProcessRecords(eventType))
  5. Monthly Accounting Query across years. Monthly Accounting Query across years.
    1
    SELECT
    2
      integer(mnthid/100) YEAR,
    3
      integer(mnthid%100) MONTH,
    4
      NewUsers,
    5
      Recurring,