User Bernard - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T06:12:40Zhttp://stackoverflow.com/feeds/user/61http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/8800/c-best-implementation-for-key-value-pair-data-structure1[C#] Best implementation for Key Value Pair Data Structure?Bernard2008-08-12T13:12:50Z2009-11-28T22:59:43Z
<p>So I've been poking around with C# a bit lately, and all the Generic Collections have me a little confused. Say I wanted to represent a data structure where the head of a tree was a key value pair, and then there is one optional list of key value pairs below that (but no more levels than these). Would this be suitable?</p>
<pre><code>public class TokenTree
{
public TokenTree()
{
/* I must admit to not fully understanding this,
* I got it from msdn. As far as I can tell, IDictionary is an
* interface, and Dictionary is the default implementation of
* that interface, right?
*/
SubPairs = new Dictionary<string, string>();
}
public string Key;
public string Value;
public IDictionary<string, string> SubPairs;
}
</code></pre>
<p>It's only really a simple shunt for passing around data.</p>
http://stackoverflow.com/questions/1581560/how-do-i-get-gdb-working-with-d-programs-under-linux3How do I get gdb working with D programs under linux?Bernard2009-10-17T06:18:05Z2009-11-23T10:24:47Z
<p>I have a patched <code>gdb</code> 6.8, but I can't get any debugging to work. Given this test file:</p>
<pre><code>import std.stdio;
void main()
{
float f = 3.0;
int i = 1;
writeln(f, " ", i);
f += cast(float)(i / 10.0);
writeln(f, " ", i);
i++;
f += cast(float)(i / 10.0);
writeln(f, " ", i);
i += 2;
f += cast(float)(i / 5.0);
writeln(f, " ", i);
}
</code></pre>
<p>And attempting to debug on the command line:</p>
<pre><code>bash-4.0 [d]$ dmd -g test.d # '-gc' shows the same behaviour.
bash-4.0 [d]$ ~/src/gdb-6.8/gdb/gdb test
GNU gdb 6.8
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "i686-pc-linux-gnu"...
(gdb) list
1 ../sysdeps/i386/elf/start.S: No such file or directory.
in ../sysdeps/i386/elf/start.S
</code></pre>
<p>And debugging a project with Eclipse</p>
<p>Using <code>-gc</code>:</p>
<pre><code>Dwarf Error: Cannot find DIE at 0x134e4 referenced from DIE at 0x12bd4 [in module /home/bernard/projects/drl/drl.i386]
(gdb) Dwarf Error: Cannot find DIE at 0x1810 referenced from DIE at 0x1b8 [in module /home/bernard/projects/drl/drl.i386]
</code></pre>
<p>Using <code>-g</code>:</p>
<pre><code>(gdb) Die: DW_TAG_<unknown> (abbrev = 7, offset = 567)
has children: FALSE
attributes:
DW_AT_byte_size (DW_FORM_data1) constant: 4
DW_AT_type (DW_FORM_ref4) constant ref: 561 (adjusted)
DW_AT_containing_type (DW_FORM_ref4) constant ref: 539 (adjusted)
Dwarf Error: Cannot find type of die [in module /home/bernard/projects/drl/drl.i386]
</code></pre>
<p>I've seen quite a few posts like this on the Digital Mars newsgroup, but all are seemingly ignored. Can anyone shed some light on the situation?</p>
<p>I know of ZeroBUGS, but I really want to get <code>gdb</code> working.</p>
<p><strong>Update:</strong></p>
<p>Thanks to luca_, on IRC (freenode, #D), I got the simple case (one file) working:</p>
<pre><code>(gdb) list Dmain
1 void main()
2 {
3 float f = 3.0;
4 int i = 1;
5 f += cast(float)(i / 10.0);
6 i++;
7 f += cast(float)(i / 10.0);
8 i += 2;
9 f += cast(float)(i / 5.0);
10 }
(gdb) break 3
</code></pre>
<p>Unfortunately, my project made up of multiple files dies with a DWARF error.</p>
http://stackoverflow.com/questions/1581560/how-do-i-get-gdb-working-with-d-programs-under-linux/1782256#17822560Answer by Bernard for How do I get gdb working with D programs under linux?Bernard2009-11-23T10:24:47Z2009-11-23T10:24:47Z<p>The answer, it seems, is to use <a href="http://bitbucket.org/goshawk/gdc/wiki/Home" rel="nofollow">GDC</a>, if you can stand going back to D 2.015 (this is for D2, I have no idea how old the D1 stuff is). GDB works great.</p>
http://stackoverflow.com/questions/196876/is-there-a-better-way-to-get-a-named-series-of-constants-enumeration-in-python13Is there a better way to get a named series of constants (enumeration) in Python?Bernard2008-10-13T06:43:47Z2009-11-20T01:47:25Z
<p>Just looking at ways of getting named constants in python.</p>
<pre><code>class constant_list:
(A_CONSTANT, B_CONSTANT, C_CONSTANT) = range(3)
</code></pre>
<p>Then of course you can refer to it like so: </p>
<pre><code>constant_list.A_CONSTANT
</code></pre>
<p>I suppose you could use a dictionary, using strings: </p>
<pre><code>constant_dic = {
"A_CONSTANT" : 1,
"B_CONSTANT" : 2,
"C_CONSTANT" : 3,}
</code></pre>
<p>and refer to it like this:</p>
<pre><code>constant_dic["A_CONSTANT"]
</code></pre>
<p><hr /></p>
<p>My question, then, is simple. Is there any better ways of doing this? Not saying that these are inadequate or anything, just curious - any other common idioms that I've missed?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/296/should-i-learn-c/346#34694Answer by Bernard for Should I learn C?Bernard2008-08-02T04:23:47Z2009-10-28T09:51:57Z<p>My answer is "yes, but don't feel pressured to do so". I think learning C could be considered almost a historical experience, as it is the origin of most modern syntax. Besides, you'd be hard pressed to find a programming book better than <a href="http://rads.stackoverflow.com/amzn/click/0131103628" rel="nofollow">The C Programming Language</a> - it's just so brief and readable.</p>
<p>All that said, it is certainly not essential. If you want to, try it. If not, don't.</p>
http://stackoverflow.com/questions/1613963/some-d-template-questions/1614068#16140680Answer by Bernard for Some D template questionsBernard2009-10-23T15:04:03Z2009-10-23T15:04:03Z<p>As to 2, can't you just use a normal if statement?</p>
http://stackoverflow.com/questions/1612366/automated-builds-and-stdin/1612404#16124041Answer by Bernard for Automated builds and STDINBernard2009-10-23T09:47:05Z2009-10-23T09:56:32Z<p>Read from <code>/dev/null</code>. It will always return EOF. This is achieved in different ways depending on how your build system is setup. A command line app can use <code>< /dev/null</code>, of course. </p>
http://stackoverflow.com/questions/1598514/infinite-loop-on-eof-in-c/1598822#15988220Answer by Bernard for Infinite loop on EOF in C++Bernard2009-10-21T05:06:56Z2009-10-21T05:06:56Z<p>Err, I may be missing something, but I don't ever see you <code>break</code> out of the <code>while (true)</code> loop.</p>
<pre><code>// ...
while (true) {
if (std::cin.eof()) {
break;
}
// ...
}
</code></pre>
http://stackoverflow.com/questions/1478827/how-to-provide-platform-independent-keycodes/1478902#14789020Answer by Bernard for how to provide platform independent keycodesBernard2009-09-25T18:31:37Z2009-09-25T18:31:37Z<p>IME, they usually define their own key constants and place those into their keyboard input event structure (after reading the code in a platform specific manner, which is usually hidden from the user). SDL does it this way at least. I think any method you choose will have a translation table at its core in some way or another. Where that translation takes place (e.g. do you translate at the client or the server?) is up to you.</p>
http://stackoverflow.com/questions/1324942/how-do-i-initialise-a-global-array-of-structs-in-d2How do I initialise a global array of structs in D?Bernard2009-08-24T21:44:13Z2009-08-24T22:38:24Z
<p>In aid of my one-man quest to populate SO with D questions (=p), I've run into another problem; initialising an array of structs globally. Observe:</p>
<pre><code>struct A
{
int a;
float b;
}
A[2] as;
as[0] = {0, 0.0f};
as[1] = {5, 5.2f};
void main() {}
</code></pre>
<p>Results in:</p>
<pre><code>$ dmd wtf.d
wtf.d(8): no identifier for declarator as[0]
wtf.d(9): no identifier for declarator as[1]
</code></pre>
<p>Looking through the docs at <a href="http://www.digitalmars.com/d" rel="nofollow">Digital Mars</a>, I can't really see anything entirely obvious to me, so I turn once more to the brave denizens of Stack Overflow! I'm guessing the error message doesn't have much to do with the real problem, as surely as[0] <em>is</em> an identifier (but <code>dmd</code> thinks it's a declarator, which AFAICT looking over the <a href="http://www.digitalmars.com/d" rel="nofollow">docs</a>, it isn't)?</p>
http://stackoverflow.com/questions/1314063/how-should-i-handle-c-strings-in-d3How should I handle C-strings in D?Bernard2009-08-21T20:31:44Z2009-08-21T20:46:09Z
<p>I'm converting the header files of a C library to D modules, and was wondering how I should handle C strings.</p>
<p>Using DMD 1, this works:</p>
<pre><code>void f(char* s); // Definition for C library's function.
</code></pre>
<p>But using DMD 2 (which I personally use, but I would like the modules to work for both) strings are const, so to get the same code using the modules to work requires</p>
<pre><code>void f(const(char)* s); // Definition for C library's function.
</code></pre>
<p>What should I do? Just use <code>char*</code> and make the 'client' code make the strings mutable somehow? Or modify the type depending on the version of the compiler compiling the code? If the former, what's the best way to make them mutable? I thought .dup would do it, but the compiler wasn't having a bar of it. If the latter, how would I go about doing it? I tried this:</p>
<pre><code>version (D_Version2) {
alias const(char)* charptr;
} else {
alias char* charptr;
}
void f(charptr s);
</code></pre>
<p>But alas, the DMD 2 version isn't valid code for DMD 1, and all code in version blocks must be valid code for the compiler compiling the code, even if the code wouldn't be included in the resulting executable. So currently the code compiles in both, but you have to modify the alias first which, as you can imagine, isn't ideal.</p>
http://stackoverflow.com/questions/1301534/can-you-refer-to-a-named-enum-as-if-it-were-anonymous-in-d3Can you refer to a named enum as if it were anonymous in D?Bernard2009-08-19T17:47:06Z2009-08-19T19:33:50Z
<p>I'm doing a D bridge to a C library, and this has come up with the C code using typedef'd enums that it refers to like a constant, but can name it for function arguments and the like. Example: </p>
<pre><code>enum someLongNameThatTheCLibraryUses
{
A,
B,
}
</code></pre>
<p>Currently, I must refer to it like so:</p>
<pre><code>someLongNameThatTheCLibraryUses.A;
</code></pre>
<p>But I would rather:</p>
<pre><code>A;
</code></pre>
<p>I could do this:</p>
<pre><code>alias someLongNameThatTheCLibraryUses a;
a.A;
</code></pre>
<p>But I don't want to do that in the library module, so I'd have to do it where it's used, which would be annoying.</p>
<p>Is there a way to do this?</p>
http://stackoverflow.com/questions/15709/is-this-valid-yaml1Is this valid YAML?Bernard2008-08-19T04:38:51Z2009-08-19T09:51:08Z
<p>So for my text parsing in C# <a href="http://beta.stackoverflow.com/questions/13963/best-method-of-textfile-parsing-in-c" rel="nofollow">question</a>, I got directed at YAML. I'm hitting a wall with this library I was recommended, so this is a quickie.</p>
<pre><code>heading:
name: A name
taco: Yes
age: 32
heading:
name: Another name
taco: No
age: 27
</code></pre>
<p>And so on. Is that valid?</p>
http://stackoverflow.com/questions/787850/what-is-the-correct-way-to-clean-up-when-using-pyopenal0What is the correct way to clean up when using PyOpenAL?Bernard2009-04-24T23:45:17Z2009-08-17T15:58:51Z
<p>I'm looking at PyOpenAL for some sound needs with Python (obviously). Documentation is sparse (consisting of a demo script, which doesn't work unmodified) but as far as I can tell, there are two layers. Direct wrapping of OpenAL calls and a lightweight 'pythonic' wrapper - it is the latter I'm concerned with. Specifically, how do you clean up correctly? If we take a small example:</p>
<pre><code>import time
import pyopenal
pyopenal.init(None)
l = pyopenal.Listener(22050)
b = pyopenal.WaveBuffer("somefile.wav")
s = pyopenal.Source()
s.buffer = b
s.looping = False
s.play()
while s.get_state() == pyopenal.AL_PLAYING:
time.sleep(1)
pyopenal.quit()
</code></pre>
<p>As it is, a message is printed on to the terminal along the lines of "one source not deleted, one buffer not deleted". But I am assuming the we can't use the native OpenAL calls with these objects, so how do I clean up correctly?</p>
<p>EDIT:</p>
<p>I eventually just ditched pyopenal and wrote a small ctypes wrapper over OpenAL and alure (pyopenal exposes the straight OpenAL functions, but I kept getting SIGFPE). Still curious as to what I was supposed to do here.</p>
http://stackoverflow.com/questions/88/is-gettimeofday-guaranteed-to-be-of-microsecond-resolution13Is gettimeofday() guaranteed to be of microsecond resolution?Bernard2008-08-01T14:36:18Z2009-07-30T22:51:50Z
<p>So I find myself porting a game that was originally written for the Win32 API to Linux (well, porting the OS X port of the Win32 port to Linux), and have implemented QueryPerformanceCounter by giving the uSeconds since the process start up: </p>
<pre><code>BOOL QueryPerformanceCounter(LARGE_INTEGER* performanceCount)
{
gettimeofday(&currentTimeVal, NULL);
performanceCount->QuadPart = (currentTimeVal.tv_sec - startTimeVal.tv_sec);
performanceCount->QuadPart *= (1000 * 1000);
performanceCount->QuadPart += (currentTimeVal.tv_usec - startTimeVal.tv_usec);
return true;
}
</code></pre>
<p>This, coupled with QueryPerformanceFrequency() giving a constant 1000000 as the frequency works well <b>on my machine</b>, giving me a 64 bit variable that contains uSeconds since the program's start up. So <em>is this portable?</em> I don't want to discover it works differently if the kernel was compiled in a certain way or anything like that. I am fine with it being non-portable to something other than Linux, however.</p>
http://stackoverflow.com/questions/1184288/need-help-with-git-commands-for-development-workflow/1184352#11843520Answer by Bernard for Need help with Git commands for development workflowBernard2009-07-26T11:32:47Z2009-07-26T11:32:47Z<p>git stash is what you're looking for, I believe.</p>
http://stackoverflow.com/questions/1176748/how-do-i-add-items-to-a-gtk-combobox-created-through-glade-at-runtime1How do I add items to a gtk.ComboBox created through glade at runtime?Bernard2009-07-24T10:01:58Z2009-07-24T12:03:09Z
<p>I'm using Glade 3 to create a GtkBuilder file for a PyGTK app I'm working on. It's for managing bandwidth, so I have a gtk.ComboBox for selecting the network interface to track. </p>
<p>How do I add strings to the ComboBox at runtime? This is what I have so far:</p>
<pre><code>self.tracked_interface = builder.get_object("tracked_interface")
self.iface_list_store = gtk.ListStore(gobject.TYPE_STRING)
self.iface_list_store.append(["hello, "])
self.iface_list_store.append(["world."])
self.tracked_interface.set_model(self.iface_list_store)
self.tracked_interface.set_active(0)
</code></pre>
<p>But the ComboBox remains empty. I tried RTFM'ing, but just came away more confused, if anything.</p>
<p>Cheers.</p>
http://stackoverflow.com/questions/1176748/how-do-i-add-items-to-a-gtk-combobox-created-through-glade-at-runtime/1176848#11768481Answer by Bernard for How do I add items to a gtk.ComboBox created through glade at runtime?Bernard2009-07-24T10:31:33Z2009-07-24T10:31:33Z<p>Hey, I actually get to answer my own question!</p>
<p>You have to add gtk.CellRendererText into there for it to actually render:</p>
<pre><code>self.iface_list_store = gtk.ListStore(gobject.TYPE_STRING)
self.iface_list_store.append(["hello, "])
self.iface_list_store.append(["world."])
self.tracked_interface.set_model(self.iface_list_store)
self.tracked_interface.set_active(0)
# And here's the new stuff:
cell = gtk.CellRendererText()
self.tracked_interface.pack_start(cell, True)
self.tracked_interface.(cell, "text", 0)
</code></pre>
<p>Retrieved from, of course, the <a href="http://faq.pygtk.org/index.py?req=show&file=faq16.008.htp" rel="nofollow">PyGTK FAQ</a>.</p>
http://stackoverflow.com/questions/1053255/can-you-explain-this-hello-world-program/1053302#10533021Answer by Bernard for Can you explain this 'Hello world' program?Bernard2009-06-27T17:45:53Z2009-06-27T17:45:53Z<p>Filler so the next line is recognised as a code block</p>
<pre><code>#include <stdio.h>
</code></pre>
<p>This says, "search in the compilers search path for include files for the file 'stdio.h', and insert the contents of the files here. Note that this happens before the compiler even sees it.</p>
<pre><code>void SayHello( void );
</code></pre>
<p>This is a function prototype. It essentially says "there will be a function defined that matches this signature.</p>
<pre><code>int main (int argc, const char * argv[]) {
SayHello();
</code></pre>
<p>This calls the afore mentioned function. When this is reached, execution goes into the function's body, and returns when the function ends.</p>
<pre><code> return 0;
</code></pre>
<p>The value 0 is returned to the system (which means no error, by convention) and the program exits.
}</p>
<pre><code>void SayHello( void ) {
printf( "Hello, world!\n" );
</code></pre>
<p>This calls the C standard library function printf, and prints the given string to stdout.</p>
<pre><code>}
</code></pre>
http://stackoverflow.com/questions/166051/how-should-i-name-packages-if-i-dont-have-a-domain-associated-with-me7How should I name packages if I don't have a domain associated with me?Bernard2008-10-03T09:12:58Z2009-05-04T00:11:49Z
<p>So most Java resources when speaking of packages mention a <code>com.yourcompany.project</code> setup. However, I do not work for a company, and don't have a website. Are there any naming conventions that are common? An email address, perhaps?</p>
http://stackoverflow.com/questions/787849/python-2-5-dated/787862#7878625Answer by Bernard for python 2.5 dated?Bernard2009-04-24T23:50:10Z2009-04-24T23:55:25Z<p>Basically, python code, for the moment, will be divided into python 2.X code and python 3 code. Python 3 breaks many changes in the interest of cleaning up the language. The majority of code and libraries are written for 2.X in mind. It is probably best to learn one, and know what is different with the other. On an ubuntu machine, the <code>python3</code> package will install Python 3, which can be run with the command <code>python3</code>, at least on my 8.10 install.</p>
<p>To answer your question, learning with 2.5 is fine, just keep in mind that 3 is a significant change, and learn the changes - ask yourself as you code, "how would this be different in 3, if at all?".</p>
<p>(As an aside, I do wish Ubuntu would upgrade to 2.6 though. It has a nice compatibility mode which tries and points out potential difficulties. But python is in such big use on a modern Linux distro, it can be a difficult change to make)</p>
<p><a href="http://docs.python.org/3.0/whatsnew/3.0.html" rel="nofollow">Here's an article describing 2.6 -> 3's changes</a></p>
http://stackoverflow.com/questions/728049/glutpassivemotionfunc-and-glutwarpmousepointer/728189#7281890Answer by Bernard for glutPassiveMotionFunc and glutWarpMousePointerBernard2009-04-08T01:29:04Z2009-04-08T01:29:04Z<p>I don't have too much experience with glut, save for red-book examples, but is it jerky because of what you're drawing for the cursor, or how often you're drawing it? If you just draw a point where the cursor is supposed to be using OpenGL calls, is it still jerky? Could your timing code be an issue?</p>
<p>What code are you calling to update the pointer every tick? I assume it isn't the code listed as you would be calculating the centre point every time, instead of on a resize event.</p>
<p>My apologies for blindly answering here (i.e. with limited glut experience). </p>
http://stackoverflow.com/questions/708654/how-to-check-if-microphone-is-on/708821#7088210Answer by Bernard for How To Check If Microphone Is OnBernard2009-04-02T08:34:43Z2009-04-02T08:34:43Z<p>No VB experience, but if you want to check if a users mic is working (and as far as you can see programmatically it is), it may be helpful to look at how an app like Skype does it; asking the user to verify manually (version 4 does quite well with this, I think). Games like <em>Enemy Territory: Quake Wars</em> and the Source Engine games do similar things. Of course, that may not be appropriate for what you are doing, and something like Will suggests may be far more appropriate.</p>
http://stackoverflow.com/questions/604104/does-c-allocate-memory-automatically-for-me/604131#6041312Answer by Bernard for Does C allocate memory automatically for me?Bernard2009-03-02T21:43:30Z2009-03-02T21:59:15Z<blockquote>
<p>My question is, how does C allocate memory when I haven't actually malloc()ed the appropriate amount of memory? What's the default?</p>
</blockquote>
<p>To not allocate memory. You have to explicity create it on the stack or dynamically.</p>
<p>In your example, subcells points to an <em>undefined</em> location, which is a bug. Your function should return a pointer to a Cell struct at some point.</p>
http://stackoverflow.com/questions/576396/why-does-strlen-appear-to-return-void-in-the-vc-debugger/576414#576414-1Answer by Bernard for Why does strlen() appear to return <void> in the VC++ debugger?Bernard2009-02-23T03:04:05Z2009-02-23T03:04:05Z<p>It can't return void. Void is the lack of a return value, so you can't, err, return it.</p>
<p>How do you check for void anyway? Void isn't a value. Please demonstrate how you are getting void. Is it compile time or run time?</p>
<p>If you do in fact have a system where <code>strlen</code> is declared with a <code>void</code> return type, run as fast as you can in the other direction.</p>
http://stackoverflow.com/questions/558657/whats-the-difference-between-an-algorithm-and-a-design-pattern/558669#5586690Answer by Bernard for What's the difference between an Algorithm and a Design PatternBernard2009-02-17T20:53:41Z2009-02-17T20:53:41Z<p>A design pattern would determine how you design an algorithm (or may have nothing to do with algorithms, but let's say we're dealing with one that does), whereas an algorithm will be a set of solid, repeatable, implementable, steps to doing something. So no, I wouldn't call them interchangable.</p>
http://stackoverflow.com/questions/526660/just-started-c-undefined-symbol-error-on-compile/526668#5266683Answer by Bernard for Just started C++: Undefined Symbol error on CompileBernard2009-02-08T23:41:04Z2009-02-08T23:41:04Z<p>You need a main function:</p>
<pre><code>// The arguments are only needed if passing arguments to your program.
// You could just use `int main()`.
int main(int argc, char** argv)
{
Race race;
race.executeRace();
}
</code></pre>
<p>or so, without seeing your specific error. </p>
http://stackoverflow.com/questions/500006/what-is-the-purpose-of-anonymous-blocks-in-c-style-languages/500025#5000251Answer by Bernard for What is the purpose of anonymous { } blocks in C style languages?Bernard2009-02-01T02:07:03Z2009-02-01T02:07:03Z<p>If you are limited to ANSI C, then they could be used to declare variables closer to where you use them:</p>
<pre><code>int main() {
/* Blah blah blah. */
{
int i;
for (i = 0; i < 10; ++i) {
}
}
}
</code></pre>
<p>Not neccessary with a modern C compiler though.</p>
http://stackoverflow.com/questions/37105/how-do-you-actually-read-source-code/37222#3722210Answer by Bernard for How do you actually read source code?Bernard2008-08-31T22:52:30Z2009-01-29T15:53:32Z<p>Excellent question. I know of only three ways: implement a feature, fix a bug, or write a test case. </p>
http://stackoverflow.com/questions/336/when-to-use-unsigned-values-over-signed-ones6When to use unsigned values over signed ones?Bernard2008-08-02T03:34:44Z2008-12-26T18:12:34Z
<p>So I hear a lot of opinions about this, and I wanted to see if there was anything resembling a consensus. When is it appropriate to use an unsigned variable over a signed one? What about in a <strong>for</strong> loop?</p>
<pre><code>for (unsigned int i = 0; i < someThing.length(); i++) { <br> SomeThing var = someThing.at(i); <br> // You get the idea. <br>}<br></code></pre>
<p>As I said, I hear a lot of opinions, but not a lot of consensus. I know Java doesn't have unsigned values, and that must have been a concious decision on Sun's part. </p>
<p>Looking forward to hearing everybody's opinion. </p>
http://stackoverflow.com/questions/1612451/executing-external-program-via-system-does-not-run-properlyComment by Bernard on Executing external program via system() does not run properlyBernard2009-10-23T10:03:47Z2009-10-23T10:03:47ZThe redirection operators only work in the shell environment, and won't affect the behaviour of the app via system. Are you sure the files are not being created else where? http://stackoverflow.com/questions/1612451/executing-external-program-via-system-does-not-run-properlyComment by Bernard on Executing external program via system() does not run properlyBernard2009-10-23T10:00:21Z2009-10-23T10:00:21ZHow do you launch the parent app?http://stackoverflow.com/questions/1581560/how-do-i-get-gdb-working-with-d-programs-under-linux/1582706#1582706Comment by Bernard on How do I get gdb working with D programs under linux?Bernard2009-10-17T23:58:12Z2009-10-17T23:58:12ZUnfortunately, CVS Head exhibits the same problems. This: <a href="http://d.puremagic.com/issues/show_bug.cgi?id=1079" rel="nofollow">d.puremagic.com/issues/show_bug.cgi?id=1079/…</a> makes me think it could be an issue with gdb. That said, ZeroBUGS works (or worked -- it won't run on this machine (and plus, Descent doesn't support it, hence wanting to get gdb working)), so it could be gdb all the same. I might have to learn of DWARF and dmd and gdb and see what I can do. No debugging bites the big one. I can't even get a stack strace (If I'm lucky, the very top function may show up)! Thanks for the info though. Gives me more places to look.http://stackoverflow.com/questions/1576409/in-a-makefile-how-do-i-execute-a-command-on-each-file-name-in-variable/1576466#1576466Comment by Bernard on In a makefile, how do I execute a command on each file name in variable?Bernard2009-10-16T06:48:57Z2009-10-16T06:48:57ZIndeed, pattern rules are the way to go.http://stackoverflow.com/questions/35762/linux-gui-development/35768#35768Comment by Bernard on Linux GUI developmentBernard2009-10-06T07:01:42Z2009-10-06T07:01:42ZIndeed. It is a great improvement over the previous situation.http://stackoverflow.com/questions/1478848/how-get-header-to-crash-on-stack-buffer-overflowComment by Bernard on how get header to crash on stack buffer overflowBernard2009-09-25T18:26:44Z2009-09-25T18:26:44ZI cannot make heads nor tail of what you are asking. Could you clarify with details, please?http://stackoverflow.com/questions/409/what-is-your-favorite-coding-guidelines-checklist/416#416Comment by Bernard on What is your favorite Coding Guidelines Checklist?Bernard2009-09-16T14:14:23Z2009-09-16T14:14:23ZLiran: I just follow the aesthetic guidelines, mostly. http://stackoverflow.com/questions/296/should-i-learn-c/346#346Comment by Bernard on Should I learn C?Bernard2009-09-16T14:12:00Z2009-09-16T14:12:00Z@Dan: I'm running Debian. Most of the desktop software I use <i>is</i> written in C. =p
I do want to point out that at no point in my response did I call C 'legacy'.http://stackoverflow.com/questions/1324942/how-do-i-initialise-a-global-array-of-structs-in-d/1325150#1325150Comment by Bernard on How do I initialise a global array of structs in D?Bernard2009-08-25T06:40:51Z2009-08-25T06:40:51Zvoid initialisers (A[2] as = void;) ensure that memory is not initialised. So this is great; thanks.http://stackoverflow.com/questions/1324942/how-do-i-initialise-a-global-array-of-structs-in-d/1324978#1324978Comment by Bernard on How do I initialise a global array of structs in D?Bernard2009-08-24T21:58:28Z2009-08-24T21:58:28ZD'oh. I tried this, but forgot I was using D and did the C-style {{},{}} syntax. Thanks.http://stackoverflow.com/questions/1314063/how-should-i-handle-c-strings-in-d/1314132#1314132Comment by Bernard on How should I handle C-strings in D?Bernard2009-08-21T21:07:27Z2009-08-21T21:07:27ZNevermind, I am a moron (importing modules ABOVE the definition :o).http://stackoverflow.com/questions/1314063/how-should-i-handle-c-strings-in-d/1314132#1314132Comment by Bernard on How should I handle C-strings in D?Bernard2009-08-21T21:05:23Z2009-08-21T21:05:23ZActually, it doesn't even work for DMD 1. If I use <code>version(D_Version2) { mixin() } else { alias }</code> DMD 1 works, but DMD 2 gets the same results. http://stackoverflow.com/questions/1314063/how-should-i-handle-c-strings-in-d/1314132#1314132Comment by Bernard on How should I handle C-strings in D?Bernard2009-08-21T21:02:15Z2009-08-21T21:02:15ZI did now; same result. v2.0.31http://stackoverflow.com/questions/1314063/how-should-i-handle-c-strings-in-d/1314132#1314132Comment by Bernard on How should I handle C-strings in D?Bernard2009-08-21T20:55:43Z2009-08-21T20:55:43ZHello again. I ought to be paying you :]. The mixin trick doesn't work; <code>Error: identifier 'charptr' is not defined</code>. That makes sense; I don't think there are actually any functions that use a buffer, but I'll keep it in mind. re <code>LPCSTR</code>: My unix sensibilities would be too offended by this, I think. <code>cstring</code>?http://stackoverflow.com/questions/1301534/can-you-refer-to-a-named-enum-as-if-it-were-anonymous-in-d/1302175#1302175Comment by Bernard on Can you refer to a named enum as if it were anonymous in D?Bernard2009-08-19T20:20:27Z2009-08-19T20:20:27ZAnd by extension, you. :p