Skip to content
View andrhamm's full-sized avatar
:shipit:
Shipping πŸ”₯ & ⚑️
:shipit:
Shipping πŸ”₯ & ⚑️
Block or Report

Block or report andrhamm

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. hidden-colonies-api hidden-colonies-api Public

    Two player turn-based civilization game built on Serverless technologies

    JavaScript

  2. favi favi Public

    Serverless favicon scraping (coding challenge)

    JavaScript 2

  3. gitrdone gitrdone Public

    Self-hosted, AWS Lambda-backed (Serverless) "Dones" with Slack and Github integration!

    JavaScript 6 2

  4. emotional_support_pig.html emotional_support_pig.html
    1
    <---
    2
             _._ _..._ .-',     _.._(`))
    3
            '-. `     '  /-._.-'    ',/
    4
               )         \            '.
    5
              / _    _    |             \
  5. Kill Sticky Header (Bookmarklet) Kill Sticky Header (Bookmarklet)
    1
    // Found this bookmarklet on a blog post somewhere and it is awesome. 
    2
    // Save to bookmark bar and click to kill any annoying floating headers that take up you vertical resolution
    3
    javascript:(function()%7B(function%20()%20%7Bvar%20i%2C%20elements%20%3D%20document.querySelectorAll('body%20*')%3Bfor%20(i%20%3D%200%3B%20i%20%3C%20elements.length%3B%20i%2B%2B)%20%7Bif%20(getComputedStyle(elements%5Bi%5D).position%20%3D%3D%3D%20'fixed')%20%7Belements%5Bi%5D.parentNode.removeChild(elements%5Bi%5D)%3B%7D%7D%7D)()%7D)()
  6. Javascript Deep Change Key Case Javascript Deep Change Key Case
    1
    // deeply changes the case of object keys, including in sub arrays of objects
    2
    const _ = require('lodash');
    3
    
                  
    4
    function deepChangeKeyCase(value, fn) {
    5
      if (Array.isArray(value)) {