Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View MihailJP's full-sized avatar

MihailJP MihailJP

View GitHub Profile
@MihailJP
MihailJP / timezone.c
Created April 20, 2013 16:55
Find the time zone
#include <time.h>
signed long getTZ ()
{
struct tm* timeStruct;
time_t timeValBase = 86400; /* I know an implementation in which time_t is unsigned */
time_t timeVal;
timeStruct = gmtime(&timeValBase); /* parse as the universal time */
timeVal = mktime(tp); /* intentionally treat as the local time in order to find the time zone */
@MihailJP
MihailJP / paco-glib-issue.patch
Created January 8, 2013 04:21
Patch to compile GPACO with newer GLIB/GTKMM
diff -ru paco-2.0.9/gpaco/gconfig.h paco-2.0.9-newglib/gpaco/gconfig.h
--- paco-2.0.9/gpaco/gconfig.h 2010-06-26 04:51:00.000000000 +0900
+++ paco-2.0.9-newglib/gpaco/gconfig.h 2013-01-08 13:03:12.497896388 +0900
@@ -11,7 +11,7 @@
#include "paco/baseconfig.h"
#include <glibmm/ustring.h>
-#include <glib/gkeyfile.h>
+#include <glib.h>
#include <vector>
@MihailJP
MihailJP / hsp.xml
Created January 1, 2013 01:48
Notepad++ syntax highlighting definition file for Hot Soup Processor
<NotepadPlus>
<UserLang name="HSP" ext="hsp as" udlVersion="2.0">
<Settings>
<Global caseIgnored="yes" allowFoldOfComments="no" forceLineCommentsAtBOL="no" foldCompact="no" />
<Prefix Keywords1="no" Keywords2="no" Keywords3="no" Keywords4="no" Keywords5="no" Keywords6="no" Keywords7="no" Keywords8="no" />
</Settings>
<KeywordLists>
<Keywords name="Comments" id="0">00// 00; 01 02 03/* 04*/</Keywords>
<Keywords name="Numbers, additional" id="1"></Keywords>
<Keywords name="Numbers, prefixes" id="2">0x 0b $ %</Keywords>
@MihailJP
MihailJP / hsp.xml
Created January 1, 2013 01:44
Kate syntax highlighting definition file for Hot Soup Processor
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE language SYSTEM "language.dtd">
<language name="Hot Soup Processor" section="Sources" version="1.00" extensions="*.hsp;*.as">
<highlighting>
<list name="keywords">
<item> await </item>
<item> break </item>
<item> continue </item>
<item> else </item>
<item> end </item>
@MihailJP
MihailJP / gist:4246185
Created December 9, 2012 17:23
Immediate object as a static member
#include <iostream>
using std::cout; using std::endl;
// A class whose instance will be included as a member of a monostate class
class CContent {
public:
CContent() {cout << "CContent constructor" << endl;}
~CContent() {cout << "CContent destructor" << endl;}
void speak() {cout << "Bonjour le monde !" << endl;}
@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;
}
@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 / 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 / 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 / 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)