I hereby claim:
- I am amcsi on github.
- I am amcsi (https://keybase.io/amcsi) on keybase.
- I have a public key ASDKjAxQBvD7686n_Y5sHCL_C3uNrkkTFSuEerewMJpu_go
To claim this, I am signing this object:
lycee-lackeyccg-en-only-translated 12-08-2019 | |
plugins/lycee-lackeyccg-en-only-translated/plugininfo.txt https://lycee-tcg.eu/storage/lackey/lycee-lackeyccg-en-only-translated/plugininfo.txt -1 | |
plugins/lycee-lackeyccg-en-only-translated/updatelist.txt https://lycee-tcg.eu/storage/lackey/lycee-lackeyccg-en-only-translated/updatelist.txt -1 | |
plugins/lycee-lackeyccg-en-only-translated/version.txt https://lycee-tcg.eu/storage/lackey/lycee-lackeyccg-en-only-translated/version.txt -1 | |
plugins/lycee-lackeyccg-en-only-translated/sets/carddata.txt https://lycee-tcg.eu/storage/lackey/lycee-lackeyccg-en-only-translated/sets/carddata.txt -1 | |
CardGeneralURLs: | |
https://res.cloudinary.com/drkxqkguu/image/upload/h_520/ |
I hereby claim:
To claim this, I am signing this object:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
#Warn ; Enable warnings to assist with detecting common errors. | |
; Custom function to press down two buttons. | |
PressBoth(a, b) | |
{ | |
Send, {%a% down}{%b% down}{%a% up}{%b% up} | |
} | |
#IfWinActive MELTY BLOOD |
('Single ticket', 350), | |
('Single ticket bought on the spot', 450), | |
('Block of 10 tickets', 3000), | |
('Airport shuttle bus single ticket (100E)', 900), | |
('Transfer ticket', 530), | |
('Short section metro ticket for up to 3 stops', 300), | |
('Single ticket for public transport boat', 750), | |
('Single ticket for public transport boat Children (under 15)', 550), | |
('Metropolitan area ticket', 250), | |
('Metropolitan area single ticket (50 % price discount)', 125), |
async function lol() { | |
const responseBodies = await Promise.all([ | |
fetch('http://example.com/1').then(response => response.json()), | |
fetch('http://example.com/2').then(response => response.json()), | |
]); | |
return { | |
list: responseBodies[0], | |
template_something: responseBodies[1], | |
} |
impl<'a> SerializingCommon<'a> { | |
pub fn serialize_page<T>(serialized: &SerializingPage) -> SerializingCommon<'a> | |
{ | |
SerializingCommon { | |
ancestors: &serialized.ancestors, | |
assets: serialized.assets, | |
components: serialized.components, | |
content: serialized.content, | |
description: serialized.description, | |
draft: serialized.draft, |
Land | |
1 Access Tunnel | |
1 Bojuka Bog | |
1 Command Tower | |
1 Darkwater Catacombs | |
1 Dimir Aqueduct | |
11 Island | |
1 Myriad Landscape | |
1 Mystic Sanctuary | |
1 Path of Ancestry |
<?php | |
class ObjectStorage { | |
public $pairs = []; | |
public function add(object $objectKey, $value): void | |
{ | |
$this->pairs[] = [$objectKey, $value]; | |
} |
import PrintA from '../PrintA'; | |
export const printConfig = { | |
A: { | |
component: PrintA, | |
nextTransaction: 'B', | |
}, | |
B | |
} |