Skip to content
View dexterous's full-sized avatar

Organizations

@PuneJUG@neo4j-india

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. iOS-Acceptance-TestingiOS-Acceptance-TestingPublic

    iOS automation scripts put together to demo UIAutomation and iCuke

    Objective-C 18 3

  2. python-the-weird-bitspython-the-weird-bitsPublic

    Python, the weird bits!

    Python 4 4

  3. packer-vagrant-swarmpacker-vagrant-swarmPublic

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

    Shell 1

  4. data-mining-experimentsdata-mining-experimentsPublic

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

    Clojure

  5. dqdqPublic

    Forked from kdabir/has

    Developer Quotient. Tells how developer friendly your machine is!

    Shell

  6. The truth about dynlangsThe truth about dynlangs
    1
    #!/usr/bin/env lein-exec
    2
    3
    (println (group-by (fn [e] (if e truefalse)) [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]}