Anavrins, on 25 April 2016 - 04:56 PM, said:
It's the source code of the program that matters, so moderators could see what the actual program does. An encryption program shouldn't be marked as malicious just because it encrypts your files.
There have been 76 items by MKlegoman357 (Search limited from 10-February 22)
Posted by
MKlegoman357
on 25 April 2016 - 07:56 PM
in
General
Anavrins, on 25 April 2016 - 04:56 PM, said:
Posted by
MKlegoman357
on 25 April 2016 - 02:59 PM
in
Ask a Pro
Posted by
MKlegoman357
on 25 April 2016 - 02:51 PM
in
Suggestions
Posted by
MKlegoman357
on 24 April 2016 - 03:41 PM
in
Ask a Pro
Posted by
MKlegoman357
on 23 April 2016 - 08:40 AM
in
Suggestions
Posted by
MKlegoman357
on 17 April 2016 - 09:46 PM
in
Ask a Pro
ChaosNicro, on 17 April 2016 - 08:30 PM, said:
Posted by
MKlegoman357
on 11 April 2016 - 01:18 PM
in
Forum Discussion
Posted by
MKlegoman357
on 09 April 2016 - 05:57 PM
in
General
Posted by
MKlegoman357
on 08 April 2016 - 07:22 PM
in
General
Posted by
MKlegoman357
on 07 April 2016 - 05:54 AM
in
Forum Discussion
Posted by
MKlegoman357
on 06 April 2016 - 01:20 PM
in
General
everyOS, on 06 April 2016 - 11:58 AM, said:
Posted by
MKlegoman357
on 29 March 2016 - 07:18 PM
in
General
Posted by
MKlegoman357
on 29 March 2016 - 03:23 PM
in
Ask a Pro
Posted by
MKlegoman357
on 29 March 2016 - 05:20 AM
in
Ask a Pro
Posted by
MKlegoman357
on 20 March 2016 - 06:36 PM
in
Ask a Pro
Posted by
MKlegoman357
on 18 March 2016 - 04:59 PM
in
Ask a Pro
ReBraLaCC, on 18 March 2016 - 02:47 PM, said:
Lignum, on 18 March 2016 - 02:33 PM, said:
Currently at dropbox said:
Posted by
MKlegoman357
on 17 March 2016 - 06:46 PM
in
Ask a Pro
InDieTasten, on 17 March 2016 - 06:42 PM, said:
#include <string> #define FOO 1 #define BAR #ifdef BAR #endif
Posted by
MKlegoman357
on 17 March 2016 - 04:37 PM
in
Ask a Pro
local function length (tab)
local len, i = 0, 1
while tab[i] ~= nil do
len = len + 1
i = i + 1
end
return len
end
local t = {
1, 2, 3
}
print(#t) --> 3
print(length(t)) --> 3
Posted by
MKlegoman357
on 10 March 2016 - 07:57 AM
in
Programs
Posted by
MKlegoman357
on 09 March 2016 - 04:45 PM
in
Ask a Pro
Posted by
MKlegoman357
on 05 March 2016 - 07:22 AM
in
Suggestions
Posted by
MKlegoman357
on 04 March 2016 - 06:19 AM
in
Suggestions
Posted by
MKlegoman357
on 28 February 2016 - 08:44 PM
in
Ask a Pro
Posted by
MKlegoman357
on 21 February 2016 - 10:40 PM
in
Ask a Pro
Posted by
MKlegoman357
on 21 February 2016 - 08:12 PM
in
Ask a Pro
local object = {
bar = "test";
}
function object:foo (param)
print(self.bar .. " " .. param)
end
local object = {
bar = "test";
}
object.foo = function (self, param)
print(self.bar .. " " .. param)
end
