Skip to content

Instantly share code, notes, and snippets.

@ButuzGOL
ButuzGOL / coefficients.md
Last active February 27, 2024 08:25
StormFire Data

Hero
COEFFICIENTS = {
damageMin: 2,
damageMax: 3,

accuracy: 2,
dodge: 2.5,
devastate: 2.5,
durability: 2,

@ButuzGOL
ButuzGOL / .aliases
Last active April 24, 2019 10:00
Mac OS clean
alias ...="cd ../.."
alias server='open http://localhost:8000 && python -m SimpleHTTPServer'
alias chrome='open /Applications/Google\ Chrome.app --args --remote-debugging-port=9222'
alias android='/Users/butuzgol/Library/Android/sdk/tools/emulator -avd Nexus_5X_API_23'
alias tbots='NODE_ENV=production node /Users/butuzgol/Desktop/tBots/me/index.js && NODE_ENV=production node /Users/butuzgol/Desktop/tBots/kino/index.js && NODE_ENV=production node /Users/butuzgol/Desktop/tBots/goal/index.js & NODE_ENV=production node /Users/butuzgol/Desktop/tBots/flats/index.js & NODE_ENV=production node /Users/butuzgol/Desktop/tBots/events/index.js'
alias show='defaults write com.apple.finder AppleShowAllFiles YES'
alias hide='defaults write com.apple.finder AppleShowAllFiles NO'
@ButuzGOL
ButuzGOL / launch.json
Created February 28, 2017 08:07
editorconfig
{
// Use IntelliSense to learn about possible Node.js debug attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "Quick",
"request": "launch",
"name": "File",
@ButuzGOL
ButuzGOL / test-framework.js
Last active August 29, 2015 14:04
Simple test framework
(function(global) {
'use strict';
var TestSuite = {},
Reporter,
specifications = {},
assert = {};
// Reporter
Reporter = function(options) {