.yarn/unplugged
.yarn/build-state.yml
π
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
package filepackage; | |
import java.io.*; | |
public class FileWritingStreamWay { | |
public static void main(String[] args) { | |
InputStream istream; | |
OutputStream ostream=null; | |
int c; | |
final int EOF = -1; | |
istream = System.in; | |
File outFile = new File("Data.txt"); |
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
class CustomError extends Error { | |
public name = this.constructor.name; | |
constructor(message?: string, opts?: { name?: string }) { | |
super(message); // 'Error' breaks prototype chain here | |
Object.setPrototypeOf(this, new.target.prototype); // restore prototype chain | |
} | |
} | |
// tslint:disable-next-line: max-classes-per-file | |
class SuperBadError extends CustomError { |
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
export default function () { | |
return { | |
async reportTaskStart (/* startTime, userAgents, testCount */) { | |
throw new Error('Not implemented'); | |
}, | |
async reportFixtureStart (/* name, path, meta */) { | |
throw new Error('Not implemented'); | |
}, |
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
const name = "deep"; | |
const greeting = `Hello, ${name}`; | |
console.log(greeting); |
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
#!/bin/bash | |
useradd -rm -s /bin/bash ansible | |
mkdir --parent /home/ansible/.ssh | |
touch /home/ansible/.ssh/authorized_keys | |
echo "ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIqedbDxKmTJL0D2f7r6U82ouzwyZEsrYxlETlqjRHhg8zUXRTqTns769og99xk5oNgi/heOGCHiLX2BQ5GVF9M= ansible@salt-master-01" > /home/ansible/.ssh/authorized_keys | |
chown ansible -R /home/ansible/.ssh |
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
[ServerSettings] | |
allowThirdPersonPlayer=1 | |
AllowCaveBuildingPvE=1 | |
alwaysNotifyPlayerJoined=0 | |
alwaysNotifyPlayerLeft=0 | |
bAllowFlyerCarryPvE=1 | |
bDisableStructureDecayPvE=0 | |
DayCycleSpeedScale=1.00000 | |
DayTimeSpeedScale=1.38015 | |
NightTimeSpeedScale=1.23971 |
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
#--------------------------------------------------------------------------------------------------------------------------------- # | |
# . . | ,---. | |
# | |,---.,---.,---. ,---.,---.|__/ ,-.-.,---.,---.,---.,---.,---.,---. ,---.|__. ,---. | |
# | |`---.|---'| ,---|| | \ | | |,---|| |,---|| ||---'| | | | | | |
# `---'`---'`---'` `---^` ` `` ' '`---^` '`---^`---|`---'` o`---'` `---| | |
# `---' `---' βββββββ βββββββββββββββββββ βββ βββ ββββββ ββββββ ββββββ ββββββ ββββββ ββββββββ βββ βββββββ βββββββββββ ββββββββββββββββ βββββββ | |
#--------------------------------------------------------------------------------------------------------------------------------- # | |
#-------------------------------- |
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
provider "aws" { | |
region = var.aws_region | |
s3_force_path_style = var.use_localstack | |
skip_credentials_validation = var.use_localstack | |
skip_metadata_api_check = var.use_localstack | |
# Note: all services are now exposed via a single edge port: https://github.com/localstack/localstack | |
dynamic "endpoints" { | |
for_each = var.use_localstack ? [var.localstack_host] : [] |