# cat /proc/version
Linux version 3.15.4-x86_64-linode45 (maker@build) (gcc version 4.4.5 (Debian 4.4.5-8) ) #1 SMP Mon Jul 7 08:42:36 EDT 2014
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
| androidboot.hardware=qcom user_debug=31 maxcpus=2 msm_rtb.filter=0x3F ehci-hcd.park=3 androidboot.serialno=356593052817305 androidboot.wakeinfo=65535 androidboot.pmicinfo=6 androidboot.colorver=07 androidboot.fotainfo=0 androidboot.recovery=0 androidboot.hotstandby=0 androidboot.emmc=true androidboot.baseband=msm |
- Get your cookie. Either proxy your iPhone/iPod/iPad and record the cookie using the proxy server of your choice or capture the request using your AP with Wireshark or similar
- Make sure you have a cookie like
AKCNTYPE=WIFI; AKID=abc; token=expires...and put it in~/cookie - Find the name and day of the artist you want to load, replace whitespace with underscores.
- Launch the script:
./itunes-festival.sh day artist - Have fun.
Working for iTunes Festival September 2014. Also on OS X. Tnx to the original creator!
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
| #!/bin/sh | |
| # 9.8.2O-124_SPUEM-14_S7_USASPDRICS01VFFE1007.0R_USASPDRJBVFFR_P018_A015_p2b_S1FF_fb_CFC.xml | |
| fastboot flash mbm allow-mbmloader-flashing-mbm.bin | |
| fastboot reboot-bootloader | |
| fastboot flash mbmloader mbmloader.bin | |
| fastboot flash mbm mbm.bin | |
| fastboot reboot-bootloader | |
| fastboot flash cdt.bin cdt.bin_signed | |
| fastboot erase cache | |
| fastboot erase userdata |
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
| <?php | |
| $var = null; | |
| $start1 = microtime(true); | |
| $i = 0; | |
| while($i < 10000000){ | |
| $ret1 = $var === null; | |
| $i++; | |
| } |
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
| <?php | |
| use Fluent\Logger\Entity; | |
| use Fluent\Logger\PackerInterface; | |
| class MsgpackPacker implements PackerInterface | |
| { | |
| /** | |
| * pack entity as a msgpack format. |
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
| PHP Version: 5.5.12 | |
| Json Version: ext/json 1.2.1 | |
| Count: 262962 | |
| Encode in 0.02131 sec, 1039144 bytes | |
| Decode in 0.07157 sec | |
| Json Version: pecl/jsonc 1.3.5 | |
| Count: 262962 | |
| Encode in 0.02531 sec, 1039144 bytes |
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
| /// <reference path="./sequelize.d.ts" /> | |
| // ƪ(•̃͡ε•̃͡)∫ʃ” | |
| import _ = require('sequelize'); | |
| var Sequelize = require('sequelize'); | |
| // connect to mysql | |
| var sequelize = new Sequelize( | |
| 'db_name', | |
| 'username', |
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
| Mime::Type.register 'application/x-msgpack', :msgpack | |
| # レンダラにmsgpackを追加 | |
| ActionController::Renderers.add :msgpack do |data, options| | |
| send_data data.to_msgpack, :type => 'application/x-msgpack' | |
| end |
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
| // Type definitions for socket.io | |
| // Project: http://socket.io/ | |
| // Definitions by: William Orr <https://github.com/worr> | |
| // Definitions: https://github.com/borisyankov/DefinitelyTyped | |
| // Modified by PyYoshi <myoshi321go@gmail.com> | |
| ///<reference path='../node/node.d.ts' /> | |
| declare module "socket.io" { | |
| import http = require('http'); |