Skip to content
View daverickdunn's full-sized avatar
Block or Report

Block or report daverickdunn

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

  1. full-powershell full-powershell Public

    PowerShell has 6 message streams! That makes streaming directly through stdout and stderr a complete mess. This package adds a simple wrapper around your PowerShell commands to capture, separate an…

    TypeScript 8 4

  2. Jass Jass Public

    SoulSeek client with web interface and recommender system

    Python 24

  3. DynamoDB - Dynamically Build an Upda... DynamoDB - Dynamically Build an Update Expression
    1
    const generateUpdateQuery = (fields) => {
    2
        let exp = {
    3
            UpdateExpression: 'set',
    4
            ExpressionAttributeNames: {},
    5
            ExpressionAttributeValues: {}
  4. DynamoDB - Dynamically Map-Reduce a ... DynamoDB - Dynamically Map-Reduce a Batch Update Request in to Blocks of 25 Items
    1
    // Your DocClient ...
    2
    
                  
    3
    function SplitBatch(params) {
    4
        const max_items = 25;
    5
        let tables = Object.entries(params.RequestItems);