Message from @Jab

Discord ID: 401851713268613120


2018-01-13 19:32:53 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401820924522790912/0xGOy1j.png

2018-01-13 20:18:47 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401832475564703744/c4c75ec9a0bfc0080c91d87912f6a06b--brown-eyes-border-collie-puppies.png

2018-01-13 20:34:43 UTC  
2018-01-13 20:55:30 UTC  

Micro$oft

2018-01-13 21:08:43 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401845041523326977/odbg64-03.png

2018-01-13 21:10:38 UTC  
2018-01-13 21:11:24 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401845713627250699/ZkazPMo.png

2018-01-13 21:24:27 UTC  

```lua
----------------------------------------------------------------
-- @string body The body of the function.
-- @table args The arguments to put in the function header.
-- @return Returns a function from a body string and provided arguments.
----------------------------------------------------------------
function load_function(body, args)
local function_context = {};
setmetatable(function_context, { __index = _G });
local compiled = "return function(";
local compiled_args = "";
if args ~= nil and type(args) == "table" then
for k,v in pairs(args) do
if compiled_args == "" then
compiled_args = v;
else
compiled_args = compiled_args..","..v;
end
end
end
compiled = compiled..compiled_args..") "..body.." end";
-- Debug print function.
if debugLoadFunction then print("compiled: "..compiled); end
local f, err = loadstring(compiled, body);
if f then
setfenv(f, function_context);
return f();
else
return f, err;
end
end
```

2018-01-13 21:26:36 UTC  

```lua
----------------------------------------------------------------
-- @return Returns a string with the first character upper-cased.
----------------------------------------------------------------
function firstToUpper(str)
str = string.lower(str);
return (str:gsub("^%l", string.upper))
end
```

2018-01-13 21:27:44 UTC  

```Prolog
foo(X,Y,Z) :-
(Y=0;Y<0),%stopping condition
Z is X, !.
foo(X,Y,Z) :-
(X<0;X=0),%stopping condition
Z is Y, !.
foo(X,Y,Z) :-%size n problem
(X=Y;X>Y),
K is X-3,
foo(K,Y,S),%size m problem
Z is S + X.%constructs size n solution from size m problem
foo(X,Y,Z) :-%size n problem
X

2018-01-13 21:27:50 UTC  

```lua
object:function();
object.function();
```

2018-01-13 21:28:56 UTC  

object:CamelCase

2018-01-13 21:29:00 UTC  

object.camelCase

2018-01-13 21:31:31 UTC  
2018-01-13 21:33:32 UTC  

```
(define pairs ( lambda ( x y)
(if (null? x)
'()
(cons
(cons(car x) (car y))
(pairs (cdr x) (cdr y))))))
```

2018-01-13 21:35:14 UTC  

JNI

2018-01-13 21:48:05 UTC  

local s = require("serpent")

2018-01-13 21:48:24 UTC  

print(s.block(tbl))

2018-01-13 21:53:05 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401856204906823680/Screenshot_82.png

2018-01-13 21:53:10 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401856227753328651/Screenshot_83.png

2018-01-13 21:55:26 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401856798354833409/5a586eaa99dd3.png

2018-01-13 22:03:55 UTC  

an important or wealthy man regarded as lacking substance, personality, or ability.

2018-01-13 22:15:34 UTC  
2018-01-13 22:43:41 UTC