Skip to content
View dkischenko's full-sized avatar
:octocat:
:octocat:
  • SWEET.TV
  • Dnipro, Ukraine
Block or Report

Block or report dkischenko

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. Homebrew + RVM > Awesome Homebrew + RVM > Awesome
    1
    The MBP is my development machine, so I needed all of my tools installed with the ability to update them with ease. In the past, I used MacPorts to take care of my MySQL, Memcached, and Ruby installions and it worked just fine. This time around however, I wanted something new and fun. Homebrew.
    2
    
                  
    3
    Homebrew is a new package manager for OS X. Unlike Fink or MacPorts, Homebrew integrates with the core operating system, reducing the number of extra libraries to install etc. Another neat feature is the ability to write software package recipes in Ruby, awesome.
    4
    
                  
    5
    Here are some raw installation instructions (clean system). I like to keep everything under user ownership to make life more enjoyable, say no to sudo.
  2. Test a WebSocket using curl. Test a WebSocket using curl.
    1
    curl --include \
    2
         --no-buffer \
    3
         --header "Connection: Upgrade" \
    4
         --header "Upgrade: websocket" \
    5
         --header "Host: example.com:80" \