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
using System; | |
public static class Program { | |
public static unsafe void Main (string[] args) { | |
var ints = new int[] { 0, 1, 2, 3 }; | |
fixed (int* pInts = ints) { | |
var pBytes = (byte*)pInts; | |
for (var i = 0; i < (ints.Length * 4); 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
#!/usr/bin/env ruby | |
if ?A.is_a? String | |
ab = (?A..?Z).to_a | |
else | |
ab = (?A..?Z).map {|c| c.chr} | |
end | |
n = $<.readline.to_i | |
str = $<.read | |
puts str.split('').map {|oc| c = oc.upcase; if ab.include? c then r = ab[(ab.index(c) - n) % ab.length]; c == oc ? r : r.downcase else c end }.join |
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
--- | |
- API | |
- AbandonQuest | |
- AbandonSkill | |
- AcceptAreaSpiritHeal | |
- AcceptArenaTeam | |
- AcceptBattlefieldPort | |
- AcceptDuel | |
- AcceptGroup | |
- AcceptGuild |