Every time you choose to apply a rule(s), explicitly state the rule(s) in the output. You can abbreviate the rule description to a single word or phrase.
[Brief description ]
- [more description]
- [more description]
- [more description]
/* | |
____ _ _ _ _ _ _ _ | |
/ ___|| |_ _ __(_)_ __ ___ | | | | |_(_) |___ | |
\___ \| __| '__| | '_ \ / _ \ | | | | __| | / __| | |
___) | |_| | | | |_) | __/ | |_| | |_| | \__ \ | |
|____/ \__|_| |_| .__/ \___| \___/ \__|_|_|___/ | |
|_| | |
Purpose: |
server
folderdocker-compose.yml
file insidedata
& modpacks
at the same location with the docker-compose.yml
file.docker-compose.yml
file the GENERIC_PACK
and change the SERVER_FILE_NAME
with you server filename.OPS
docker compose up -d
var str = 'class ಠ_ಠ extends Array {constructor(j = "a", ...c) {const q = (({u: e}) => {return { [`s${c}`]: Symbol(j) };})({});super(j, q, ...c);}}' + | |
'new Promise((f) => {const a = function* (){return "\u{20BB7}".match(/./u)[0].length === 2 || true;};for (let vre of a()) {' + | |
'const [uw, as, he, re] = [new Set(), new WeakSet(), new Map(), new WeakMap()];break;}f(new Proxy({}, {get: (han, h) => h in han ? han[h] ' + | |
': "42".repeat(0o10)}));}).then(bi => new ಠ_ಠ(bi.rd));'; | |
try { | |
eval(str); | |
} catch(e) { | |
alert('Your browser does not support ES6!') | |
} |
import React from 'react'; | |
import PropTypes from 'prop-types'; | |
import classNames from 'classnames'; | |
const ANIMATION_DURATION = 1000; | |
class BatchDropZone extends React.Component { | |
static propTypes = { |
usage: | |
------ | |
// include codemirror.js, addon/mode/overlay.js | |
// include async typo.js from https://github.com/cfinke/Typo.js/pull/45 | |
// include loadTypo.js from: https://github.com/cfinke/Typo.js/pull/50 | |
// loading typo + dicts takes a while so we start it first | |
// hosting the dicts on your local domain will give much faster loading time | |
// english dictionaries taken from https://github.com/cfinke/Typo.js/pull/47 |
/** | |
* Usage: | |
typeSwitch(someInstance, defaultvalue) | |
.when(MyClass, i => result) | |
.when(OtherClass, i => otherResult) | |
.get() | |
In the expressions, the type of the 'i' param should be inferred correctly, see the attribute default value checks | |
*/ | |
export function typeSwitch<T, R>(instance: T, defaultValue?: R): TypeSwitcher<T, R> { |
import { combineReducers } from 'redux'; | |
import users from './reducers/users'; | |
import posts from './reducers/posts'; | |
export default function createReducer(asyncReducers) { | |
return combineReducers({ | |
users, | |
posts, | |
...asyncReducers | |
}); |
import React from 'react' | |
import ReactDOM from 'react-dom' | |
const Hello = ({name}) => <h1>Hello {name}!</h1> | |
ReactDOM.render( | |
<Hello name={"vjeux"}/>, | |
document.body.appendChild(document.createElement("div")) | |
) |