https://hangouts.google.com/call/ok52565affcj5df2ofnh336egue
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
// START A3HEADER | |
// | |
// This source file is part of the Atlantis PBM game program. | |
// Copyright (C) 1995-1999 Geoff Dunbar | |
// | |
// This program is free software; you can redistribute it and/or | |
// modify it under the terms of the GNU General Public License | |
// as published by the Free Software Foundation; either version 2 | |
// of the License, or (at your option) any later version. | |
// |
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
// START A3HEADER | |
// | |
// This source file is part of the Atlantis PBM game program. | |
// Copyright (C) 1995-1999 Geoff Dunbar | |
// | |
// This program is free software; you can redistribute it and/or | |
// modify it under the terms of the GNU General Public License | |
// as published by the Free Software Foundation; either version 2 | |
// of the License, or (at your option) any later version. | |
// |
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
Orc Scout (4841) attacks Stark House Guard (2633) in hill (34,32) in | |
Schyacher! | |
Attackers: | |
Orc Scout (4841), Horde (17), behind, hobgoblin [HGOB]. | |
Defenders: | |
Court Jesters (904), The Kingdom of the North (7), behind, 11 orcs | |
[ORC], 11 goblins [GBLN]. | |
Farmers (1413), The Kingdom of the North (7), behind, 13 orcs [ORC]. |
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
[ALIASES] | |
armorer = ARMO | |
AXE = AXE | |
BAG = BAG | |
BOW = BOW | |
building = BUIL | |
camel_training = CAME | |
combat = COMB |
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
[ALIASES] | |
armorer = ARMO | |
AXE = AXE | |
BAG = BAG | |
BOW = BOW | |
building = BUIL | |
combat = COMB | |
cotton = COTT |
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
enum DROPDOWNS { | |
REPORT = "REPORT", | |
USER = "USER" | |
} | |
type IDropdowns = keyof typeof DROPDOWNS | null; | |
type IUseDropdown = [ | |
RefObject<HTMLInputElement>, | |
IDropdowns, |
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
import React, { useState, useRef, useEffect, RefObject } from "react"; | |
enum DROPDOWNS { | |
REPORT = "REPORT", | |
USER = "USER" | |
} | |
type IDropdowns = keyof typeof DROPDOWNS | null; | |
type IUseDropdown = [ |
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
import { until } from "selenium-webdriver"; | |
import { | |
queryElement, | |
projectSelect, | |
waitForElementRemoval, | |
clickWhenAble, | |
sendKeysWhenAble, | |
page | |
} from "../../utils/helpers"; |
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
import ReactDOM from "react-dom"; | |
import React from "react"; | |
import _ from "lodash"; | |
// -------------------------------- | |
// With width / hegit HOC for D3.js | |
// -------------------------------- | |
const WithSize = Child => | |
class extends React.Component { |
NewerOlder