Skip to content

Instantly share code, notes, and snippets.

View SoniEx2's full-sized avatar

Soni L. SoniEx2

View GitHub Profile
@SoniEx2
SoniEx2 / gist:db92b01e8053c7505ab4
Last active August 29, 2015 14:10
6th wave feminism

6th Wave Feminism

So let's make a "6th wave" of feminism (w/e that means)

There are 4 main rules:

  1. Respect everyone. (or rather, don't care about things which aren't primarily about you)
  2. Accept and support everyone until they harm others. (see examples)
  3. Get absolutely everyone to follow this.
@SoniEx2
SoniEx2 / special.lua
Last active August 29, 2015 14:01
IRC friendly Lua table copy
-- the following deep copy function never stack overflows from recursion
-- needs optimization tho
local function deep(inp,copies)
-- push
local stack = {{inp = inp, key = nil, value = nil, next = false, skipNext = false, out = nil}}
local currentResult
copies = (type(copies) == "table") and copies or {}