I hereby claim:
- I am kamarcum on github.
- I am marcumka (https://keybase.io/marcumka) on keybase.
- I have a public key ASAynjVN61cYaJlclYt724DG5FJUN-hwno7irZL9pQAHNgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| gem install rack ; echo "run Proc.new { |env| puts env.inspect; ['200', {'Content-Type' => 'text/html'}, [env.inspect]] }" >> hax.ru ; rackup hax.ru |
| ActiveRecord::Base.connection.execute("SELECT relname, reltuples FROM pg_class where relname NOT LIKE 'pg_%' ORDER BY reltuples DESC LIMIT 10;").each { |row| puts row } |
| module ApplicationHelper | |
| def weasel(opts={}) | |
| true | |
| end | |
| def wrapper(target=self) | |
| target.weasel(1) | |
| end | |
| end |
| <?xml version="1.0" encoding="utf-8"?> | |
| <xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"> | |
| <xs:element name="Status"> | |
| <xs:complexType> | |
| <xs:sequence> | |
| <xs:element name="Location"> | |
| <xs:simpleType> | |
| <xs:restriction base="xs:string"> | |
| <xs:enumeration value="The Office" /> | |
| <xs:enumeration value="Remote" /> |
| 1. Xcode | |
| 2. xcode command line tools | |
| 3. git | |
| 4. brew install libksba autoconf automake apple-gcc42 qt imagemagick libxml2 postgres tmux macvim | |
| 5. fix imagemagick library names (see below) | |
| 6. x11 | |
| 7. rvm | |
| 8. dotmatrix | |
| class StudentController < ApplicationController | |
| def show | |
| existing_etag = request.headers["if-none-match"] | |
| student = Student.where(id: params[:id]).first | |
| if(existing_etag) | |
| type, id, modified = existing_etag.split("_") | |
| if(type == student && id == params[:id]) | |
| if(student.updated_at == modified) | |
| render :not_modified and return | |
| end |
| # It's sort of difficult to make a non-UTF-8 string in | |
| # ruby that contains characters that aren't in UTF-8. | |
| # Here's how I did it. | |
| # 0x89 isn't allowed in UTF-8 | |
| bad_chars = [0x89].pack("c*").force_encoding("ISO-8859-1") |
| kill -9 `lsof -i :3000 -F p | cut -c 2-10` | |
| alias gorailsgo='kill -9 `lsof -i :3000 -F p | cut -c 2-10` ; rails s' |