User jamuraa - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T16:36:33Zhttp://stackoverflow.com/feeds/user/9805http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1833258/github-git-remote-add-origin-gitgithub-comusername-projectname-a-one-time-proce/1833272#18332724Answer by jamuraa for GitHub git remote add origin git@github.com:username/ProjectName a one time process ?jamuraa2009-12-02T14:35:31Z2009-12-02T14:35:31Z<p>The information is stored in each repository (project), in the <code>.git/config</code> file. </p>
<p><strong>Yes</strong> you are doing the right thing by adding the remote to each repository separately. </p>
http://stackoverflow.com/questions/1717780/how-to-programatically-disable-the-auto-focus-of-a-webcam/1718009#17180094Answer by jamuraa for How to programatically disable the auto-focus of a webcam.jamuraa2009-11-11T20:56:24Z2009-11-11T20:56:24Z<p>The Hercules cameras are UVC compliant, so they should work with the DirectShow Interface <a href="http://msdn.microsoft.com/en-us/library/dd389145%28VS.85%29.aspx" rel="nofollow">IAMCameraControl</a>. You can set the focus to a specific value, and use the flags to set that you do not want it to be automatic. You can use <code>IAMCameraControl::Get</code> to poll the current state, because not all cameras do support turning off the focus.</p>
<pre><code>IAMCameraControl *pCameraControl;
HRESULT hr;
hr = pFilter->QueryInterface(IID_IAMCameraControl, (void **)&pCameraControl);
if (hr == S_OK) {
long defaultFocusValue;
hr = pCameraControl->GetRange(CameraControl_Focus,
NULL, // min
NULL, // max
NULL, // minstep
&defaultFocusValue, // default
NULL); // capflags
hr = pCameraControl->Set(CameraControl_Focus, // property
defaultFocusValue, // value
CameraControl_Flags_Manual);
}
</code></pre>
<p>Focus has a range which is defined by each camera separately, so you should query it as shown to find the default value and the min, max if you want.
In this example the <code>pFilter</code> is a pointer to the input filter that you have from DirectShow. You can get it by <a href="http://msdn.microsoft.com/en-us/library/dd407292%28VS.85%29.aspx" rel="nofollow">enumerating the devices</a> and finding the one you want.</p>
http://stackoverflow.com/questions/1675508/reading-an-stdifstream-to-a-vector-of-lines/1675556#16755561Answer by jamuraa for Reading an std::ifstream to a vector of linesjamuraa2009-11-04T17:53:43Z2009-11-04T18:18:53Z<p><code>std::getline(stream, var)</code> reads into a std::string for var. I suggest using the stream operators to read into the int instead, and check for errors if needed: </p>
<pre><code>vector<int> ifstream_lines(ifstream& fs) {
vector<int> out;
int temp;
while (!(fs >> temp).fail()) {
out.push_back(temp);
}
fs.seekg(0,ios::beg);
fs.clear();
return out;
}
</code></pre>
http://stackoverflow.com/questions/1461873/how-can-i-find-copy-paste-duplicate-clone-code-in-perl/1607496#16074961Answer by jamuraa for How can I find copy/paste (duplicate, clone) code in Perl?jamuraa2009-10-22T14:09:36Z2009-10-22T14:09:36Z<p>I have used <a href="http://www.ccfinder.net/" rel="nofollow">CCFinder</a> in the past to find sections of code which are duplicates. It works quite well but has an.. interesting interface. It doesn't have native support for perl, but it does have a plaintext option which should work for detection of copy and pasting at least. There is a Windows and Ubuntu solution - Freeware, not open source unfortunately. </p>
http://stackoverflow.com/questions/1604191/sending-a-code-block-to-a-findall-dynamic-method/1604207#16042072Answer by jamuraa for Sending a code block to a find_all dynamic method jamuraa2009-10-21T23:23:57Z2009-10-21T23:23:57Z<p>I use the <code>.each</code> method which Enumerable provides like</p>
<pre><code>@products = Product.find_all_by_ids(ids, .....)
@products.each { |p| p.stock += 10 }
</code></pre>
<p>There are even some <a href="http://api.rubyonrails.org/classes/Enumerable.html" rel="nofollow">extensions to Enumerable</a> that Rails provides that might help you a bit if you're doing some common stuff. </p>
<p>Also, don't forget to save your objects with something like <code>p.save</code> if you want the changes to actually persist. </p>
http://stackoverflow.com/questions/1602132/how-to-dry-this-snippet-of-ruby-code/1602196#16021963Answer by jamuraa for How to DRY this snippet of Ruby code?jamuraa2009-10-21T17:05:54Z2009-10-21T17:05:54Z<p>I would code this like</p>
<pre><code>def current_account
@account ||= current_subdomain.blank? ? nil : Account.find_by_host(current_subdomain)
end
</code></pre>
<p>As for the exceptions, find_by dynamic methods return <code>nil</code> instead of throwing an exception. If you want an exception, use the <code>find</code> with <code>:conditions</code>: </p>
<pre><code>def current_account
@account ||= current_subdomain.blank? ? nil : Account.find(:first, :conditions => {:host => current_subdomain})
end
</code></pre>
http://stackoverflow.com/questions/1601840/randomly-selecting-a-limited-number-of-records-with-two-conditions-in-mysql/1601871#16018710Answer by jamuraa for Randomly selecting a limited number of records with two conditions in MySQLjamuraa2009-10-21T16:05:28Z2009-10-21T16:05:28Z<p>Use a union: </p>
<pre><code>SELECT * FROM table WHERE priority = 'high' ORDER BY RAND() LIMIT 8
UNION ALL
SELECT * FROM table WHERE priority = 'low' ORDER BY RAND() LIMIT 2
</code></pre>
http://stackoverflow.com/questions/1601601/which-licence-should-i-use/1601741#16017410Answer by jamuraa for Which licence should I use?jamuraa2009-10-21T15:43:54Z2009-10-21T15:43:54Z<p>Almost all open source licenses will fulfill (2), because they require that the author still be credited in all things. </p>
<p>Issue (3) is a little more interesting, because if you are using a truly open-source license then you will not be able to prevent other people from selling the software as well - licenses which prevent people from using it in a certain way (not commercially) are not true open-source licenses and are better described as "source-available" or "shared-source" licenses. </p>
<p>You may want to look into a Creative-commons license like <a href="http://creativecommons.org/licenses/by-nc/3.0/us/" rel="nofollow">CC-BY-NC</a> or <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/us/" rel="nofollow">CC-BY-NC-SA</a>, which satisfies your non-commercial constraint but as the author of the work yourself, you will still be able to use it commercially of course. However, the Creative Commons licenses are not designed for code but more for other creative works.</p>
<p>(4) and (5) don't really mean anything when you are thinking of licensing.</p>
http://stackoverflow.com/questions/1601528/please-explain-this-behavior-with-character-arrays-strings-in-c/1601639#16016390Answer by jamuraa for Please explain this behavior with character arrays/strings in Cjamuraa2009-10-21T15:28:05Z2009-10-21T15:28:05Z<p>Attempt 1 fails because you are modifying memory which was initialized by the compiler. Using quotes as in <code>char *name = "something"</code> to define a string in constant memory space (not on the stack as in <code>char name[] = "vinay"</code> You should not be modifying it, and therefore you get a segmentation fault as you are trying to write to a non-writable area. If you want to use a <code>char *</code> instead and make it modifyable, allocate the memory yourself instead: </p>
<pre><code>char *name = NULL;
name = (char *) malloc(6);
</code></pre>
<p>but don't forget to <code>free()</code> it later!</p>
http://stackoverflow.com/questions/1600928/qt-why-is-foreach-iterating-with-a-const-reference/1601428#16014284Answer by jamuraa for QT: why is foreach iterating with a const reference ?jamuraa2009-10-21T15:00:18Z2009-10-21T15:00:18Z<p>As explained on the <a href="http://doc.trolltech.com/4.5/containers.html#the-foreach-keyword" rel="nofollow">Qt Generic Containers Documentation</a>: </p>
<blockquote>
<p>Qt automatically takes a copy of the container when it enters a foreach loop. If you modify the container as you are iterating, that won't affect the loop. (If you don't modify the container, the copy still takes place, but thanks to implicit sharing copying a container is very fast.) Similarly, declaring the variable to be a non-const reference, in order to modify the current item in the list will not work either.</p>
</blockquote>
<p>It makes a copy because you might want to remove an item from the list or add items while you are looping for example. The downside is that your use case will not work. You will have to iterate over the list instead: </p>
<pre><code>for (QList<QString>::iterator i = a.begin(); i != a.end(); ++i) {
(*i) += "s";
}
</code></pre>
<p>A little more typing, but not too much more. </p>
http://stackoverflow.com/questions/1395657/looping-out-mysql-data/1395682#13956821Answer by jamuraa for Looping out mysql datajamuraa2009-09-08T18:52:09Z2009-09-08T18:59:45Z<p>I'm assuming that you want a list of the dates so that you can then do separate queries for each date's entries. Usually you would use a query like: </p>
<pre><code>SELECT DISTINCT date_field FROM table_name ORDER BY date_field DESC
</code></pre>
<p>(this will do it newest-first, remove <code>DESC</code> to make it oldest-first)</p>
<p>Now, you probably don't want to do it this way, because it will require a lot of queries (one for each day's entries). It is more efficient to just order the entries by the date, and then use logic in your php to print out the headers. So you would use code like: </p>
<pre><code>$result = $db->query("SELECT * FROM table_name ORDER BY date_field DESC");
$current_date = "";
while ($row = $result->fetch_array()) {
if ($current_date != $row["date_field"]) {
echo "<h3>{$row['date_field']}</h3>";
$current_date = $row["date_field"];
}
// Print your entry from $row here.
}
</code></pre>
http://stackoverflow.com/questions/1111574/rails-unit-tests-for-functions-which-use-attachments0Rails unit tests for functions which use attachmentsjamuraa2009-07-10T19:40:40Z2009-07-10T22:31:44Z
<p>I'm creating a program which will be examining images which are uploaded by the users logged in. I have the RMagick code written up to do the examination (basically finding out if a pixel black is in an image), but I don't know how to write the unit tests for this model.</p>
<p>Currently I'm using paperclip to attach the uploaded file to the model, which I understand uses a number of fields in the database for tracking the files. How should I set up my fixtures so that I can do unit testing on the same data every time?</p>
<p>My model is currently:</p>
<pre><code>class Map < ActiveRecord::Base
has_attached_file :image, :styles => { :small => "150x150>" }
validates_attachment_presence :image
validates_uniqueness_of :name, :message => "must be unique"
def pixel_is_black(x, y)
<code to return true if position (x,y) in image is black>
end
end
</code></pre>
http://stackoverflow.com/questions/1051488/get-the-last-day-of-the-month-in-sql/1051510#10515103Answer by jamuraa for Get the last day of the month in SQL jamuraa2009-06-26T22:15:33Z2009-06-27T16:58:13Z<p>You could get the days in the date by using the <a href="http://msdn.microsoft.com/en-us/library/ms176052.aspx" rel="nofollow">DAY()</a> function: </p>
<pre><code>dateadd(day, -1, dateadd(month, 1, dateadd(day, 1 - day(date), date)))
</code></pre>
http://stackoverflow.com/questions/1051333/combing-an-external-event-loop-with-qts/1051393#10513932Answer by jamuraa for Combing an External Event Loop with Qt'sjamuraa2009-06-26T21:41:00Z2009-06-26T21:41:00Z<p>I would probably code the event loops to be separate threads. You can handle the events from the library in a class, and have it generate signals which will then be handled by the main Qt eventloop whenever you want (call QApplication::processEvents() if needed in long operations). The only trick to this is making sure that your external event loop is a Q_OBJECT so that it knows how to emit the signals that you care about. </p>
<p>There are other thread issues, such as never (ever) painting in a thread which is not the main QT thread. </p>
http://stackoverflow.com/questions/864124/how-do-i-create-const-arrays-and-calculated-const-values-in-c-class/864209#8642091Answer by jamuraa for How do I create const arrays and calculated const values in C++ class?jamuraa2009-05-14T16:00:05Z2009-05-14T16:00:05Z<p>Static members of C++ objects need to be defined outside of the declaration. This is because the compiler doesn't know which translation unit (.o file) to put the members in.</p>
<p>Usually I will define them in the .cpp file of the implementation. You don't generally want to put them into the header file because they will end up in multiple .o files, and it will generate compiler errors because the same thing is defined multiple times. </p>
http://stackoverflow.com/questions/621251/why-isnt-git-used-for-package-management/632284#6322840Answer by jamuraa for Why isn't Git used for package management?jamuraa2009-03-10T21:07:33Z2009-03-10T21:07:33Z<p>For BSD ports and other projects like <a href="http://drupal.org" rel="nofollow">Drupal</a> (also still on CVS), it largely because of inertia - the kind of software cruft inertia which piles up around a project after a while. You have a bunch of scripts which maintain the database, and you don't want to convert them all to a new VCS. You also have to remember that SVN is not that old in real-years terms - only 8 years old in total. Also, FreeBSD has apparently <a href="http://www.freebsd.org/news/2008/index.html" rel="nofollow">begun a transition to SVN</a> (3 June 2008 entry).</p>
<p>In the non-ports-tree world of Debian, there are a lot of different VCS's being used for the packages. Most of them have a helper package in the form of -buildpackage. They are useful if your upstream is using the VCS or even if not. git-buildpackage has a <a href="http://honk.sigxcpu.org/projects/git-buildpackage/manual-html/gbp.html" rel="nofollow">really nice manual</a> to get you started even. </p>
<p>As I've switched to moving to git for my packages, I've found that it's MUCH more useful because of the cheap branches and the easy three-way merging. It's very easy to triage bugs if you can branch for a bugfix and if you get interrupted you will not mess up a build of the package which will happen later.</p>
http://stackoverflow.com/questions/296603/does-your-email-client-let-you-add-custom-headers-programmatically/493153#4931531Answer by jamuraa for Does your email client let you add custom headers programmatically?jamuraa2009-01-29T20:01:42Z2009-01-29T20:12:13Z<p>One thing that you might want to look into is using pseudo-headers instead of headers. Becasue pine/alpine let you specify a filter program for the email to go through, you can add the header to the body at the beginning, which should be easy enough to process. I'm not sure if it would fit your purposes exactly though since I do not know what type of system you are putting together. </p>
<p>I learned about pseudo-headers through their use in the <a href="http://www.debian.org/Bugs/Reporting#pseudoheader" rel="nofollow">Debian BTS System</a>. </p>
<p>Answering the question, I use GMail, and you can't edit the headers programmatically (I would be interested to see a webmail that lets you). You <a href="http://en.wikipedia.org/wiki/Gmail#Criticisms" rel="nofollow">can't even</a> filter on custom headers like X-List, it's quite annoying. </p>
http://stackoverflow.com/questions/342365/what-should-coding-guidelines-do-and-are-there-any-good-examples-of-guidelines/342377#3423771Answer by jamuraa for What should coding guidelines do, and are there any good examples of guidelines?jamuraa2008-12-04T22:52:30Z2008-12-04T22:52:30Z<p>In general, I would want guidelines to answer the questions that you would normally ask but would take too long to answer, and that might be "personal preference" if you were just coding alone. Usually they specify pithy things like database naming conventions and spaces vs. tabs (and how many spaces) as well as commenting / documentation comment styles. </p>
<p>UI guidelines are a different beast than the others I think. </p>
<p>One of my favorite examples of coding style guidelines is the <a href="http://pantransit.reptiles.org/prog/CodingStyle.html" rel="nofollow">Linux kernel coding style</a>, although it doesn't go into the specifics that I've seen in other guides. </p>
http://stackoverflow.com/questions/341975/streaming-binary-data-over-http/342278#3422780Answer by jamuraa for streaming binary data over httpjamuraa2008-12-04T22:10:22Z2008-12-04T22:10:22Z<p>I would generally avoid using multipart/x-mixed-replace, as it has pretty sketchy browser support. I know that my cameras' multipart/x-mixed-replace doesn't work on IE or newer versions of Firefox (although apparently there is a configuration thing to change that). </p>
<p>I think that a small Flash app may be one of your best options. </p>
http://stackoverflow.com/questions/342037/testing-classes/342256#3422561Answer by jamuraa for testing classesjamuraa2008-12-04T22:01:10Z2008-12-04T22:01:10Z<p>It sounds like you don't want Unit testing, which is correctly the verification that the interface of a class works. You shouldn't have to change your class at all in order to do unit testing. If you are looking for a way to verify the internal state of your object so that it remains consistent, you should look into <a href="http://en.wikipedia.org/wiki/Design_by_contract" rel="nofollow">Design by Contract</a> methods, which can verify internal state from within the object. </p>
http://stackoverflow.com/questions/342189/how-do-i-apply-gravity-to-my-bouncing-ball-application/342234#3422340Answer by jamuraa for How do I apply gravity to my bouncing ball application?jamuraa2008-12-04T21:55:00Z2008-12-04T21:55:00Z<p>You really want to simulate what gravity does - all it does is create force that acts over time to change the velocity of an object. Every time you take a step, you change the velocity of your ball a little bit in order to "pull" it towards the bottom of the widget. </p>
<p>In order to deal with the no-friction / bouncing ball settles issue, you need to make the "ground" collision exert a different effect than just strict reflection - it should remove some amount of energy from the ball, making it bounce back at a smaller velocity after it hits the ground than it would otherwise. </p>
<p>Another thing that you generally want to do in these types of bouncy visualizations is give the ground some sideways friction as well, so that when it's hitting the ground all the time, it will eventually roll to a stop. </p>
http://stackoverflow.com/questions/95575/while-coding-how-many-columns-do-you-format-for/95666#956660Answer by jamuraa for While coding, how many columns do you format for?jamuraa2008-09-18T18:54:56Z2008-09-18T18:54:56Z<p>When I am caring, I code to 80 columns. I use a number of things to try and do this, including the "line" that others talked about on the UI. It also helps me put two codes side by side in a wide-screen which is nice.</p>
<p>When I don't care, it is just ad-hoc, whatever my terminal or editor has on the end of the screen so it doesn't run over to the next line without being poorly formatted. </p>
http://stackoverflow.com/questions/92671/how-do-i-reserve-caret-position-in-cedit-control0How do I reserve caret position in CEdit control? jamuraa2008-09-18T13:47:04Z2008-09-18T14:13:11Z
<p>I'm programming an application in MFC (don't ask) and I have a CEdit box that holds a number. When that number is edited, I would like to act on the change, and then replace the caret where it was before I acted on the change - if the user was just before the "." in "35.40", I would like it to still be placed before the dot if they change it to "345.40". I'm currently catching the CHANGE message, but that can be switched to something else (UPDATE?). How can I accomplish this?</p>
http://stackoverflow.com/questions/92561/security-should-i-reject-urls-longer-than-n/92587#925870Answer by jamuraa for (Security) Should I reject URLS longer than N?jamuraa2008-09-18T13:37:22Z2008-09-18T13:37:22Z<p>I think this may give you some modicum of safety and might save you a little bandwidth if people do send you crazy long URLs, but largely you should just validate your data in the actual application as well. Multiple levels of security are generally better, but don't make the mistake of thinking that because you have a (weak) safeguard at the beginning that you won't have issues with the rest.</p>
http://stackoverflow.com/questions/87849/svn-checkout-question/87899#878992Answer by jamuraa for SVN checkout questionjamuraa2008-09-17T21:33:13Z2008-09-17T21:33:13Z<p>You are looking for the "svn:externals" property. See <a href="http://svnbook.red-bean.com/en/1.5/svn.advanced.externals.html" rel="nofollow">this</a> section of svnbook: </p>
<p>Under the project that you want to use the shared project in, and then set a property on that directory named "svn:externals". This property contains the name of the directory which contains the external respository, and can have some other options so that you always get the same revision. </p>
<p>Example (from svnbook, which is an EXCELLENT reference for svn questions): </p>
<pre><code>$ svn propget svn:externals calc
third-party/sounds http://svn.example.com/repos/sounds
third-party/skins -r148 http://svn.example.com/skinproj
third-party/skins/toolkit -r21 http://svn.example.com/skin-maker
</code></pre>
<p>in this example, third-party/sounds would be checked out from <a href="http://svn.example.com/repos/sounds" rel="nofollow">http://svn.example.com/repos/sounds</a>. The -rNNN pins the checkout to a revision so that if you're doing more development on that, you can make sure your other projects don't randomly break. Generally instead of doing this revision thing, I external to a tag which holds a stable version. </p>
http://stackoverflow.com/questions/77993/how-can-you-disable-the-windows-x-close-button-in-the-upper-right-hand-corner/78037#780370Answer by jamuraa for How can you disable the Windows' "X" close button in the upper right-hand corner for a web-based program that is displayed in IE7?jamuraa2008-09-16T22:40:01Z2008-09-16T22:40:01Z<p>There is no way to disable the close button on the window (can you imagine!? ad popups that never go away! eek!). </p>
<p>However, you can catch it and do something useful (like click the "close" button on the form). See:
<a href="http://blogs.x2line.com/al/archive/2004/09/15/561.aspx" rel="nofollow">http://blogs.x2line.com/al/archive/2004/09/15/561.aspx</a></p>
http://stackoverflow.com/questions/74430/random-in-python-2-5-not-working/74445#744452Answer by jamuraa for Random in python 2.5 not working?jamuraa2008-09-16T16:51:27Z2008-09-16T16:51:27Z<p>I think you need to give some more information. It's not really possible to answer why it's not working based on the information in the question. The basic documentation for random is at:
<a href="http://docs.python.org/lib/module-random.html" rel="nofollow">http://docs.python.org/lib/module-random.html</a></p>
<p>You might check there. </p>
http://stackoverflow.com/questions/67171/releasing-under-license-do-all-files-need-the-copyright-statment/67206#672064Answer by jamuraa for Releasing under license: Do all files need the copyright statment?jamuraa2008-09-15T21:32:05Z2008-09-15T21:32:05Z<p>It's useful to have a short license statement a the beginning of each file, just to make it clear if said file gets separated from the rest of the pack or is accessed through some non-tar.gz interface like Koders or Google code search. </p>
http://stackoverflow.com/questions/67052/do-you-prefer-analog-or-digital-issue-task-management/67176#671761Answer by jamuraa for Do you prefer Analog or Digital Issue / Task Management?jamuraa2008-09-15T21:29:09Z2008-09-15T21:29:09Z<p>For my money, analog beats digital while in the design phase.</p>
<p>However, once more than 5 people are using or developing on the project, you need to have a digital issue management, just so you can keep track of what everyone is doing at once, and have a history. </p>
<p>If you're smart, you bring something useful to the analog sessions to document them digitally. One of my favorite meeting-hacks is to snap a cameraphone shot of the whiteboard before erasing it. </p>
http://stackoverflow.com/questions/67021/how-do-i-export-the-bazaar-history-of-a-subfolder/67126#671260Answer by jamuraa for How do I export the Bazaar history of a subfolderjamuraa2008-09-15T21:24:45Z2008-09-15T21:24:45Z<p>As far as I know, there is not a way to do this easily with bazaar. One possibility is to take the original project, branch it, and then remove everything unrelated to the framework. You can then move the files in the subdir to the main dir. It's quite a chore, but it is possible to preserve the history. </p>
<p>you will end up with something like: </p>
<pre><code>branch project:
.. other files..
framework/a.file
framework/b.file
framework/c.file
branch framework:
a.file
b.file
c.file
</code></pre>
http://stackoverflow.com/questions/311166/stdautoptr-or-boostsharedptr-for-pimpl-idiom/311252#311252Comment by jamuraa on std::auto_ptr or boost::shared_ptr for pImpl idiom?jamuraa2009-12-02T16:51:10Z2009-12-02T16:51:10ZIs there a reason that you declare the Pimpl class outside MyClass? I ask because I've gotten into the habit of using a private struct for the pimpl object.http://stackoverflow.com/questions/1833077/how-to-order-1-2-3-not-1-10-11-12-in-mysqlComment by jamuraa on How to order 1,2,3 not 1, 10, 11, 12 in mySQLjamuraa2009-12-02T14:04:57Z2009-12-02T14:04:57ZI'm assuming you've tried the (obvious) addition of <code>ORDER BY P.id</code> to the query?http://stackoverflow.com/questions/1602058/why-is-the-copy-constructor-argument-const/1602095#1602095Comment by jamuraa on Why is the copy-constructor argument const?jamuraa2009-10-21T16:55:30Z2009-10-21T16:55:30ZSince <code>Vector</code> is a <code>Vector</code>, can't you can access private members of <code>other</code>?. If you replaced the <code>Vector</code> argument with <code>OtherClass</code>, you can't access private members.
http://stackoverflow.com/questions/1592901/n-values-uuid-generator-reusable-idsComment by jamuraa on n-values UUID generator, reusable IDsjamuraa2009-10-21T15:03:20Z2009-10-21T15:03:20ZYou can make /dev/random better with some hardware solutions and by running daemons which gather more entropy from different sources. If you are concerned about your entropy pool, I suggest a device like the ones from entropy key: <a href="http://www.entropykey.co.uk/" rel="nofollow">entropykey.co.uk</a>http://stackoverflow.com/questions/498582/smart-pointers-with-a-library-written-in-c/498609#498609Comment by jamuraa on Smart pointers with a library written in Cjamuraa2009-08-06T16:59:58Z2009-08-06T16:59:58ZIn OpenCV's case, the functor object is needed anyway because cvReleaseMat is <code>void cvReleaseMat(CvMat** p)</code> (it sets the pointer to NULL after deleting)http://stackoverflow.com/questions/1050919/how-would-you-align-picturesComment by jamuraa on How would you align pictures?jamuraa2009-06-26T21:55:15Z2009-06-26T21:55:15ZDo you have something on the pictures which is constant - something which should end up in the same place in every frame? http://stackoverflow.com/questions/1051347/lots-of-small-files-or-a-couple-huge-onesComment by jamuraa on Lots of small files or a couple huge ones?jamuraa2009-06-26T21:31:27Z2009-06-26T21:31:27ZThe access profile of this data makes a big difference. Are you going to be reading big chunks of data? Is some data related and most likely to be accessed together? At some point, it's better for you to use a DB instead of lots of small files, unless you're doing something which is EASY like serving them via http, and it needs to be REALLY fast. http://stackoverflow.com/questions/687/keyboard-for-programmers/3959#3959Comment by jamuraa on Keyboard for programmersjamuraa2009-06-02T19:02:04Z2009-06-02T19:02:04Z+1 I love this keyboard because it has a nice springy feel to the keys but still requires so little finger travel to get it working. Originally I had it (or similar style keys at least) on my MacBook but then I bought the desk version and it is great as well. It also takes up minimal space on the desk (a plus when there is ref material) and is very easy to store out of the way if needed.
http://stackoverflow.com/questions/864388/doubly-linked-list-illustrationComment by jamuraa on doubly linked list illustrationjamuraa2009-05-14T16:42:20Z2009-05-14T16:42:20ZI think you need to give a little more information on this question - I'm not sure what you're asking about? Why don't you understand why n1.next.prev = n3.next works? It this about the mixing of l-values and r-values (a major cause for confusion in learning about pointers)? You have the right illustration linked (you could have included that in the question as well).http://stackoverflow.com/questions/342048/when-is-it-ok-to-intentionally-obfuscate-urls/342124#342124Comment by jamuraa on When is it OK to intentionally obfuscate URLs?jamuraa2008-12-04T22:23:05Z2008-12-04T22:23:05ZAlso, referer headers are easily spoofed:
curl --referer <a href="http://white.listed.url/here" rel="nofollow">white.listed.url/here</a> <a href="http://attack.against.url/here" rel="nofollow">attack.against.url/here</a>http://stackoverflow.com/questions/92671/how-do-i-reserve-caret-position-in-cedit-control/92892#92892Comment by jamuraa on How do I reserve caret position in CEdit control? jamuraa2008-09-18T14:48:02Z2008-09-18T14:48:02ZAs a user, I would expect the caret to stay in the same place. If you change the value of the CEdit with .SetWindowTextA() for example, the caret gets moved to the front of the box. This is a way to prevent that.