User Alex - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T04:48:07Zhttp://stackoverflow.com/feeds/user/16668http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1870916/physical-in-memory-database-for-logging-purposes-on-my-website/1870941#18709414Answer by Alex for Physical/in-Memory database. (for logging purposes on my website)Alex2009-12-09T00:50:38Z2009-12-09T00:50:38Z<p>I would discourage you from using a different database for storing the logging info versus your business data. When you want to do real-life reporting - for example, how many users of group X did activity Y - you will want to do joins between the "business data" and the "logging data". If that data is in a different database management system, you'll have troubles. </p>
<p>Really, the tax for doing a single write to disk isn't that high (note that your HDD controller is smart enough to batch up the writes - the writes aren't blocking). </p>
http://stackoverflow.com/questions/1865450/comparing-doubles-in-visual-studio-a-standard-way-to-catch-this1Comparing Doubles in Visual Studio - a standard way to catch this?Alex2009-12-08T08:14:26Z2009-12-08T10:12:43Z
<p>Folks, </p>
<p>Even experienced programmers write C# code like this sometimes: </p>
<pre><code>double x = 2.5;
double y = 3;
if (x + 0.5 == 3) {
// this will never be executed
}
</code></pre>
<p>Basically, it's common knowledge that two doubles (or floats) can never be precisely equal to each other, because of the way the computer handles floating point arithmetic. </p>
<p>The problem is, everyone sort-of knows this, but code like this is still all over the place. It's just so easy to overlook. </p>
<p>Questions for you:</p>
<ul>
<li>How have you dealt with this in your development organization? </li>
<li>Is this such a common thing that the compiler should be checking that we all should be screaming really loud for VS2010 to include a compile-time warning if someone is comparing two doubles/floats? </li>
</ul>
<p><strong>UPDATE</strong>: Folks, thanks for the comments. I want to clarify that I most certainly understand that the code above is incorrect. Yes, you never want to == compare doubles and floats. Instead, you should use epsilon-based comparison. That's obvious. The real question here is "how do you pinpoint the problem", not "how do you solve the technical issue". </p>
http://stackoverflow.com/questions/1865379/vs2008-unit-tests-order-of-execution0VS2008 Unit Tests: Order of ExecutionAlex2009-12-08T07:55:47Z2009-12-08T08:14:51Z
<p>Folks, </p>
<p>My apologies for the novice question. It's probably obvious, please don't laugh :-)</p>
<p>I have unit tests defined for my Visual Studio 2008 solution. These tests are defined in multiple methods, in multiple classes across several files. </p>
<p>I've read in a <a href="http://blogs.msdn.com/nnaderi/archive/2007/02/17/explaining-execution-order.aspx" rel="nofollow">blog article</a> that depending on the order of execution of tests is wrong; that said, I have to have a pre-execution step before any of these tests gets to run. I.e. I actually want to define an order of execution somehow - i.e. first I create the database; then I test that it's created; then the remaining 50 tests can run in arbitrary order. </p>
<p>Any ideas on how I can do that? </p>
http://stackoverflow.com/questions/1865118/php-what-opensource-extentions-can-we-add-to-mvc-frameworks/1865417#18654171Answer by Alex for PHP: What Opensource extentions can we add to MVC frameworks?Alex2009-12-08T08:05:26Z2009-12-08T08:05:26Z<p>I would encourage you to look how other frameworks have approached extensibility; instead of including big chunks of other frameworks, you might want to instead allow the community (and yourself) to create plugins that include parts of other frameworks. This will keep the core of your framework lean, while still allowing your users to benefit from the riches of the plugins. </p>
http://stackoverflow.com/questions/1841756/php-charting-library/1841797#18417970Answer by Alex for PHP charting libraryAlex2009-12-03T18:12:37Z2009-12-03T18:12:37Z<p>I would recomment <a href="http://code.google.com/p/flot/" rel="nofollow">Flot</a> - it's a client-side (javascript) charting library, but it does not requite an internet connection (you can host everything on the intranet). If you want a PHP wrapper for it, many frameworks come with it - for example, here's one for QCubed, the framework that I use: <a href="http://examples.qcu.be/assets/plugins/QFlot/example/qflot-timeseries.php" rel="nofollow">http://examples.qcu.be/assets/plugins/QFlot/example/qflot-timeseries.php</a></p>
http://stackoverflow.com/questions/1831386/programmer-puzzle-encoding-a-chess-board-state-throughout-a-game/1831428#18314284Answer by Alex for Programmer Puzzle: Encoding a chess board state throughout a game.Alex2009-12-02T08:27:36Z2009-12-03T18:08:05Z<p>Attacking a subproblem of encoding the steps after an initial position has been encoded. The approach is to create a "linked list" of steps. </p>
<p>Each step in the game is encoded as the "old position->new position" pair. You know the initial position in the beginning of the chess game; by traversing the linked list of steps, you can get to the state after X moves. </p>
<p>For encoding each step, you need 64 values to encode the starting position (6 bits for 64 squares on the board - 8x8 squares), and 6 bits for the end position. 16 bits for 1 move of each side. </p>
<p>Amount of space that encoding a given game would take is then proportionate to the number of moves: </p>
<p>10 x (number of white moves + number of black moves) bits. </p>
<p>UPDATE: potential complication with promoted pawns. Need to be able to state what the pawn is promoted to - may need special bits (would use gray code for this to save space, as pawn promotion is extremely rare). </p>
<p>UPDATE 2: You don't have to encode the end position's full coordinates. In most cases, the piece that's being moved can move to no more than X places. For example, a pawn can have a maximum of 3 move options at any given point. By realizing that maximum number of moves for each piece type, we can save bits on the encoding of the "destination". </p>
<pre><code>Pawn:
- 2 options for movement (e2e3 or e2e4) + 2 options for taking = 4 options to encode
- 12 options for promotions - 4 promotions (knight, biship, rook, queen) times 3 squares (because you can take a piece on the last row and promote the pawn at the same time)
- Total of 16 options, 4 bits
Knight: 8 options, 3 bits
Bishop: 4 bits
Rook: 4 bits
King: 3 bits
Queen: 5 bits
</code></pre>
<p>So the spatial complexity per move of black or white becomes</p>
<p>6 bits for the initial position + (variable number of bits based upon the type of the thing that's moved). </p>
http://stackoverflow.com/questions/1836275/mysql-pulling-the-current-users-vote-on-a-query-of-links/1836382#18363820Answer by Alex for MySQL: Pulling the current user's vote on a query of links.Alex2009-12-02T22:41:06Z2009-12-02T22:41:06Z<p>Here is one way you can make this faster: if you need to show the scores for each of the links frequently, and you vote on the links not very frequently, I'd denormalize the data structure in the following way: </p>
<ul>
<li>Create a column on the link table called "current score"</li>
<li>Whenever you make a modification to the votes table, also update the current score</li>
<li>If you ever worry about the two getting out of sync, run a daemon that overrides the values of the current score with the "aggregation of all votes". </li>
</ul>
<p>Then, showing the score of each of the links is mega-fast; of course, the cost you're paying here is at the vote time (you're doing two inserts/updates instead of one), as well as some extra complexity. </p>
http://stackoverflow.com/questions/1835748/extract-2-sets-of-numbers-from-a-string-using-phps-preg/1835781#18357810Answer by Alex for Extract 2 sets of numbers from a string using PHP's preg?Alex2009-12-02T21:01:53Z2009-12-02T21:01:53Z<p>If you have an input string of form "123#456", you can do</p>
<pre><code>$tempArray = explode("#", $input);
if (sizeof($tempArray) != 2) {
echo "OH NO! Something bad happened!";
}
$value1 = intval($tempArray[0]);
$value2 = intval($tempArray[1]);
echo "Result: " . ($value1 + $value2);
</code></pre>
http://stackoverflow.com/questions/1835758/javascript-links-made-by-php-in-firefox/1835768#18357680Answer by Alex for Javascript links made by php in Firefox.Alex2009-12-02T21:00:06Z2009-12-02T21:00:06Z<p>What is the resulting HTML that's generated? Do a "view source" in Firefox and paste your code into the question. You will most likely see malformed HTML. </p>
http://stackoverflow.com/questions/1835753/can-you-access-properties-methods-of-parent-window-from-the-child/1835759#18357591Answer by Alex for Can you access properties/methods of parent window from the child?Alex2009-12-02T20:58:44Z2009-12-02T20:58:44Z<p>Yes. Just do <code>window.opener</code>, this will get you access to the parent window. For example, to refresh the parent window, you can do</p>
<pre><code>window.opener.location.refresh();
</code></pre>
http://stackoverflow.com/questions/1835669/regex-match-not-in-tag/1835687#18356871Answer by Alex for regex - match not in tagAlex2009-12-02T20:46:01Z2009-12-02T20:46:01Z<p>Regular expressions are meant to parse <a href="http://en.wikipedia.org/wiki/Regular%5Flanguage" rel="nofollow">regular languages</a> - those that can be described with finite automata. HTML is not a regular language. Parsing HTML with regular expressions is the Ctuhlu way: <a href="http://www.codinghorror.com/blog/archives/001311.html" rel="nofollow">http://www.codinghorror.com/blog/archives/001311.html</a>. </p>
http://stackoverflow.com/questions/1835605/natural-language-processing-find-obscenities-in-english/1835644#18356442Answer by Alex for Natural Language Processing: Find obscenities in English?Alex2009-12-02T20:40:35Z2009-12-02T20:40:35Z<p>Note that any NLP logic like this will be subject to attacks of "character replacement":</p>
<p>For example, I can write "hello" as "he11o", replacing L's with One's. Same with obscenities. So while there's no perfect answer, a "blacklist" approach of "bad words" might work. Watch out for false positives (I'd run my blacklist against a large book to see what comes up)</p>
http://stackoverflow.com/questions/1831922/how-to-prevent-users-from-resizing-the-font-on-my-web-site/1831928#18319282Answer by Alex for How to prevent users from resizing the font on my web site?Alex2009-12-02T10:11:18Z2009-12-02T10:11:18Z<p>You can't do that. Browser's "zoom" controls are not in the power of the developer to adjust. Besides, the "font" will be different based on different screen resolutions (if your font size is in pixels, for example). </p>
http://stackoverflow.com/questions/1831887/display-online-nse-national-stock-exchange-data-in-php-web-application/1831923#18319230Answer by Alex for Display online NSE (National Stock Exchange) data in php web applicationAlex2009-12-02T10:10:13Z2009-12-02T10:10:13Z<p>Find out if NSX has a web service that exposes the stock charts. If so, this will likely be a REST or a SOAP endpoint that can be queried for specific stocks. </p>
<p>Create a PHP component that makes a request to that endpoint, and caches the results for a certain period of time (so that your site visitors don't have to wait for the roundtrip every time a page is loaded). </p>
http://stackoverflow.com/questions/1831888/how-to-efficiently-track-the-use-of-space-on-a-map-both-objects-and-free-areas/1831899#18318991Answer by Alex for how to efficiently track the use of space on a map, both objects and free areas.Alex2009-12-02T10:05:43Z2009-12-02T10:05:43Z<p>Your problem is almost identical to the issue of memory allocation in operating systems - issues of fragmentation, cleanup, appropriate contiguous space usage all appear there as well. I'd read on up how this problem is solved in OS's: <a href="http://en.wikipedia.org/wiki/Dynamic%5Fmemory%5Fallocation" rel="nofollow">start on Wikipedia</a>. </p>
http://stackoverflow.com/questions/1831856/can-i-post-data-without-using-submit-button/1831867#18318671Answer by Alex for can i post data without using submit buttonAlex2009-12-02T09:58:54Z2009-12-02T09:58:54Z<p>Yes. For server-side form submission simulation, curl (and php built-in libcurl) can be used to issue POST requests. </p>
http://stackoverflow.com/questions/1831834/creating-online-form-builder/1831861#18318610Answer by Alex for creating Online form builderAlex2009-12-02T09:57:28Z2009-12-02T09:57:28Z<p>It certainly is possible to create a clone of jotform. Heck, that website exists, and it was written by humans, working with existing web technologies, right? So it's definitely possible. There are many web technologies involved, definitely JavaScript, and their backend can be implemented on almost any stack.</p>
<p>Sarcasm aside, what exactly is your real question? </p>
http://stackoverflow.com/questions/1831799/ordering-query-result-by-list-of-values/1831809#18318092Answer by Alex for Ordering query result by list of valuesAlex2009-12-02T09:44:45Z2009-12-02T09:44:45Z<p>Do a join with a temporary table, in which you have the values that you want to filter by as rows. Add a column to it that has the order that you want as the second column, and sort by it. </p>
http://stackoverflow.com/questions/1831783/adsense-how-to-keep-ads-updated-with-logged-in-user-content/1831798#18317981Answer by Alex for AdSense: How to keep Ads updated with logged in user contentAlex2009-12-02T09:42:19Z2009-12-02T09:42:19Z<p>Can a non-authenticated, non-javascript-running Bot that google is running see the context on these pages? Use Google Webmaster Tools (<a href="http://www.netregistry.com.au/news/articles/252/1/Google-Webmaster-Tools-See-what-Google-Sees/Page1.html" rel="nofollow">tutorial</a>) to learn exactly what the googlebot sees on your site. </p>
http://stackoverflow.com/questions/1831759/increase-the-session-timeout-of-my-web-form/1831773#18317731Answer by Alex for Increase the session timeout of my web form ?Alex2009-12-02T09:36:47Z2009-12-02T09:36:47Z<p>Google is your friend: <a href="http://www.devx.com/vb2themax/Tip/18803" rel="nofollow">changing script timeout in ASP.NET</a></p>
http://stackoverflow.com/questions/1831747/is-there-a-better-way-to-implment-equals-for-object-with-lots-of-fields/1831769#18317690Answer by Alex for Is there a better way to implment Equals for object with lots of fields?Alex2009-12-02T09:35:46Z2009-12-02T09:35:46Z<p>You can have a concept of an object hash - whenever an object changes, you pay the price of updating the hash (where the hash is literally a hash of all concatenated properties). Then, if you have a bunch of objects that rarely change, it's really cheap to compare them. The price, of course, is then paid at object editing time. </p>
http://stackoverflow.com/questions/1831714/please-check-validation/1831730#18317300Answer by Alex for please check validationAlex2009-12-02T09:28:41Z2009-12-02T09:28:41Z<p>Your script screams "SQL INJECTION!" Please pwn my site!</p>
<p>Also: your code is vulnerable to synchronization issues. For example, a file might be created AFTER you ran a select statement, but BEFORE you ran the INSERT statement. This will cause weird failures. That's why you should do the "select and insert" as a single stored proc (read up on atomic operations - more specifically, this is an instance of a "compare and swap"). </p>
http://stackoverflow.com/questions/1831699/can-i-control-labels-when-using-radiobuttonlists/1831706#18317060Answer by Alex for Can I control labels when using RadioButtonLists?Alex2009-12-02T09:23:17Z2009-12-02T09:23:17Z<p>I'm not an ASP.NET pro, but I do know that you can easily control the presentation of the LABEL's inside your an element with a known ID by using child selectors. </p>
<pre><code>#myElementID LABEL {
padding: 5px;
}
</code></pre>
http://stackoverflow.com/questions/1831641/i-want-to-use-2-dropdown-list-in-a-way-so-that-second-dropdown-list-show-remainin/1831680#18316802Answer by Alex for I want to use 2 dropdown list in a way so that second dropdown list show remaining items of the first dropdown list except the selected one.Alex2009-12-02T09:16:52Z2009-12-02T09:16:52Z<p>This problem is called "cascading dropdowns" and has lots of solutions online. For example, <a href="http://www.mikepope.com/blog/DisplayBlog.aspx?permalink=1620" rel="nofollow">this one</a>. </p>
http://stackoverflow.com/questions/1831645/finding-a-path-in-a-multidimensional-array-for-a-certain-id/1831668#18316680Answer by Alex for Finding a path in a multidimensional array for a certain IDAlex2009-12-02T09:14:34Z2009-12-02T09:14:34Z<p>Your question indeed makes no sense. What does "Finding the route" mean? </p>
<p>It looks like your array has a recursive structure describing a graph; a graph traversal algorithm for finding the shortest path might be more appropriate (i.e. convert your array into a graph data structure - maybe a node list + edge list, and run a graph algo on it). </p>
http://stackoverflow.com/questions/1831635/vptr-virtual-tables/1831650#18316500Answer by Alex for vptr - virtual tablesAlex2009-12-02T09:09:14Z2009-12-02T09:09:14Z<p>Calling the parent method from a derived child: <a href="http://stackoverflow.com/questions/357307/calling-parent-function-from-derived-child">old question</a></p>
http://stackoverflow.com/questions/1831610/how-to-develop-a-mvc-framework-from-scratch/1831642#18316425Answer by Alex for How to develop a MVC framework from scratch?Alex2009-12-02T09:07:54Z2009-12-02T09:07:54Z<p>I would not start developing an MVC framework until the point when I knew what MVC was, very crisply and clearly, and was able to explain the difference between the model and the controller with my eyes closed. The way to do it is to learn from existing frameworks (Cake, Zend, QCubed, etc). </p>
http://stackoverflow.com/questions/1831598/how-do-google-and-other-search-engines-determine-keywords/1831630#18316303Answer by Alex for How Do Google and Other Search Engines Determine Keywords? Alex2009-12-02T09:03:43Z2009-12-02T09:03:43Z<p>One of the basic techniques they use is the text of the keywords that's placed in the links to that site. For example, when you link to an article about <a href="http://example.com" rel="nofollow">Obama's party crashers</a> - note that the link text was "Obama party crashers". Google can determine that the destination site is about that topic. </p>
<p>Next, it's using recursive inferences. If I know that sites A and B are about topic X, and they both link to site C, I can assume that site C is also about topic X. </p>
<p>Next, it's actual textual mining of the content of the site. Techniques such as <a href="http://en.wikipedia.org/wiki/Tf%E2%80%93idf" rel="nofollow">TF/IDF</a> are used to determine most relevant keywords from a given page's content. </p>
http://stackoverflow.com/questions/1831442/where-is-the-best-place-to-verify-form-data/1831602#18316020Answer by Alex for Where is the best place to verify form data ? Alex2009-12-02T08:58:28Z2009-12-02T08:58:28Z<p>There are multiple places where validation can happen. </p>
<p>First, client-side versus server-side: it's frequently a good practice to do pre-validation on the client side (ex. "only numbers allowed!") before sending the bits up the wire. Server side validation is always mandatory as a security / data integrity requirement. </p>
<p>Front end versus model requirements: a particular form might not know of model's requirement for related data objects (for example, if there's a business logic rule that value of 3 in a particular field should not be present if the number of related records is less than 5) - the only place that would know that is the model. </p>
http://stackoverflow.com/questions/1831535/how-can-i-convert-php-code-sniffer-xml-report-into-html/1831560#18315600Answer by Alex for How can I convert PHP Code Sniffer XML report into HTML?Alex2009-12-02T08:51:21Z2009-12-02T08:51:21Z<p>XSLT is quite cumbersome to write, very few people I know can do it well; you can instead parse the XML in a PHP script and spit out HTML. </p>
<p>CodeSniffer can also output its report as a CSV file - if that's easier for you to parse, use that instead. </p>
http://stackoverflow.com/questions/1865450/comparing-doubles-in-visual-studio-a-standard-way-to-catch-this/1865480#1865480Comment by Alex on Comparing Doubles in Visual Studio - a standard way to catch this?Alex2009-12-08T08:38:03Z2009-12-08T08:38:03ZI'm well aware of the solution to the problem. What I'm asking is "how to spot it better", not "how to solve it". http://stackoverflow.com/questions/1865450/comparing-doubles-in-visual-studio-a-standard-way-to-catch-this/1865477#1865477Comment by Alex on Comparing Doubles in Visual Studio - a standard way to catch this?Alex2009-12-08T08:36:05Z2009-12-08T08:36:05ZFine, fine, fine. The point stands. I'll edit my code. http://stackoverflow.com/questions/1865379/vs2008-unit-tests-order-of-execution/1865398#1865398Comment by Alex on VS2008 Unit Tests: Order of ExecutionAlex2009-12-08T08:15:43Z2009-12-08T08:15:43ZTotally makes sense. Thank you!http://stackoverflow.com/questions/1840847/can-someone-copyright-a-sql-query/1841026#1841026Comment by Alex on Can someone copyright a SQL query?Alex2009-12-08T08:08:48Z2009-12-08T08:08:48ZThat is absolutely the wrong way to approach copyright! By looking at the implementation of the old query to come up with your own, you are STEALING the intellectual property (legally speaking) - so this is no better than just using someone else's code. Instead, for cases like this, rewrite the query by only analyzing what its inputs and outputs are, treating it like a black box. http://stackoverflow.com/questions/1865020/php-how-to-disable-dangerous-functions/1865041#1865041Comment by Alex on PHP: How To Disable Dangerous FunctionsAlex2009-12-08T08:06:57Z2009-12-08T08:06:57ZWell, a mean hacker that is running the PHP shell can just do an fopen() and edit a bunch of system files. Or delete a bunch of files. Or read your .htaccess. Bottom line, If I'm running php code on your box, you're toast.http://stackoverflow.com/questions/1865379/vs2008-unit-tests-order-of-execution/1865398#1865398Comment by Alex on VS2008 Unit Tests: Order of ExecutionAlex2009-12-08T08:03:42Z2009-12-08T08:03:42ZThe most important part of this ordering is the actual creation of the database, not the TESTING of the fact that it's created. As you noted, testing of that will be done by all other unit tests :-)
As I mentioned, I have multiple test classes. I need this initialization logic called before ANY of the test classes is executed. So ClassInitialize() doesn't do it.http://stackoverflow.com/questions/1865179/foreach-through-a-session-variable/1865258#1865258Comment by Alex on foreach through a session variableAlex2009-12-08T08:01:40Z2009-12-08T08:01:40ZWhat? Where else would he store database-related info, then?http://stackoverflow.com/questions/1865179/foreach-through-a-session-variable/1865201#1865201Comment by Alex on foreach through a session variableAlex2009-12-08T08:00:33Z2009-12-08T08:00:33ZAlso, make sure that the values that get stored in $_SESSION['items'] are validates as integers - otherwise, you're looking at SQL injection. http://stackoverflow.com/questions/1865072/how-to-cover-a-area-using-bing-mapComment by Alex on how to cover a area using bing map.Alex2009-12-08T07:57:37Z2009-12-08T07:57:37ZThe url above worked for me in Firefox.http://stackoverflow.com/questions/1849812/php-in-javascript/1849883#1849883Comment by Alex on php in javascript?Alex2009-12-05T00:28:11Z2009-12-05T00:28:11ZNote that it is KEY to have the file named as .php - otherwise, the server will not process the <?php directives inside. http://stackoverflow.com/questions/1831386/programmer-puzzle-encoding-a-chess-board-state-throughout-a-game/1831428#1831428Comment by Alex on Programmer Puzzle: Encoding a chess board state throughout a game.Alex2009-12-03T18:08:39Z2009-12-03T18:08:39ZThanks, A.Rex and Chris! Great comments! I updated the answer to reflect your feedback. http://stackoverflow.com/questions/1835748/extract-2-sets-of-numbers-from-a-string-using-phps-pregComment by Alex on Extract 2 sets of numbers from a string using PHP's preg?Alex2009-12-02T21:48:24Z2009-12-02T21:48:24ZWhat do you want $myNum1 and 2 to be in this example? http://stackoverflow.com/questions/1831808/outlook-2003-authentication-before-sending-doesnt-workComment by Alex on Outlook 2003: authentication before sending doesn't workAlex2009-12-02T09:45:50Z2009-12-02T09:45:50ZShould this go to superuser? http://stackoverflow.com/questions/1831648/how-to-get-the-values-from-input-fields-into-datatableComment by Alex on How to get the values from input fields into datatableAlex2009-12-02T09:10:37Z2009-12-02T09:10:37Zwhat are you trying to do? What's the question? http://stackoverflow.com/questions/1831620/how-can-you-inject-a-session-referenceComment by Alex on How can you inject a session referenceAlex2009-12-02T09:05:34Z2009-12-02T09:05:34ZWhat's the programming language? What's the context, why are you trying to do this?