CyberShadow

1,423
Reputation
141 views

Registered User

Name CyberShadow
Member for 1 year
Seen 23 hours ago
Website
Location Chişinău, Moldova, Eastern Europe
Age 23
Freelance programmer. Maintains a 1999 computer game (Worms Armageddon) as a hobby. Codes in D, C++, Delphi, x86 assembly, PHP/HTML/CSS/JS, occasionally others.
2d
comment User-mode synchronization library for C++
It's true, that's my situation. Since such mutexes are very cheap in terms of resources, I partition my shared resources as much as possible and lock each partition individually - that way, these is practically no contention.
2d
answered Are there any game/graphics engines for the D programming language?
2d
accepted User-mode synchronization library for C++
2d
awarded  Nice Answer
2d
accepted What next generation low level language is the best bet to migrate the code base ?
2d
answered What next generation low level language is the best bet to migrate the code base ?
Nov
29
comment User-mode synchronization library for C++
That statement is a bit out of context, isn't it? Locking a mutex is as simple as while (InterlockedExchange(&x, 1));, and unlocking is x=0;.
Nov
28
revised User-mode synchronization library for C++
clarified performance improvement
Nov
28
answered User-mode synchronization library for C++
Nov
27
comment User-mode synchronization library for C++
Thanks, but I don't really have time to read an entire book at the moment. I've already tried Boost and Win32 synchronization primitives, but I think that my program could run much faster without the overhead of context switches.
Nov
27
comment User-mode synchronization library for C++
Win32 critical sections are not user-mode constructs, are they?
Nov
27
asked User-mode synchronization library for C++
Nov
25
comment C++, an “impossible” behavior
What's at 11A27D4h?
Nov
10
revised Video conversion
edited tags
Nov
2
comment Can Delphi 5 generate a .PDB file that VS can use?
Delphi's debugger can't load minidumps, can it? Minidumps are EXTREMELY useful. Your process crashes, freezes or misbehaves on the customer's machine? Get a minidump, load it, and you're in the debugger as if you're debugging that process. (Of course you can't do anything except examine call stacks and variables.)
Oct
28
comment Some D template questions
@ first question: Yes.
Oct
23
answered Some D template questions
Oct
23
answered How do you go about asking a question at digitalmars.com?
Oct
11
answered Best way to inject functionality into a binary…
Oct
11
accepted D 1.0 (Tango) Move mouse; simulate keyboard presses etc.
Oct
9
comment D 1.0 (Tango) Move mouse; simulate keyboard presses etc.
Please don't jump to conclusions so quickly. As you can see below, this is a Tango-specific problem, thus it's also D-specific.
Oct
9
answered D 1.0 (Tango) Move mouse; simulate keyboard presses etc.
Oct
4
revised Is anyone using D in commercial applications?
added 118 characters in body
Oct
4
answered Is anyone using D in commercial applications?
Oct
4
comment Is anyone using D in commercial applications?
I think MusiGenesis meant function pre contracts ( digitalmars.com/d/2.0/dbc.html ), which are meant specifically for validation of function parameters.
Sep
25
awarded  Yearling
Aug
23
comment How to get the code page of the current keyboard layout?
This method has a flaw: if the default keyboard layout doesn't correspond to the system code page (CP_ACP), then the codepage will not be correct when the application starts.
Aug
21
accepted How should I handle C-strings in D?
Aug
21
comment How should I handle C-strings in D?
The code snippet works for me. Did you import std.compiler (the module where version_major is declared)?
Aug
21
answered How should I handle C-strings in D?
Aug
19
accepted Can you refer to a named enum as if it were anonymous in D?
Aug
19
answered Can you refer to a named enum as if it were anonymous in D?
Aug
18
asked How to get the code page of the current keyboard layout?
Aug
10
awarded  Enlightened
Aug
10
awarded  Nice Answer
Aug
3
comment What are the best free tools for reverse engineering on windows platform?
There really isn't anything anywhere near IDA's level. If you don't like IDA, maybe you're approaching your problem from the wrong angle. Note that IDA has IDC, its own scripting language.
Jul
20
awarded  
Jul
19
answered Scriptable Windows Disassembler [non cygwin]
Jul
14
answered debugging code run in a virtual machine using the host
Jul
13
accepted How would you approach using D in a embedded real-time environment?
Jul
12
revised What are the limitations of primitive character types in D?
edited tags
Jul
12
accepted What are the limitations of primitive character types in D?
Jul
12
answered What are the limitations of primitive character types in D?
Jul
11
answered How would you approach using D in a embedded real-time environment?
Jul
10
awarded  Organizer
Jul
10
answered Make GDC front end emit intermediate C/C++ code?
Jul
8
comment Can WinPcap be used to capture network traffic per process?
It's simple: 1) tasklist /FO CSV | find "filename.exe" - the second value is the PID. 2) netstat -nao | find "PID" - this will give you a list of connections and listening ports for the specified PID.
Jul
1
comment “Exclusive” DirectDraw palette isn’t actually exclusive
When the palette would get stolen, it would usually be the entire (or most of the visible) palette, so it probably wasn't an application setting SetSystemPaletteUse. We added a SetSystemPaletteUse(dc,SYSPAL_NOSTATIC256) call, and it helped in some situations, but hasn't resolved the main problem. Palette space is tight as it is, so we'd rather stay with our occasional flickering than repalletise game or user content.
Jun
30
revised “Exclusive” DirectDraw palette isn’t actually exclusive
added 12 characters in body; edited tags
Jun
28
answered how to clean up microsoft html doc ?