Skip to content
View anacampesan's full-sized avatar
🏡
WFH
🏡
WFH

Organizations

@HewlettPackard

Block or report anacampesan

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. oneview-sdk-ruby oneview-sdk-ruby Public

    Forked from HewlettPackard/oneview-sdk-ruby

    Ruby SDK to Interact with HPE OneView

    Ruby

  2. HewlettPackard/oneview-chef HewlettPackard/oneview-chef Public

    This project is no longer being developed and has limited support. In the near future this repository will be fully deprecated. Please consider using other OneView projects, such as Terraform and A…

    Ruby 17 15

  3. GIF Frame Disposal Correction Algorithm GIF Frame Disposal Correction Algorithm
    1
    function explodeGif(gifUrl) {
    2
        return gifler(gifUrl)._animatorPromise.then(function(gif) {
    3
    
                  
    4
            let current = createTempCanvas(gif.width, gif.height, 'current');
    5
            let currentCtx = current.getContext('2d');
  4. Column Drag & Drop Reordering - reac... Column Drag & Drop Reordering - react-table
    1
    // In your component, add this var and functions:
    2
    
                  
    3
     let columnBeingDragged = null;
    4
    
                  
    5
      const onDragStart = e => {
  5. js-the-hard-parts js-the-hard-parts Public

    Notes and challenges of the course JavaScript: The Hard Parts (frontendmasters.com)

    JavaScript 1 1

  6. fps_limiter.html fps_limiter.html
    1
    <html>
    2
        <body>
    3
            <script>
    4
                let fps = 15;
    5
                let now, then = Date.now();