Skip to content

Instantly share code, notes, and snippets.

View CalmBit's full-sized avatar
💭

CalmBit CalmBit

💭
View GitHub Profile
#include <fstream>
#include <sstream>
#include <iostream>
#include <vector>
#include <string>
#include <map>
const wchar_t CODEPAGE[256] =
{
' ', 9786, 9787, 9829, 9830, 9827, 9824, 8226, 9688, 9675, 9689, 9794, 9792, 9834, 9835, 9788,

Common Sense Balancing Standard (CSBS)

  • No ore tripling, quadrupling, quintupling, etc. Ever.
    • Falkreon Says: The absolute limit on ore multiplication is 2.6 ingots per ore block, with typical gains being closer to 1.6.
  • A single block can never store more than 36 items, even when it's part of a multiblock structure.
  • Furnace-burning fuels should produce no more than 30FU per furnace fuel tick.
    • Falkreon Says: It can produce this as slowly or as quickly as you want.
  • Wireless interactions are not always recommended.
  • Falkreon Says: Well-designed network-topography-aware systems often outstrip the performance of wireless transfer systems, and occasionally even dumb cellular systems do. More importantly, wireless is unsatisfying gameplay.
@CalmBit
CalmBit / keybase.md
Created April 15, 2015 02:12
keybase.md

Keybase proof

I hereby claim:

  • I am CalmBit on github.
  • I am calmbit (https://keybase.io/calmbit) on keybase.
  • I have a public key whose fingerprint is D1FF 8251 A3D2 5F17 529E 103C 0346 B7C0 7B0E C975

To claim this, I am signing this object:

@CalmBit
CalmBit / BotBase.cs
Last active December 17, 2015 23:39
BlueBots
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class BotBase
{
@CalmBit
CalmBit / main.cpp
Last active December 17, 2015 21:19
RooomGenerator V.01 For CMDROUGE
#include <iostream>
#include <random>
#include "room.h"
using namespace std;
int main()
{
cout << "Room Generator V 0.1\n" << "Created By Ethan Brooks\n" << "For CMDROUGE.\n\n";
@CalmBit
CalmBit / array.rb
Last active December 17, 2015 08:19
Array Replacement
class Klass
def initialize(str)
@str = str
end
def str
@str
end
end