Skip to content

Instantly share code, notes, and snippets.

View pradeeprajkumar's full-sized avatar

Pradeep Rajkumar pradeeprajkumar

View GitHub Profile
@pradeeprajkumar
pradeeprajkumar / terminal-git-branch-name.md
Created January 27, 2019 13:30 — forked from joseluisq/terminal-git-branch-name.md
Add Git Branch Name to Terminal Prompt (Mac)

Add Git Branch Name to Terminal Prompt (Mac)

image

Open ~/.bash_profile in your favorite editor and add the following content to the bottom.

# Git branch in prompt.

parse_git_branch() {
@pradeeprajkumar
pradeeprajkumar / Swift: Linear search in array
Last active May 12, 2018 20:57
This method does a Linear search in an array and returns the index of the object in the array.
func linearSearch<T: Equatable>(array: [T], object: T) -> [Int] {
let resultArray = array.indices.filter { (index) -> Bool in
array[index] == object
}
return resultArray
}