Title | Normal Price | Discounted Price | PS+ Price |
---|---|---|---|
ALPHA MISSION | $2.99 | $0.90 | $0.60 |
ART OF FIGHTING | $8.99 | $2.70 | $1.80 |
ATHENA | $2.99 | $0.90 | $0.60 |
BASEBALL STARS 2 | $8.99 | $2.70 | $1.80 |
BASEBALL STARS PROFESSIONAL | $8.99 | $2.70 | $1.80 |
BERMUDA TRIANGLE | $2.99 | $0.90 | $0.60 |
Beyond Good & Evil® HD | $9.99 | $3.00 | $2.00 |
[BioShock®](https://store.playstation.com/#!/en-us/cid=UP1001-NPUB30393_00-BIOSHOCKP |
This file contains 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
# frozen_string_literal: true | |
module RuboCop | |
module Cop | |
module Rails | |
# Checks for duplicate calls to ActiveRecord::Base.ignore_columns= as the | |
# subsequent calls will override the first call. | |
# | |
# @example | |
# # bad |
This file contains 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
[~] rvm alias list | |
default => ruby-2.3.0 | |
[~] rvm alias create 2.1 2.1.0 | |
ruby-2.1.0 is not installed. | |
Creating alias 2.1 for ruby-2.1.0... | |
[~] rvm alias list | |
2.1 => ruby-2.1.0 | |
default => ruby-2.3.0 | |
[~] rvm alias create 2.1 2.1.8 | |
ruby-2.1.8 is not installed. |
This file contains 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
# Usage | |
class User | |
serialize :data, YAMLColumnWithSyckFallback.new | |
end |
This file contains 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
require "open-uri" | |
require "json" | |
API_URL = "https://store.playstation.com/chihiro-api/viewfinder/US/en/19/STORE-MSF77008-SUMMERSALEPSVGG?size=100&gkb=1&geoCountry=US" | |
STORE_URL = "https://store.playstation.com/#!/en-us/cid=%s" | |
data = JSON.parse(open(API_URL).read) | |
games = [] | |
data["links"].each do |game| |
This file contains 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
using terms from application "Colloquy" | |
on process user command c with arguments for view | |
try | |
if c is in {"nowplaying", "np", "playing"} then | |
tell application "Google Chrome" | |
repeat with w in (every window) | |
repeat with t in (every tab whose URL contains "play.google.com/music") of w | |
if (execute t javascript "document.getElementsByClassName('playing').length") is equal to 1 then | |
set tTitle to execute t javascript "document.getElementById('playerSongTitle').innerText;" | |
set tArtist to execute t javascript "document.getElementById('player-artist').innerText;" |
This file contains 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
require "benchmark/ips" | |
hash = Hash.new | |
Benchmark.ips do |x| | |
x.report("fetch") { x = hash.fetch(:foo, "bar") } | |
x.report("fetch block") { x = hash.fetch(:foo) { "bar" } } | |
x.report("[]") { x = hash[:foo] || "bar" } | |
end |
This file contains 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
using terms from application "Colloquy" | |
on process outgoing chat message m | |
set messageBody to body of m as string | |
if messageBody starts with ">" then | |
set HTML of m to "<font color=\"green\">" & messageBody & "</font>" | |
end if | |
end process outgoing chat message | |
end using terms from |
I hereby claim:
- I am sikachu on github.
- I am sikachu (https://keybase.io/sikachu) on keybase.
- I have a public key whose fingerprint is 7270 8199 79B1 6AD7 0571 6B7B 889C 472F 2DA2 8377
To claim this, I am signing this object:
This file contains 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
# Note: This assume that you're using libxml2 from Homebrew, which is keg-only. | |
# Run this command: | |
$ bundle config build.nokogiri --with-xml2-include=/usr/local/opt/libxml2/include/libxml2 --with-xml2-lib=/usr/local/opt/libxml2/lib --with-xslt-dir=/usr/local/opt | |
# Remove and rebundle. You use Bundler, right? | |
$ yes | gem uninstall nokogiri --force | |
$ bundle |
NewerOlder