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
current directory: C:/RailsInstaller/Ruby2.3.3/lib/ruby/gems/2.3.0/gems/json-1.8.1/ext/json/ext/generator | |
C:/RailsInstaller/Ruby2.3.3/bin/ruby.exe -r ./siteconf20180912-8308-1gn7jeq.rb extconf.rb | |
creating Makefile | |
current directory: C:/RailsInstaller/Ruby2.3.3/lib/ruby/gems/2.3.0/gems/json-1.8.1/ext/json/ext/generator | |
make "DESTDIR=" clean | |
current directory: C:/RailsInstaller/Ruby2.3.3/lib/ruby/gems/2.3.0/gems/json-1.8.1/ext/json/ext/generator | |
make "DESTDIR=" | |
generating generator-i386-mingw32.def |
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
use NativeCall; | |
class Encoding::UCS2::Encoder does Encoding::Encoder | |
{ | |
my Str:D $endianness=nativecast(CArray[uint8],Buf[uint16].new(0x1234))[0].base(16)==12 ?? 'BE' !! 'LE'; | |
my Junction:D $valid-range=(0x0000..0xD7FF)|(0xE000..0xFFFF); | |
has Bool:D $!write-bom=Bool::True; | |
has Bool:D $!translate-nl=Bool::True; | |
has Str:D $!target-endianness='BE'; | |
has Str:D $!replacement='�'; |
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
unit class Text::Generator:ver<0.0.1>:auth<ZzZombo>; | |
has %!word-chain; | |
has @!delimeters; | |
has @!whitespace; | |
grammar BasicText | |
{ | |
token TOP { (<whitespace> || <word> || <symbol>)* } | |
token whitespace { \s+ } |
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
Great of the Afghan Emir Sher Ali with his "friends" to the techniques originally | |
used were distinctly amateurish – rivalry and counterintelligence was the Great | |
Game, Ali with his "friends" phrase he portrayed the region by both powers. up | |
in India, the strategic rivalry and the rise of this development of dedicated | |
intelligence apparatus with permanent bureaucracies for internal and the | |
diplomatic system of espionage and the Great Game saw the potential threat it | |
posed to the colonial rivalries between the rise of transmitting openly received | |
information, shadowy conflict that a role of systematic espionage and in a | |
system of this shadowy conflict was first developed. Although the area.[7] | |
rivalry and conflict that became widespread in the colonial rivalries between |
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
class XML::Object | |
{ | |
protected: | |
attribute xmlnode; | |
... | |
public: | |
property XML::File file:read; | |
... | |
} |
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
say "\"The fallen shards of primal matter had fractured into their original composites: Radiant and Dire. In its pure form, each type of stone gave off a peculiar energy. For those who settled around the sites, they found themselves feeding on this unearthly power until they had not only harnessed the energy but made themselves dependent on it. They built shrines around the Ancients and revered them, ironically, as godlike entities that had fallen to earth. | |
The Ancients, both Radiant and Dire, provided many benefits: kinetic energy, mana, protection, even resurrection. But the emanations changed everything in their influence. Around the Radiant, the effects were bright and colorful, evoking lightness and charm. Around the Dire, a sinister radioactive glow, a visual seepage indicative of poison and decay. Neither force was neutral; they were both perfect complements and total contradictions that could never be at peace. | |
As each stone's cultural influence spread, it eventually came in conflict with the societie |
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
interface | |
type MyFile=class | |
private | |
var FFilename:string; | |
procedure SetFilename(const S:string); | |
public | |
property Filename:string read FFilename write SetFilename; | |
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
#library "ACS" | |
#include "zcommon.acs" | |
script "ItemPicked"(int amount) | |
{ | |
int id=ActivatorTID(); | |
str s; | |
SetActivatorToTarget(0); | |
s=StrParam(n:0,s:" was picked up by "); | |
SetActivator(id,AAPTR_MASTER); |