Skip to content
View dexterous's full-sized avatar

Organizations

@PuneJUG @neo4j-india
Block or Report

Block or report dexterous

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

  1. iOS-Acceptance-Testing iOS-Acceptance-Testing Public

    iOS automation scripts put together to demo UIAutomation and iCuke

    Objective-C 18 3

  2. python-the-weird-bits python-the-weird-bits Public

    Python, the weird bits!

    Python 4 4

  3. packer-vagrant-swarm packer-vagrant-swarm Public

    Bootstrap a Docker Swarm on your localhost using Packer and Vagrant over VirtualBox

    Shell 1

  4. data-mining-experiments data-mining-experiments Public

    A bunch of EP experiments for my IS665 course at Pace University.

    Clojure

  5. dq dq Public

    Forked from kdabir/has

    Developer Quotient. Tells how developer friendly your machine is!

    Shell

  6. The truth about dynlangs The truth about dynlangs
    1
    #!/usr/bin/env lein-exec
    2
    
                  
    3
    (println (group-by (fn [e] (if e true false)) [true, false, -1, 0, 1, 2, nil, (new Object), [], #{}, '(), [(new Object)], {}, {:foo, (new Object)}]))
    4
    
                  
    5
    ;;{true [true -1 0 1 2 #<Object java.lang.Object@4d8ce14a> [] #{} () [#<Object java.lang.Object@48ff4cf>] {} {:foo #<Object java.lang.Object@7114460>}], false [false nil]}