Skip to content
View bamacken's full-sized avatar

Organizations

@Intel-Technology

Block or report bamacken

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. GoCode GoCode Public

    A home for all my completed Go coding challenges

    Go 1

  2. Vitamin Vitamin Public

    healthy for you - data structure and algorithm knowledge

    C# 1

  3. C-Code demonstrates in-place strings... C-Code demonstrates in-place strings reverse.
    1
    #include "pch.h"
    2
    #include <iostream>
    3
    
                  
    4
    // Implement "reverse" to reverse the passed string in-place.
    5
    void reverse(char *string) 
  4. Unity - Weighted 2D Camera movement ... Unity - Weighted 2D Camera movement based on the influence of "interest points".
    1
    //usage: Set Camera to Orthographic and use CameraInfluence.AddInfluence(gameObject,influence);
    2
    //permanent interest points such as onscreen players should have influence set to 0.5f
    3
    
                  
    4
    using UnityEngine;
    5
    using System.Collections;