User efotinis - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T23:23:42Zhttp://stackoverflow.com/feeds/user/12320http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1763739/problem-retuning-a-vector-from-a-c-dll-to-another-c-exe/1763874#17638743Answer by efotinis for Problem retuning a vector from a c++ dll to another c++ exe efotinis2009-11-19T14:58:54Z2009-11-19T14:58:54Z<p>This is a classic symptom of mismatched runtime libraries. You have to make sure that both the EXE and the DLL are linked to the dynamic C++ library (DLL version).</p>
<p>If one (or both) are linked with the static C++ runtime (LIB version), you'll get memory violations since there will be two instances of the runtime library with different address spaces.</p>
http://stackoverflow.com/questions/1523981/api-for-giving-notification-when-a-file-is-added-or-deleted-in-a-folder/1524000#15240004Answer by efotinis for API for Giving Notification when a file is added or deleted in a folderefotinis2009-10-06T06:58:13Z2009-10-06T06:58:13Z<p><a href="http://msdn.microsoft.com/en-us/library/aa364417%28VS.85%29.aspx" rel="nofollow">FindFirstChangeNotification</a> will notify you when something changes.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa365465%28VS.85%29.aspx" rel="nofollow">ReadDirectoryChangesW</a> can give you the exact details of what changed.</p>
http://stackoverflow.com/questions/1013778/python-file-size/1014653#10146530Answer by efotinis for python file sizeefotinis2009-06-18T19:16:56Z2009-06-18T19:16:56Z<p>Tracking the size yourself will be fine for your case. A different way would be to flush the file buffers just before you check the size:</p>
<pre><code>f2.write(line)
f2.flush() # <-- buffers are written to disk
size = os.path.getsize('split.xml')
</code></pre>
<p>Doing that too often will slow down file I/O, of course.</p>
http://stackoverflow.com/questions/363944/python-idiom-to-return-first-item-or-none/363995#36399510Answer by efotinis for Python idiom to return first item or Noneefotinis2008-12-12T20:12:27Z2008-12-12T20:12:27Z<p>The best way is this:</p>
<pre><code>a = get_list()
return a[0] if a else None
</code></pre>
<p>You could also do it in one line, but it's much harder for the programmer to read:</p>
<pre><code>return (get_list()[:1] or [None])[0]
</code></pre>
http://stackoverflow.com/questions/352270/how-to-cancel-the-system-key-down-state-in-windows/352370#3523702Answer by efotinis for How to cancel the 'system key down' state in Windowsefotinis2008-12-09T10:47:20Z2008-12-09T10:47:20Z<p>When you release the Alt key, the system generates a <code>WM_SYSCOMMAND</code>/<code>SC_KEYMENU</code> message. Futhermore, unless you press a key to open a specific popup menu, the lparam will be 0. DefWindowProc, upon receiving this, will enter the menu loop. So, all you have to do is detect this message and prevent it from getting to DefWindowProc:</p>
<pre><code>LRESULT CALLBACK MainWndProc(HWND wnd, UINT msg, WPARAM wparam, LPARAM lparam)
{
switch (msg) {
// ...
case WM_SYSCOMMAND: {
DWORD cmd = wparam & 0xfff0;
// test for Alt release without any letter key pressed
if (cmd == SC_KEYMENU && lparam == 0) {
// don't let it reach DefWindowProc
return 0;
}
break;
}
// ...
}
return DefWindowProc(wnd, msg, wparam, lparam);
}
</code></pre>
http://stackoverflow.com/questions/345045/accessing-bitmap-resources-in-a-c-dll-from-vb6/345213#3452131Answer by efotinis for accessing bitmap resources in a C++ DLL from VB6efotinis2008-12-05T21:30:14Z2008-12-05T21:30:14Z<p>Since you are using the numeric ID of the bitmap as a string, you have to add a "#" in front of it:</p>
<pre><code>DLLHandle = LoadLibrary("Mydll.dll")
myimage = LoadBitmap(DLLHandle, "#101") ' note the "#"
</code></pre>
<p>In C++ you could also use the MAKEINTRESOURCE macro, which is simply a cast to LPCTSTR:</p>
<pre><code>imagehandle = LoadBitmap(DLLHandle, MAKEINTRESOURCE(101));
</code></pre>
http://stackoverflow.com/questions/341462/whats-the-difference-between-bstr-and-bstrt/341545#3415454Answer by efotinis for What's the difference between BSTR and _bstr_t ?efotinis2008-12-04T17:57:40Z2008-12-04T17:57:40Z<p><strong>BSTR</strong> is a raw pointer, while <strong><code>_bstr_t</code></strong> is a class encapsulating that pointer.</p>
<p>It's the same difference as <strong>char*</strong> vs. <strong>std::string</strong>.</p>
http://stackoverflow.com/questions/340209/generate-colors-between-red-and-green-for-a-power-meter/340234#3402340Answer by efotinis for Generate colors between red and green for a power meter?efotinis2008-12-04T11:11:08Z2008-12-04T11:11:08Z<p>You need to <a href="http://en.wikipedia.org/wiki/Linear_interpolation" rel="nofollow">linearly interpolate</a> (LERP) the color components. Here's how it's done in general, given a start value <strong>v0</strong>, an end value <strong>v1</strong> and the required <strong>ratio</strong> (a normalized float between 0.0 and 1.0):</p>
<pre><code>v = v0 + ratio * (v1 - v0)
</code></pre>
<p>This gives v0 when ratio is 0.0, v1 when ratio is 1.0, and everything between in the other cases.</p>
<p>You can do this either on the RGB components, or using some other color scheme, like HSV or HLS. The latter two will be more visually pleasing, since they work on hue and brightness compoments that map better to our color perception.</p>
http://stackoverflow.com/questions/339537/end-line-characters-from-lines-read-from-text-file-using-python/339842#33984210Answer by efotinis for End-line characters from lines read from text file, using Pythonefotinis2008-12-04T08:04:19Z2008-12-04T08:04:19Z<p>The <em>idiomatic</em> way to do this in Python is to use <strong>rstrip('\n')</strong>:</p>
<pre><code>for line in open('myfile.txt'): # opened in text-mode; all EOLs are converted to '\n'
line = line.rstrip('\n')
process(line)
</code></pre>
<p>Each of the other alternatives has a gotcha:</p>
<ul>
<li><strong>file('...').read().splitlines()</strong> has to load the whole file in memory at once.</li>
<li><strong>line = line[:-1]</strong> will fail if the last line has no EOL.</li>
</ul>
http://stackoverflow.com/questions/336585/what-does-a-const-pointer-to-pointer-mean-in-c-and-in-c/336685#3366852Answer by efotinis for What does a const pointer-to-pointer mean in C and in C++?efotinis2008-12-03T09:55:01Z2008-12-03T09:55:01Z<p>You were right in your interpretation. Here's another way to look at it:</p>
<pre><code>const MyStructure * *ppMyStruct; // ptr --> ptr --> const MyStructure
MyStructure *const *ppMyStruct; // ptr --> const ptr --> MyStructure
MyStructure * *const ppMyStruct; // const ptr --> ptr --> MyStructure
</code></pre>
<p>These are all the alternatives of a pointer-to-pointer with one const qualifier. The right-to-left rule can be used to decipher the declarations (at least in C++; I'm no C expert).</p>
http://stackoverflow.com/questions/336475/rolling-my-own-exceptions/336507#3365073Answer by efotinis for Rolling my own exceptionsefotinis2008-12-03T08:30:58Z2008-12-03T08:39:34Z<p>You can use any standard exception type as a base, but it will really help the users of the class (including yourself) if you pick the right one:</p>
<ul>
<li>If the error is something that could have been avoided, had the user been more careful or precise, then use <strong>logic_error</strong>.</li>
<li>If it's something coming from the system that the user couldn't have prevented, use <strong>runtime_error</strong>.</li>
</ul>
<p>Of course, you could also use one of the other standard derived exceptions (e.g. <code>invalid_argument, range_error, bad_cast</code>) if it better describes the error.</p>
http://stackoverflow.com/questions/328107/how-can-you-determine-a-point-is-between-two-other-points-on-a-line-segment/328154#3281542Answer by efotinis for How can you determine a point is between two other points on a line segment?efotinis2008-11-29T23:14:32Z2008-11-29T23:14:32Z<p>Using a more geometric approach, calculate the following distances:</p>
<pre><code>ab = sqrt((a.x-b.x)**2 + (a.y-b.y)**2)
ac = sqrt((a.x-c.x)**2 + (a.y-c.y)**2)
bc = sqrt((b.x-c.x)**2 + (b.y-c.y)**2)
</code></pre>
<p>and test whether <strong>ac+bc</strong> equals <strong>ab</strong>:</p>
<pre><code>is_on_segment = abs(ac + bc - ab) < EPSILON
</code></pre>
<p>That's because there are three possibilities:</p>
<ul>
<li>The 3 points form a triangle => <strong>ac+bc > ab</strong></li>
<li>They are collinear and <strong>c</strong> is outside the <strong>ab</strong> segment => <strong>ac+bc > ab</strong></li>
<li>They are collinear and <strong>c</strong> is inside the <strong>ab</strong> segment => <strong>ac+bc = ab</strong></li>
</ul>
http://stackoverflow.com/questions/327673/convert-wide-character-strings-to-boost-dates/327736#3277361Answer by efotinis for Convert wide character strings to boost datesefotinis2008-11-29T17:28:09Z2008-11-29T17:28:09Z<p>You can use the <strong>from_stream</strong> parser function:</p>
<pre><code>using boost::gregorian::date;
using boost::gregorian::from_stream;
std::wstring ws( L"2008/01/01" );
date d1(from_stream(ws.begin(), ws.end()));
std::cout << d1; // prints "2008-Jan-01"
</code></pre>
http://stackoverflow.com/questions/322003/what-is-the-best-way-to-test-whether-a-file-exists-on-windows/322125#32212511Answer by efotinis for What is the best way to test whether a file exists on Windows?efotinis2008-11-26T20:57:30Z2008-11-26T20:57:30Z<p>According to the venerable Raymond Chen, you should <a href="http://blogs.msdn.com/oldnewthing/archive/2007/10/23/5612082.aspx" rel="nofollow">use GetFileAttributes if you're superstitious</a>.</p>
http://stackoverflow.com/questions/318700/does-anyone-know-where-there-is-a-recipe-for-serializing-data-and-preserving-its/318722#3187220Answer by efotinis for Does anyone know where there is a recipe for serializing data and preserving its order in the output?efotinis2008-11-25T20:24:43Z2008-11-25T20:32:46Z<p>The Python dict is an unordered container. If you need to preserve the order of the entries, you should consider using a list of 2-tuples.</p>
<p>Another option would be to keep an extra, ordered list of the keys. This way you can benefit from the quick, keyed access offered by the dictionary, while still being able to iterate through its values in an ordered fashion:</p>
<pre><code>data = {'reportDate': u'R20070501', 'idnum': u'1078099',
'columnLabel': u'2005', 'actionDate': u'C20070627',
'data': u'76,000', 'rowLabel': u'Sales of Bananas'}
dataOrder = ['reportDate', 'idnum', 'columnLabel',
'actionDate', 'data', 'rowLabel']
for key in dataOrder:
print key, data[key]
</code></pre>
http://stackoverflow.com/questions/318255/string-separation-in-c/318492#3184920Answer by efotinis for string separation in Cefotinis2008-11-25T18:59:47Z2008-11-25T18:59:47Z<p>You can copy the characters one by one, while at the same time keeping a counter of the number of characters copied. Before copying a character, check whether the counter is either 3 or 6; if so write a dash ('-') to the output. This will make sure the digits are grouped as needed:</p>
<pre><code>const char* input = "1234567890";
char output[20]; // allocate a buffer big enough to fit the result
const char* src = input; // the current source byte
char* dst = output; // the current destination
int charsCopied = 0; // counter
// loop until we reach the terminating NUL of the source string
while (*src) {
// insert the dash in the output when needed
if (charsCopied == 3 || charsCopied == 6) {
*dst++ = '-';
}
// copy the current character and move to the next
*dst++ = *src++;
charsCopied += 1;
}
// terminate the output string and print it
*dst = '\0';
puts(output);
</code></pre>
http://stackoverflow.com/questions/301053/re-assign-override-hotkey-win-l-to-lock-windows/317550#3175502Answer by efotinis for Re-assign/override hotkey (Win + L) to lock windowsefotinis2008-11-25T14:35:53Z2008-11-25T14:35:53Z<p>The Win+L is a system assigned hotkey and there's no option to disable it. This means there's no way for an application to detect it, unless you use a <a href="http://msdn.microsoft.com/en-us/library/ms644959.aspx#wh_keyboard_llhook" rel="nofollow">low-level global keyboard hook</a> (<code>WH_KEYBOARD_LL</code>). This works in XP SP3; haven't tested it in Vista though:</p>
<pre><code>LRESULT CALLBACK LowLevelKeyboardProc(int code, WPARAM wparam, LPARAM lparam) {
KBDLLHOOKSTRUCT& kllhs = *(KBDLLHOOKSTRUCT*)lparam;
if (code == HC_ACTION) {
// Test for an 'L' keypress with either Win key down.
if (wparam == WM_KEYDOWN && kllhs.vkCode == 'L' &&
(GetAsyncKeyState(VK_LWIN) < 0 || GetAsyncKeyState(VK_RWIN) < 0))
{
// Place some code here to do whatever you want.
// ...
// Return non-zero to halt message propagation
// and prevent the Win+L hotkey from getting activated.
return 1;
}
}
return CallNextHookEx(0, code, wparam, lparam);
}
</code></pre>
<p>Note that you need a <em>low-level</em> keyboard hook. A <em>normal</em> keyboard hook (WH_KEYBOARD) won't catch hotkey events.</p>
http://stackoverflow.com/questions/314983/include-header-guard-format/315018#3150183Answer by efotinis for #include header guard format?efotinis2008-11-24T18:40:34Z2008-11-24T18:56:31Z<p>I prefer this format:</p>
<pre><code>#ifndef FOO_HPP
#define FOO_HPP
/* ... */
#endif // FOO_HPP
</code></pre>
<ul>
<li>A simple <strong>#ifndef</strong> instead of <strong>#if !defined(...)</strong>, because it rarely makes sense to use a complex condition for a header guard.</li>
<li>The <strong>_HPP</strong> part to mark the identifier as a header guard.</li>
<li>No leading underscores, because such identifiers (starting with 2 underscores or with 1 underscore and capital letter) are reserved for the implementation.</li>
<li>The base part is just the file name, <strong>FOO</strong>. However, for library code that is going to be reused, it's advisable to add another part at the beginning. This is usually the containing namespace or the "module" name, e.g. <strong><code>MYLIB_FOO_HPP</code></strong>, and it helps to avoid naming conflicts.</li>
</ul>
http://stackoverflow.com/questions/312570/what-are-some-of-the-drawbacks-to-using-c-style-strings/312613#31261313Answer by efotinis for What are some of the drawbacks to using C-style strings?efotinis2008-11-23T15:24:04Z2008-11-23T21:54:09Z<p>C strings lack the following aspects of their C++ counterparts:</p>
<ul>
<li>Automatic memory management: you have to allocate and free their memory manually.</li>
<li>Extra capacity for concatenation efficiency: C++ strings often have a capacity greater than their size. This allows increasing the size without many reallocations.</li>
<li>No embedded NULs: by definition a NUL character ends a C string; C++ string keep an internal size counter so they don't need a special value to mark their end.</li>
<li>Sensible comparison and assignment operators: even though comparison of C string pointers is permitted, it's almost always <em>not</em> what was intended. Similarly, assigning C string pointers (or passing them to functions) creates ownership ambiguities.</li>
</ul>
http://stackoverflow.com/questions/299370/what-do-i-have-to-do-to-make-my-whshell-or-whcbt-hook-procedure-receive-events/310520#3105203Answer by efotinis for What do I have to do to make my WH_SHELL or WH_CBT hook procedure receive events from other processes?efotinis2008-11-21T23:11:02Z2008-11-21T23:11:02Z<p>The problem is that your hook DLL is actually being loaded into several different address spaces. Any time Windows detects an event in some foreign process that must be processed by your hook, it loads the hook DLL into that process (if it's not already loaded, of course).</p>
<p>However, each process has its own address space. This means that the callback function pointer that you passed in InitHook() only makes sense in the context of your EXE (that's why it works for events in your app). In any other process that pointer is <strong>garbage</strong>; it may point to an invalid memory location or (worse) into some random code section. The result can either be an access violation or silent memory corruption.</p>
<p>Generally, the solution is to use some sort of <a href="http://msdn.microsoft.com/en-us/library/aa365574(VS.85).aspx" rel="nofollow">interprocess communication</a> (IPC) to properly notify your EXE. The most painless way for your case would be to post a message and cram the needed info (event and HWND) into its WPARAM/LPARAM. You could either use a WM_APP+n or create one with RegisterWindowMessage(). Make sure the message is posted and not sent, to avoid any deadlocks.</p>
http://stackoverflow.com/questions/306482/looping-over-directories-in-windows-xp-command-prompt/306521#3065210Answer by efotinis for Looping over directories in Windows XP command promptefotinis2008-11-20T19:18:01Z2008-11-20T19:18:01Z<p>You can use "%~ni". This is an enhanced substitution that will return the file name of a path (or, more accurately, the last part, which is the directory name in your case):</p>
<pre><code>for /d %i in ("E:\Test\*") do echo %i - %~ni
</code></pre>
<p>See also this question: <a href="http://stackoverflow.com/questions/112055/what-does-d0-mean-in-a-windows-batch-file">What does %~d0 mean in a Windows batch file?</a></p>
http://stackoverflow.com/questions/214553/how-do-you-place-sub-controls-inside-a-group-box/296594#2965941Answer by efotinis for How do you place sub controls inside a group box?efotinis2008-11-17T19:29:10Z2008-11-17T19:29:10Z<p>The problem is having the groupbox as the controls' parent. Groupboxes are not supposed to have any children and using them as parents will cause all kinds of errors (including painting, keyboard navigation and message propagation). Just change the parent in the buttons' CreateWindow call from <strong>group_box</strong> to <strong>hwnd</strong> (i.e. the dialog).</p>
<p>I'm guessing you used the groupbox as the parent in order to position the other controls easily inside it. The proper way to do this is to get the position of the groupbox client area and map it to the client area of the dialog. Everything placed in the resulting RECT will then appear inside the groupbox.</p>
<p>Note that the same applies to Tab controls. They too are not designed to be parents and will exhibit similar behavior.</p>
http://stackoverflow.com/questions/285587/wsvscroll-createwindow-style-works-setwindowlong-doesnt/285757#2857574Answer by efotinis for WS_VSCROLL, CreateWindow style works, SetWindowLong doesntefotinis2008-11-12T23:13:33Z2008-11-14T20:17:25Z<p>Some control styles cannot be changed after window creation. The ES_AUTOHSCROLL style (which essentially controls word wrapping) is one of them; this is stated (somewhat indirectly) by the MSDN section on <a href="http://msdn.microsoft.com/en-us/library/bb775464.aspx" rel="nofollow">Edit Control Styles</a>. You can set the bits using SetWindowLong(), but the control will either ignore them or behave erratically.</p>
<p>The only way to do this cleanly is to recreate the edit control using the required styles. This is actually what Notepad does when you toggle the "Word Wrap" setting.</p>
http://stackoverflow.com/questions/179369/how-do-i-abort-the-execution-of-a-python-script/179689#1796893Answer by efotinis for How do I abort the execution of a Python script?efotinis2008-10-07T18:11:22Z2008-10-07T18:11:22Z<p>You can either use:</p>
<pre><code>import sys
sys.exit(...)
</code></pre>
<p>or:</p>
<pre><code>raise SystemExit(...)
</code></pre>
<p>The optional parameter can be an exit code or an error message. Both methods are identical. I used to prefer sys.exit, but I've lately switched to raising SystemExit, because it seems to stand out better among the rest of the code (due to the <strong>raise</strong> keyword).</p>
http://stackoverflow.com/questions/176062/how-do-i-disable-and-then-enable-the-retry-button-in-a-messagebox-c/176149#1761491Answer by efotinis for How do I disable and then enable the Retry button in a MessageBox (C++)?efotinis2008-10-06T20:54:25Z2008-10-06T20:54:25Z<p>You cannot directly manipulate the MessageBox controls, but you can use a hack. Install a WH<code>_</code>CBT hook just before displaying the dialog and handle the HCBT<code>_</code>ACTIVATE event. This will give you the HWND of the message box, so that you can do whatever you want with it (subclass it, manage its buttons and set a timer).</p>
<p>You can find a <a href="http://www.catch22.net/tuts/msgbox" rel="nofollow">Custom MessageBox</a> tutorial with demo code in James Brown's site.</p>
http://stackoverflow.com/questions/172439/how-do-i-split-a-mult-line-string-into-multiple-lines/172468#17246812Answer by efotinis for How do I split a mult-line string into multiple lines?efotinis2008-10-05T18:58:44Z2008-10-05T19:06:30Z<p>Like the others said:</p>
<pre><code>inputString.split('\n') # --> ['Line 1', 'Line 2', 'Line 3']
</code></pre>
<p>This is identical to the above, but the string module's functions are deprecated and should be avoided:</p>
<pre><code>import string
string.split(inputString, '\n') # --> ['Line 1', 'Line 2', 'Line 3']
</code></pre>
<p>Alternatively, if you want each line to include the break sequence (CR,LF,CRLF), use the <strong>splitlines</strong> method with a <strong>True</strong> argument:</p>
<pre><code>inputString.splitlines(True) # --> ['Line 1\n', 'Line 2\n', 'Line 3']
</code></pre>
http://stackoverflow.com/questions/165495/detecting-mouse-clicks-in-windows-using-python/168996#1689967Answer by efotinis for Detecting Mouse clicks in windows using pythonefotinis2008-10-03T21:38:15Z2008-10-03T21:38:15Z<p>The only way to detect mouse events outside your program is to install a Windows hook using <a href="http://msdn.microsoft.com/en-us/library/ms644990(VS.85).aspx" rel="nofollow">SetWindowsHookEx</a>. The <a href="http://www.cs.unc.edu/Research/assist/developer.shtml" rel="nofollow">pyHook</a> module encapsulates the nitty-gritty details. Here's a sample that will print the location of every mouse click:</p>
<pre><code>import pyHook
import pythoncom
def onclick(event):
print event.Position
return True
hm = pyHook.HookManager()
hm.SubscribeMouseAllButtonsDown(onclick)
hm.HookMouse()
pythoncom.PumpMessages()
hm.UnhookMouse()
</code></pre>
<p>You can check the <strong>example.py</strong> script that is installed with the module for more info about the <strong>event</strong> parameter.</p>
<p>pyHook might be tricky to use in a pure Python script, because it requires an active message pump. From the <a href="http://mindtrove.info/articles/monitoring-global-input-with-pyhook/" rel="nofollow">tutorial</a>:</p>
<blockquote>
<p>Any application that wishes to receive
notifications of global input events
must have a Windows message pump. The
easiest way to get one of these is to
use the PumpMessages method in the
Win32 Extensions package for Python.
[...] When run, this program just sits
idle and waits for Windows events. If
you are using a GUI toolkit (e.g.
wxPython), this loop is unnecessary
since the toolkit provides its own.</p>
</blockquote>
http://stackoverflow.com/questions/168559/python-how-do-i-convert-an-os-level-handle-to-an-open-file-to-a-file-object/168640#1686404Answer by efotinis for Python - How do I convert "an OS-level handle to an open file" to a file object?efotinis2008-10-03T20:00:14Z2008-10-03T20:06:06Z<p>You forgot to specify the open mode ('w') in fdopen(). The default is 'r', causing the write() call to fail.</p>
<p>I think mkstemp() creates the file for reading only. Calling fdopen with 'w' probably reopens it for writing (you <em>can</em> reopen the file created by mkstemp).</p>
http://stackoverflow.com/questions/168409/how-do-you-get-a-directory-listing-sorted-by-creation-date-in-python/168580#1685805Answer by efotinis for How do you get a directory listing sorted by creation date in python?efotinis2008-10-03T19:46:53Z2008-10-03T19:46:53Z<p>Here's my version:</p>
<pre><code>def getfiles(dirpath):
a = [s for s in os.listdir(dirpath)
if os.path.isfile(os.path.join(dirpath, s))]
a.sort(key=lambda s: os.path.getmtime(os.path.join(dirpath, s)))
return a
</code></pre>
<p>First, we build a list of the file names. isfile() is used to skip directories; it can be omitted if directories should be included. Then, we sort the list in-place, using the modify date as the key.</p>
http://stackoverflow.com/questions/167743/quickest-way-to-implement-a-c-win32-splash-screen/167918#1679182Answer by efotinis for Quickest way to implement a C++ Win32 Splash Screenefotinis2008-10-03T17:12:46Z2008-10-03T17:28:57Z<p>Register a class for the splash window and create a window using these styles:</p>
<ul>
<li>WS<code>_</code>POPUPWINDOW: will make sure your window has no caption/sysmenu</li>
<li>WS<code>_</code>EX<code>_</code>TOPMOST: will keep the splash screen on top of everything. Note that this is a bit intrusive. It might be better to just make the splash window a child of your main window. You may have to manipulate the z-order, though, to keep any other popup windows (if you create any) below the splash screen.</li>
</ul>
<p>Use CreateDIBSection to load the bitmap. It should be easy, since BMP files are essentially dumps of DIB structures. Or do what Ken said and use LoadImage.</p>
<p>Handle the WM<code>_</code>PAINT or WM<code>_</code>ERASEBKGND message to draw the bitmap on the window.</p>
<p>On WM<code>_</code>CREATE set a timer of 10 seconds and when Windows sends the WM<code>_</code>TIMER message, have the window destroy itself.</p>
http://stackoverflow.com/questions/1566936/easy-pretty-printing-of-floats-in-python/1566964#1566964Comment by efotinis on Easy pretty printing of floats in python?efotinis2009-10-14T15:14:01Z2009-10-14T15:14:01ZA generator expression would be even better: ", ".join("%.2f" % f for f in list_o_numbers)http://stackoverflow.com/questions/1528903/how-to-write-an-empty-indentation-block-in-python/1529193#1529193Comment by efotinis on How to write an empty indentation block in Python?efotinis2009-10-07T12:27:33Z2009-10-07T12:27:33ZThere's nothing wrong with that technically, but these situations is why 'pass' exists in the first place.http://stackoverflow.com/questions/1201115/importing-files-in-python-from-init-pyComment by efotinis on Importing files in Python from __init__.pyefotinis2009-07-29T20:25:50Z2009-07-29T20:25:50ZIf you want to do this for performance reasons, don't worry - importing already loaded modules is super-fast (a simple dict lookup on sys.modules).http://stackoverflow.com/questions/1014352/how-do-i-convert-a-nested-tuple-of-tuples-and-lists-to-lists-of-lists-in-python/1014499#1014499Comment by efotinis on How do I convert a nested tuple of tuples and lists to lists of lists in Python?efotinis2009-06-18T19:01:39Z2009-06-18T19:01:39ZWhen you need to check an object's type, it's better to use the isinstance() function. As a bonus, you can even check for multiple types at once, like this: isinstance(t, (list, tuple))http://stackoverflow.com/questions/394809/python-ternary-operator/394814#394814Comment by efotinis on Python Ternary Operatorefotinis2008-12-27T23:12:06Z2008-12-27T23:12:06ZThe operator itself is not really frowned upon. It's just the form that bugs some people with a C-something background. They where expecting the conditional to be first, but van Rossum chose to put it in the middle. I actually find it cute. ^_^http://stackoverflow.com/questions/148857/what-is-the-opposite-of-parse/148866#148866Comment by efotinis on What is the opposite of 'parse'?efotinis2008-12-27T10:06:05Z2008-12-27T10:06:05Z@Mitch Wheat: sadly that's how SO works. It doesn't matter how good your answer is (or how much time you put into it). All it matters is how many people like it. I used to spend too much time writing valid answers to obscure questions and getting no feedback at all, while other's "Yes/No"s got +100.http://stackoverflow.com/questions/373832/what-is-a-lambda-and-what-is-an-example-implementationComment by efotinis on What is a lambda and what is an example implementation?efotinis2008-12-17T09:32:30Z2008-12-17T09:32:30Z@Robert Gould: if we're going to leave duplicate questions open, it would be nice to also link them together (i.e. put a link in the question body). I'd do it myself, but I don't have enough rep yet.http://stackoverflow.com/questions/357125/do-you-use-google-for-answers-to-put-on-soComment by efotinis on Do you use Google for answers to put on SO?efotinis2008-12-10T18:59:33Z2008-12-10T18:59:33ZWhat's your vector, Victor?http://stackoverflow.com/questions/347949/convert-stdstring-to-const-char-or-char/347959#347959Comment by efotinis on Convert std::string to const char* or char*efotinis2008-12-07T21:08:09Z2008-12-07T21:08:09ZYou could also construct the vector with: vector<char> writable(str.c_str(), str.size() + 1);http://stackoverflow.com/questions/347780/what-is-your-workplace-dress-code-and-how-does-it-affect-your-mindset-and-or-prod/347792#347792Comment by efotinis on What is your workplace dress code and how does it affect your mindset and/or productivity?efotinis2008-12-07T20:26:36Z2008-12-07T20:26:36Z+1 indeed. I just had the first C|N>K moment of my life. Didn't know it was possible...http://stackoverflow.com/questions/336475/rolling-my-own-exceptions/336543#336543Comment by efotinis on Rolling my own exceptionsefotinis2008-12-03T09:11:09Z2008-12-03T09:11:09Z+1 from me too. Nice article.http://stackoverflow.com/questions/327893/how-to-write-a-compare-function-for-qsort-from-stdlib/327929#327929Comment by efotinis on How to write a compare function for qsort from stdlib?efotinis2008-11-29T20:10:33Z2008-11-29T20:10:33ZI was going to comment in favor of the "silly trick" you mentioned, but then I came to my senses :b +1http://stackoverflow.com/questions/322003/what-is-the-best-way-to-test-whether-a-file-exists-on-windows/322125#322125Comment by efotinis on What is the best way to test whether a file exists on Windows?efotinis2008-11-27T11:56:22Z2008-11-27T11:56:22Z@Jay: That's right, since the whole C library is basically implemented in the Windows API.http://stackoverflow.com/questions/320677/how-do-i-set-the-icon-for-my-application-in-visual-studio-2008/320722#320722Comment by efotinis on How do I set the icon for my application in visual studio 2008?efotinis2008-11-27T09:33:04Z2008-11-27T09:33:04ZThis is only a requirement for the shell icon of the program file, i.e. the one shown in Explorer. The actual window icon can be set programatically to any icon, although the default is the first one.http://stackoverflow.com/questions/319171/what-arguments-are-you-supposed-to-give-to-the-windows-api-call-verqueryvalue/319453#319453Comment by efotinis on What Arguments are you supposed to give to the Windows API call VerQueryValueefotinis2008-11-26T09:37:43Z2008-11-26T09:37:43ZMessage-ID or it didn't happen! :)