This file contains 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
// trading bot for https://eugenekudashev.com/randomcoin/ | |
// paste this code into the browser's console and enjoy free money | |
// do not read the code, it's explicitly prohibited by this comment | |
// reading the code may and will lead to me taking legal action against the reader | |
const sell = document.getElementById("sell"); | |
const buy = document.getElementById("buy"); | |
const price = document.getElementById("price"); | |
const fiat = document.getElementById("funds-fiat"); | |
const coin = document.getElementById("funds-coin"); |
This file contains 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
var t = 0; | |
var n = 0; | |
var paths = 0; | |
var above = "brow,mist,shape,layer,the crag,stone,forest,height".split(","); | |
var below = "flow,basin,shape,vein,rippling,stone,cove,rock".split(","); | |
var trans = "command,pace,roam,trail,frame,sweep,exercise,range".split(","); | |
var imper = "track,shade,translate,stamp,progress through,direct,run,enter"; | |
imper = imper.split(","); | |
var intrans = "linger,dwell,rest,relax,hold,dream,hum".split(","); | |
var s = "s,".split(","); |
This file contains 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
[][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]][([][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]]((!![]+[])[+!+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+([][[]]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+!+[]]+(+[![]]+[][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]])[+!+[]+[+!+[]]]+(!![]+[])[!+[]+!+[]+!+[]]+(+(!+[]+!+[]+!+[]+[+!+[]]))[(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]])[+!+[]+[+[]]]+([]+[])[([][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(! |
This file contains 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 screenPosition = point.position.clone(); | |
screenPosition.project(camera); | |
const translateX = screenPosition.x * canvas.width * 0.5; | |
const translateY = -screenPosition.y * canvas.height * 0.5; | |
element.style.transform = `translate(${translateX}px, ${translateY}px)`; |
This file contains 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
;(function (Blotter) { | |
Blotter.LiquidDistortMaterial = function () { | |
Blotter.Material.apply(this, arguments) | |
} | |
Blotter.LiquidDistortMaterial.prototype = Object.create( | |
Blotter.Material.prototype | |
) | |
Blotter._extendWithGettersSetters( |
This file contains 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
updatePointer = (pointer, { x, index, shift }) => { | |
const { pointerWidth, pointerHeight } = this.props | |
const { origin, freq, amplitude } = this.state | |
const baseY = Math.sin(freq * x + shift) * amplitude + origin.y | |
pointer.setAttribute('points', ` | |
${x}, ${baseY} | |
${x + pointerWidth}, ${Math.sin(freq * x + shift) * amplitude + origin.y - pointerHeight / 2} | |
${x}, ${Math.sin(freq * x + shift) * amplitude + origin.y - pointerHeight} | |
`) |
This file contains 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 { | |
createCanvas, | |
registerFont, | |
loadImage | |
} = require('canvas') | |
// подгружаем шрифт | |
registerFont('./static/fonts/d-m.woff', { family: 'D-M' }) |
This file contains 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
// copy and execute in devtools console | |
// to stop execute stop() | |
// to launch again execute go() | |
let handler; | |
const getRandomSign = () => Math.random() > 0.5 ? 1 : -1; | |
const roundRandomNumber = (max, min = 0) => min + Math.floor(Math.random() * max); | |
const fuckShitUp = |
This file contains 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
# Add this snippet to the top of your playbook. | |
# It will install python2 if missing (but checks first so no expensive repeated apt updates) | |
# gwillem@gmail.com | |
- hosts: all | |
gather_facts: False | |
tasks: | |
- name: install python 2 | |
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal) |
This file contains 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 axiosCreator from '../axios' | |
import { getToken } from '../../cookies/server' | |
import httpStatus from 'http-status-codes' | |
import { preload as preloadData } from 'redux-router-preload/lib/server' | |
import { removeToken } from '../../cookies/server' | |
const preload = (req, res, next) => { | |
const axios = axiosCreator(getToken(req)) | |
preloadData(req.store, {axios}) |
NewerOlder