cygcheck. It's like a read-only version of dpkg or rpm. For example:$ which ssh
/usr/bin/ssh
$ cygcheck -f `which ssh`
openssh-5.9p1-1
cygcheck. It's like a read-only version of dpkg or rpm. For example:$ which ssh
/usr/bin/ssh
$ cygcheck -f `which ssh`
openssh-5.9p1-1
[{"colin",[3,2,1]},{"dave",[4,3,2]}]
[{struct,[{<<"colin">>,[1,2,3]}]},{struct,[{<<"dave">>,[4,3,2]}]}]
or some shit. Really? If I have to munge it into that format, I might as well just encode it myself.$ git remote -v
origin https://github.com/flashingpumpkin/spooky.git (fetch)
origin https://github.com/flashingpumpkin/spooky.git (push)
$ git remote rm origin
$ git remote -v
$ git remote add origin git@github.com:bluegraybox/spooky.git
$ git remote -v
origin git@github.com:bluegraybox/spooky.git (fetch)
origin git@github.com:bluegraybox/spooky.git (push)
$ git push
Counting objects: 7, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 506 bytes, done.
Total 4 (delta 3), reused 0 (delta 0)
To git@github.com:bluegraybox/spooky.git
a34ae51..b15781e master -> master
$
tar xzf release.tgz
cd release
./configure
make
make install
svn add Icon@2x.png
svn add Icon\@2x.png@
$ gem environment | grep "EXECUTABLE DIRECTORY"
- EXECUTABLE DIRECTORY: /var/lib/gems/1.8/bin
$ export PATH=$PATH:/var/lib/gems/1.8/bin/
$ git clone git@github.com:bluegraybox/showoff.git
Cloning into showoff...
...
$ cd showoff/
$ gem build showoff.gemspec
/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require': no such file to load -- parslet (LoadError)
...
$ sudo gem install showoff
[sudo] password for colin:
Building native extensions. This could take a while...
Building native extensions. This could take a while...
ERROR: Error installing showoff:
ERROR: Failed to build gem native extension.
...
libxml2 is missing. please visit http://nokogiri.org/tutorials/installing_nokogiri.html for help with installing dependencies.
...
$ sudo apt-get install ruby1.8-dev ruby1.8 ri1.8 rdoc1.8 irb1.8
...
$ sudo apt-get install libreadline-ruby1.8 libruby1.8 libopenssl-ruby
...
$ sudo apt-get install libxslt-dev libxml2-dev
...
$ sudo gem install nokogiri
...
$ sudo gem install showoff
Building native extensions. This could take a while...
Successfully installed json-1.5.3
Successfully installed gli-1.3.2
Successfully installed showoff-0.4.2
...
$ sudo gem uninstall showoff
...
$ gem build showoff.gemspec
/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require': no such file to load -- parslet (LoadError)
...
$ sudo gem install parslet
...
$ gem build showoff.gemspec
...
$ sudo gem install -l -n . showoff
Successfully installed showoff-0.5.1
...
Getting a list of pages in a Jekyll site is easy, but paring that down to just the top-level files and the index pages is tricky. {% for p...