Skip to content

Instantly share code, notes, and snippets.

View vadz's full-sized avatar

VZ vadz

View GitHub Profile
@vadz
vadz / example++98.cpp
Last active December 21, 2015 22:49
A simple wxWidgets example in C++ 98.
#include <wx/wx.h>
class MyFrame : public wxFrame
{
public:
MyFrame() : wxFrame(NULL, wxID_ANY, "Test")
{
wxSizer* sizer = new wxBoxSizer(wxHORIZONTAL);
sizer->Add(new wxStaticText(this, wxID_ANY, "Press to enlarge"), wxSizerFlags().Border().Centre());
#!/usr/bin/env perl6
use Term::ANSIColor;
constant @months = <January February March April May June July
August September October November December>;
my @days = <Su Mo Tu We Th Fr Sa>;
sub center(Str $text, Int $width) {
@vadz
vadz / swig.authors
Created December 7, 2012 22:38
List of SWIG contributors
(no author) = Nobody <nobody ~at~ swig.org>
a11426 = Derrick <a11426 ~at~ users.sourceforge.net>
aahobor = Aquinas Hobor <aahobor ~at~ schlitz.cs.uchicago.edu>
amigalemming = amigalemming <amigalemming ~at~ users.sourceforge.net>
arty = Art Yerkes <ayerkes ~at~ speakeasy.net>
ashishs99 = Ashish Sharma <ashishs99 ~at~ gmail.com>
ballabio = Luigi Ballabio <luigi.ballabio ~at~ fastwebnet.it>
beazley = Dave Beazley <dave-swig ~at~ dabeaz.com>
beckford = Jonah Beckford <beckford ~at~ usermail.com>
bhy = Haoyu Bai <divinekid ~at~ gmail.com>