Skip to content
View ttrmw's full-sized avatar
Block or Report

Block or report ttrmw

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. i3 ubuntu build prereqs i3 ubuntu build prereqs
    1
    Ubuntu w/Unity dependencies for building i3gaps:
    2
    
                  
    3
    xcb.h 			-- libxcb1-dev
    4
    xcb_keysyms.h   -- libxcb-keysyms1-dev
    5
    pango.h 		-- libpango1.0-dev
  2. brightness_scripts brightness_scripts Public

    shell scripts for changing screen brightness

    Shell

  3. devise_duo_security devise_duo_security Public

    Duo Security plugin for Devise

    Ruby

  4. list unindexed foreign keys in rails list unindexed foreign keys in rails
    1
    c = ActiveRecord::Base.connection
    2
    c.tables.collect do |t|  
    3
      columns = c.columns(t).collect(&:name).select {|x| x.ends_with?("_id" || x.ends_with("_type"))}
    4
      indexed_columns = c.indexes(t).collect(&:columns).flatten.uniq
    5
      unindexed = columns - indexed_columns
  5. sds/overcommit sds/overcommit Public

    A fully configurable and extendable Git hook manager

    Ruby 3.9k 278