I hereby claim:
- I am lpghatguy on github.
- I am lpghatguy (https://keybase.io/lpghatguy) on keybase.
- I have a public key ASAlopNHLRvh_NYWSkVIlct6b9hEdlseTDB97NKEtjNUCgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Reglike</title> | |
<style> | |
*, *::before, *::after { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} |
local bit = require("bit") | |
-- Operators that can stay as-is | |
local natop = { | |
["+"] = true, | |
["-"] = true, | |
["*"] = true, | |
["/"] = true | |
} |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Test</title> | |
<style> | |
.container > *:first-child::before { | |
content: "X"; | |
color: black; | |
font-size: 2em; | |
} |
function math.repent() | |
return 3 | |
end |
local pote = require("pote") | |
function love.load(args) | |
pote.mount(args) | |
print(love.filesystem.read("app/main.lua")) | |
end |
local function breakSnake(id) | |
if (type(id) ~= "string") then | |
return id | |
end | |
return (id:gsub("(%w)_(%a)", function(a, b) | |
return a .. b:upper() | |
end)) | |
end |
local ffi = require("ffi") | |
-- Create a C struct representing the header for our packet | |
ffi.cdef([[ | |
typedef struct { | |
uint32_t uuid; // user identifier | |
uint32_t size; // in bytes | |
uint32_t bitrate; // in Hz | |
uint16_t bitdepth; // bits per sample | |
uint16_t channels; // probably 1 or 2 |
debug.setmetatable(function() end, { | |
__concat = function(self, with) | |
return function(...) | |
return self(with(...)) | |
end | |
end | |
}) | |
local sin = math.sin | |
print((sin .. sin)(5)) --sin(sin(5)) |