Skip to content
View joefromct's full-sized avatar

Block or report joefromct

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. clj-xmltojson clj-xmltojson Public

    Clojure module that makes working with XML feel like you are working with JSON.

    Clojure 2 1

  2. py-hierarchy-utils py-hierarchy-utils Public

    Hierarchy utilities for working with nested data structures (in python).

    Python 4 1

  3. read xlsx in py.py read xlsx in py.py
    1
    #!/usr/bin/env ipython
    2
    
                  
    3
    from openpyxl import load_workbook
    4
    from toolz import thread_last, curry
    5
    import toolz.curried as tc
  4. Start multiple synchronized SSH conn... Start multiple synchronized SSH connections with Tmux
    1
    #!/bin/bash
    2
    # ssh-multi
    3
    # D.Kovalov
    4
    # Based on http://linuxpixies.blogspot.jp/2011/06/tmux-copy-mode-and-how-to-control.html
    5
    
                  
  5. stairway.clj stairway.clj
    1
    (ns user)
    2
    
                  
    3
    (defn reached-top-of-staircase?
    4
      "Tests to make sure the steps get us to the top of the stairway."
    5
      [{:keys  [stairway-height]} step-vec]
  6. stairway.py stairway.py
    1
    from pprint import pprint as pp
    2
    
                  
    3
    
                  
    4
    def reached_top_of_stairs(stairway_height, step_tuple):
    5
        return sum(step_tuple) == stairway_height