Calendar
September 2024 M T W T F S S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 Find
Categories
- 10 Years Internet (1)
- Gross vs. Good (6)
- Haiku (17)
- Hyperlinks (453)
- More-of-this (5)
- Neologic (12)
- Ordinateurs (271)
- Hardware (12)
- Moveable-Types (7)
- Programming (53)
- SQL (13)
- Ubuntu (20)
- Video Games (45)
- Civilization (13)
- Game reviews (1)
- Wordpress (28)
- xbox (2)
- Past-the-bridge (50)
- Provincial-Scotia (30)
- Recipes (1)
- RoundAbout (8)
- Saint John NB (65)
- Scientifically (66)
- The Chest Desire (61)
- NS in movies (2)
- Those-wonder-years (40)
- Tourism Canada (4)
- Truro NS (379)
- Uncategorized (4)
- We-reflect-news (215)
- xsamplex (96)
- You-Asked (16)
Archives
Meta
Overthere
- * Arthur's github
- * Arthur's photos
- * Arthur's tweets
- 3 Quarks Daily
- A Ghost of a Flea
- Acts of Volition
- Barefoot
- Bjoern Hansen
- BurningBird
- Butterfly and Wheels
- Cleverhack
- Crooked Timber
- Crooks and Liars
- Culturecat
- DailyKos
- Defective Yeti
- Empty Bottle
- Gothamist
- John Lyon’s
- Kottke’s
- Lisa Rein’s
- Mediatinker
- Mernit’s
- MySaintJohn
- Paul Miller’s
- Pharyngula
- Pixelcharmer’s
- ReedManiac
- Ruk
- Sadly, No.
- Seltzer’s
- Textisms
- The Burning Edge
- The Null Device
- The Panda’s Thumb
- There Is No Cat
- Yule log
Stickies
Category Archives: Programming
Canvas
During my programming career, I’ve ran into several cases where I absolutely had to use owner-draw to accomplish customized drawing. Originally, as a Delphi programmer, this required knowledge of the specific graphic wrappers around the Windows GDI (and GDI+) functions … Continue reading
FFMpeg
Between all the ripping of my (legally) purchased DVDs and transcoding them to the proper format for my iPod I found out that most of the applications that I used have something in common (from Videora [free] to Mediacoder (open … Continue reading
Posted in Ordinateurs, Programming
Tagged .Net, C#, ffmpeg, iPod Touch, Windows
Comments Off on FFMpeg
Speed
I thought Mark’s posting about the new Adobe Acrobat 9 was the hilarious. If you’re into more snark, try the Adobe Acrobat 9 installation guide as done by the MicroPledge site. After the unpacking, the install process itself took 10 … Continue reading
Posted in Hyperlinks, Ordinateurs, Programming
Tagged Adobe, Borland, Delphi, software
Comments Off on Speed
PropertyGrids in C#
Yesterday, I decided to tackle .Net’s PropertyGrid component: for Helios, I was working on code to allow users to view Datasource-specific data at run-time. For this, I already had several support objects programmed and ready to go, and what better … Continue reading
CVS meet Enscript
Last night, I was installing CVS on my Debian box. Actually, it was already installed: the CVSROOT was ready to go and the service itself had been listening since the early days. However, I never finished assigning rights to myself, … Continue reading
Posted in Ordinateurs, Programming
Tagged C#, Debian, Linux, programming
Comments Off on CVS meet Enscript
Owner-draw (II)
Earlier, which is, almost a year ago, I was comparing owner-draw programming in Delphi and C# and concluded that it’s quite similar: basically you set any visual component in a particular mode (‘I’m going to take care of drawing the … Continue reading
Is there a statistician in the house?
I downloaded the Visual Studio 2008 Express Edition ISO from the Microsoft site and discovered that specific stuff I was looking for isn’t supported in that special edition. I guess there is (or rather was) a huge difference between ‘Orcas’ … Continue reading
Posted in Programming
Tagged .Net, C#, programming
Comments Off on Is there a statistician in the house?
SoundEx
A couple of days ago, it was the 70th birthday of Donald Knuth (or rather, his webpage), who as you found out, is hero to many programmers around. I think he’s still working on completing his masterwork, ‘The Art Of … Continue reading
Passwords
A couple of months ago (around the same time that I was looking into the sources of the .Net version of KeepPass) I ran into this page: an algorithm to generate pronounceable passwords1. Well, at least a bit more pronounceable … Continue reading
Oh. Noes!
Yesterday, my two sets of Ubuntu 7.10 (“Gutsy Gibbon”) arrived by snail-mail, which means that I’ll be upgrading my ‘v1r7u41 b0xen’ this weekend. Once again, the package came with free stickers. Hey, Sun, what’s that? Still no free stickers with … Continue reading
Word
I was looking for dictionaries the other day after finding myself impressed by Ubuntu’s Dictionary program. I found out that it actually uses the gdict set of XML files, and you can find around the freedict site (you probably need … Continue reading
Copy, Paste.
Via something, I ran into this (online) sarcastic presentation about Copy Paste Programming (Wikipedia). A quick summary: Best practices: Find the code, copy/paste it, compile, enjoy! Pitfalls and workarounds: The copied/pasted code does not compile. Copy/Paste larger portion of code. … Continue reading
Posted in Programming
Comments Off on Copy, Paste.
Hey, hey.
Today, I discovered that the StringReaders/Writers in .Net only support UTF-16 encoding, which may lead to some breakage if you’re using it in combination with the XMLSerializer object. If you really need to maintain UTF-8 compatibility, you should use a … Continue reading