Message from @Jab

Discord ID: 401852855436443648


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<Y,
I is Y-2,
foo(X,I,L),%size m problem
Z is Y + L.%constructs size n solution from size m problem
```

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  
2018-01-13 22:44:33 UTC  

ekorn

2018-01-13 22:47:55 UTC  

Ach Berlin. Was ist Berlin? Berlin ist die Stadt für die man sich als Deutscher auf internationaler Bühne schämen muss. Wenn man Berlin mit anderen europäischen Hauptstädten wie London, Paris, Madrid und Amsterdam vergleicht, treibt es jedem anständigen Menschen die Schamesröte ins Gesicht. Selbst kleine Länder wie Österreich, Belgien oder die Schweiz haben mit Wien, Brüssel und Zürich international vorzeigbare Städte mit hoher Lebensqualität. Deutschland ist gestraft mit Berlin, der Hauptstadt der Versager. Berlin beheimatet mit Abstand am meisten Arschlöcher in der gesamten Republik. Deutsche Bahn, Bundestag, Air Berlin und der Axel Springer Verlag sind nur einige Beispiele für den unfähigen Abschaum der hier beherbergt wird.