Message from @Jab

Discord ID: 401682526659280896


2018-01-13 07:14:46 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401635170605727744/nazi-furry-relaxing.jpg

2018-01-13 07:14:47 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401635172379787264/colonel-noxious-625x350.jpg

2018-01-13 07:14:47 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401635173549998091/3F3FC42B00000578-4412692-image-a-11_1492190674436.jpg

2018-01-13 07:14:47 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401635174657425418/second-life.jpg

2018-01-13 07:14:48 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401635176440135681/25da48f63ecea4dd0a3754ef989a3358.jpg

2018-01-13 07:14:48 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401635177534849026/a_proud_nazi_fur_by_colonelnoxious-d4ut9yw.jpg

2018-01-13 07:14:48 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401635177924788225/4336411d34c171aaf571bcb9cf01d3de.jpg

2018-01-13 07:14:48 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401635180122603520/844d89_6166913.jpg

2018-01-13 07:14:49 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401635181456261120/2ZhVzV0.jpg

2018-01-13 07:15:47 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401635423765659648/unknown.png

2018-01-13 07:16:00 UTC  

just for you

2018-01-13 07:16:47 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401635677307011092/unknown.png

2018-01-13 07:18:24 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401636085316321280/unknown.png

2018-01-13 07:18:41 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401636154950287363/unknown.png

2018-01-13 07:18:53 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401636206686896138/1377395094.rncoyote_ac13_-_rebel_2__dragonscales_.jpg

2018-01-13 07:19:39 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401636398815510549/unknown.png

2018-01-13 07:20:01 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401636491559960578/ein_volk_ein_reich_ein_fuhrer_by_pridark-d3dvo47.jpg

2018-01-13 07:21:00 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401636737602027531/DLKoryQXcAA9v7L.jpg

2018-01-13 10:22:57 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401682526135123979/zTfLibj.png

2018-01-13 10:23:11 UTC  

https://cdn.discordapp.com/attachments/383108664380227595/401682588218949632/3Bqgtne.png

2018-01-13 10:23:39 UTC  

.

https://cdn.discordapp.com/attachments/383108664380227595/401682702119600128/NDNrCdt.png

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