Skip to content

Instantly share code, notes, and snippets.

View MihailJP's full-sized avatar

MihailJP MihailJP

View GitHub Profile
@MihailJP
MihailJP / complex.lua
Created August 28, 2012 16:41
Complex numbers for Lua
--[[
--
-- *** Complex numbers for Lua ***
--
--]]
-- Module "cmath" ... mathematic functions for complex numbers
module("cmath", package.seeall)
@MihailJP
MihailJP / gist:3599125
Created September 2, 2012 13:55
Lua scope test
v = "global"
do
print(v) -- "global"
local v = "local"
print(v) -- "local", of course
v = nil
print(v) -- nil, not "global"
collectgarbage("collect")
print(v) -- still nil
print (_G.v) -- of course "global"
@MihailJP
MihailJP / gist:3652275
Created September 6, 2012 06:53
Logical (not bitwise) XOR in C++
#include <iostream>
int main() {
int a = 1; int b = 2;
if ((bool)a != (bool)b)
std::cout << "a xor b -> true" << std::endl;
else
std::cout << "a xor b -> false" << std::endl;
return 0;
}
@MihailJP
MihailJP / fizzbuzz.hs
Created September 14, 2012 16:44
Fizz Buzz in Haskell
fizzbuzz = [f n | n <- [1..]]
where
f x
| x `mod` 15 == 0 = "Fizz Buzz"
| x `mod` 5 == 0 = "Buzz"
| x `mod` 3 == 0 = "Fizz"
| otherwise = show (fromIntegral x)
main = do print (take 60 fizzbuzz)
@MihailJP
MihailJP / test2038.c
Created October 8, 2012 15:04
Check if your time_t implementation will work after 2038
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
int main () {
time_t time_num[5] = {(time_t)0x00000000, (time_t)0x7fffffff, (time_t)0x80000000, (time_t)0xffffffff,};
struct tm* parsed_time; unsigned int i;
printf("sizeof(time_t) is %d.\n", sizeof(time_t));
for (i = 0; i < 4; i++) {
parsed_time = gmtime(&(time_num[i]));
@MihailJP
MihailJP / d_copy.lua
Created October 22, 2012 14:47
Shallow- and deep-copy of table in Lua
function clone (t) -- deep-copy a table
if type(t) ~= "table" then return t end
local meta = getmetatable(t)
local target = {}
for k, v in pairs(t) do
if type(v) == "table" then
target[k] = clone(v)
else
target[k] = v
end
@MihailJP
MihailJP / matrix.hpp
Created October 23, 2012 08:06
Matrix template (C++11 only!)
#ifndef MATRIX_HPP
#define MATRIX_HPP
#include <array>
#include <initializer_list>
#define MTXTMP template <typename T, unsigned int rows, unsigned int cols>
/* Matrix class template */
MTXTMP class matrix {
@MihailJP
MihailJP / gist:4069788
Created November 14, 2012 02:00
Using wchar_t working with locale
#include <wchar.h>
#include <stdlib.h>
#include <locale.h>
int main() {
char* syslocale = getenv("LANG");
const wchar_t teststr[] =
L"僕と契約して、"
L"プログラマになってよ!";
setlocale(LC_ALL, syslocale);
@MihailJP
MihailJP / 1_wrong.cpp
Created December 7, 2012 20:28
You cannot override a class (static) constant
#include <iostream>
class Parent {
protected:
static const int val = 1;
public:
virtual int getval() {return val;}
};
class Child : public Parent {
@MihailJP
MihailJP / ConstTest1.java
Created December 7, 2012 21:37
You cannot override a class (static) constant (Java)
class Parent {
static final int Val = 1;
public int getval() {
return Val;
}
}
class Child extends Parent {
static final int Val = 2;
}