Skip to content
View pnu's full-sized avatar
:octocat:
:octocat:

Highlights

  • Pro

Organizations

@frc @devgeniem @hiondev

Block or report pnu

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. ng-prerender-gql-contentful ng-prerender-gql-contentful Public

    demo prerendering some contentful gql content, check commit log for details..

    TypeScript

  2. eg. cloud function for querying the ... eg. cloud function for querying the tensorflow model running on cloud ml
    1
    import * as functions from 'firebase-functions';
    2
    
                  
    3
    import { google } from 'googleapis';
    4
    const ml = google.ml('v1');
    5
    
                  
  3. AWS Lambda@Edge function to trigger ... AWS Lambda@Edge function to trigger Cognito login and later validate the grant code after redirect. Just a test, not validated for production.
    1
    'use strict';
    2
    const url = require('url');
    3
    const https = require('https');
    4
    
                  
    5
    const client_id = '…';
  4. frc/pubsub-to-bq frc/pubsub-to-bq Public

    Push PubSub data to Bq tables. Discovers the data schema and creates new tables as needed.

    TypeScript

  5. bedrock-cloudrun-template bedrock-cloudrun-template Public

    Deploy bedrock WP app to GCP Cloud Run

    PHP

  6. curry.js curry.js
    1
    const curry = (fn, ...args) =>
    2
      args.length >= fn.length
    3
        ? fn(...args)
    4
        : (...x) => curry(fn, ...args, ...x);
    5