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
{ | |
"status": "active", | |
"actions": [ | |
{ | |
"type": "bid", | |
"entity": "Player 1", | |
"entity_type": "player", | |
"id": 1, | |
"created_at": 1614711911, | |
"company": "GJGR", |
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
require_relative "../base" | |
require_relative "meta" | |
module Engine | |
module Game | |
module G18Example | |
class Game < Game::Base | |
include_meta(G18Example::Meta) | |
BANK_CASH = 10_000 |
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
document.addEventListener('turbolinks:load', () => { | |
$('.dynamic-fy').on("change", function () { | |
var fy_id = $(this).children("option:selected").val() | |
$.getJSON("/dynamic_select/" + fy_id + "/projects.json?request_type=supplemental_request", function( data ) { | |
$('.dynamic-project').empty(); | |
$('.dynamic-report').empty(); | |
$('.dynamic-project').append($('<option>', {value: 0, text: "-- select project --"})); | |
$.each(data, function(key, val) { | |
$('.dynamic-project').append($('<option>', {value: val["id"], text: val["current_title"]})); | |
}); |
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
B16; 619; 4 | |
C15; 297; 0 | |
C13; 8; 0 | |
D14; 619; 3 | |
D12; 24; 1 | |
D10; 9; 1 | |
D6; 299; 0 | |
D8; 23; 4 | |
E15; 8; 4 | |
E17; 297; 3 |
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
<VirtualHost *> | |
<Directory /var/www/devsite/> | |
AuthType Basic | |
AuthName "Restricted Content" | |
AuthUserFile /etc/apache2/.htpasswd | |
Require valid-user | |
</Directory> | |
</Virtualost> |