This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ApplicationController < ActionController::Base | |
| around_action :track_object_allocation | |
| def allocation_logger | |
| @@allocation_logger ||= begin | |
| logger = Logger.new("#{Rails.root}/log/allocation_trace.log") | |
| logger.formatter = proc { |_severity, _datetime, _progname, msg| | |
| "#{msg}\n" | |
| } | |
| logger |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Cheef's Grand APDU List Smartcard Selected Information APDU list | |
| Reference: http://web.archive.org/web/20090630004017/http://cheef.ru/docs/HowTo/APDU.info | |
| #------------+------------------------+------------------------+----------------------+--------------------------------+ | |
| |ClaIns P1 P2|Lc Send Data |Le Recv Data | Specification | Description | | |
| +------------+------------------------+------------------------+----------------------+--------------------------------+ | |
| | 04 | ISO 7816-9 6.3 | DEACTIVATE FILE | | |
| | A0 04 00 00 00 | 3GPP TS 11.11 | INVALIDATE | | |
| | A0 04 00 00 00 | SAGEM SCT U34 6.15 | INVALIDATE | | |
| +------------+------------------------+------------------------+----------------------+--------------------------------+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export DYLD_PRINT_OPTS="1" | |
| export DYLD_PRINT_ENV="1" | |
| export DYLD_PRINT_LIBRARIES="1" | |
| export DYLD_PRINT_LIBRARIES_POST_LAUNCH="1" | |
| export DYLD_PRINT_APIS="1" | |
| export DYLD_PRINT_BINDINGS="1" | |
| export DYLD_PRINT_INITIALIZERS="1" | |
| export DYLD_PRINT_REBASINGS="1" | |
| export DYLD_PRINT_SEGMENTS="1" | |
| export DYLD_PRINT_STATISTICS="1" |