Skip to content

Instantly share code, notes, and snippets.

View vijaytholpadi's full-sized avatar
:octocat:
Always be learning.

Vijay Tholpadi vijaytholpadi

:octocat:
Always be learning.
  • Singapore/Bangalore
View GitHub Profile
@vijaytholpadi
vijaytholpadi / about.md
Last active March 12, 2019 07:42 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer
@vijaytholpadi
vijaytholpadi / Codility-Solutions.md
Last active November 20, 2016 07:01
Links to the problems solved on Codility in Objective-C
@vijaytholpadi
vijaytholpadi / GottaGoFastJS.swift
Created May 14, 2016 11:59 — forked from b3ll/GottaGoFastJS.swift
Blazingly-Fast JSON Parser written in Swift
import Foundation
public typealias JSON = AnyObject
public func JSONWithData(data: NSData) -> JSON? {
do {
let j = try NSJSONSerialization.JSONObjectWithData(data, options: [])
return j
} catch _ {
return nil