User Einstein - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T23:22:15Z http://stackoverflow.com/feeds/user/41898 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1780687/preventing-csrf-in-php/1780728#1780728 0 Answer by Einstein for preventing csrf in php Einstein 2009-11-23T01:42:17Z 2009-11-23T01:42:17Z <p>With referral checking all your doing is looking to make sure the referer is from your site/system. If the referer does not exist or is from a foreign site then the referal check fails and you may not want to honor whatever request is being made.</p> <p>In the past problems with various technologies and browsers (flash..et al) allowed forgery of referal headers. Its something to consider. There are several methods using javascript to link to resources where the referal data is not present/passed in the request header.</p> <p>This behavior varies somewhat between browsers. If you use javascript to submit a form your typically ok. If you use something like window.location most likely you should not expect referal data to be present.</p> <p>A popular method for CSRF prevention is to not use cookies and always pass state between references... Passing a session token in all links throughout an application.</p> http://stackoverflow.com/questions/1761109/practical-uses-of-oop/1761450#1761450 0 Answer by Einstein for practical uses of OOP Einstein 2009-11-19T07:12:24Z 2009-11-19T07:12:24Z <p>Design trumps technology and methodology. Good designs tend to incorporate universal principals of complexity management such as law of demeter which is at the heart of what OO language features strive to codify.</p> <p>Good design is not dependant on use of OO specific language features although it is typically in ones best interests to use them.</p> http://stackoverflow.com/questions/1109277/importing-md5salt-passwords-to-md5/1740782#1740782 0 Answer by Einstein for Importing MD5+Salt Passwords to MD5. Einstein 2009-11-16T08:14:22Z 2009-11-16T08:14:22Z <p>There is no method for automatic conversion between hash algorithms. Unfortunately you would likely be stuck picking from one of the following bad options:</p> <ol> <li>Configure or program old cart to store hashes in new format as users login to old system.</li> <li>Use a password cracker to recover some percentage of old system cart passwords.</li> <li>Ask new vendor to support old format</li> <li>Send notification to all users they will need to prepend the salt text to their passwords when using the new system or customize the system to prepend known salts for them.</li> </ol> http://stackoverflow.com/questions/1650721/server-side-db-programming-why/1651178#1651178 0 Answer by Einstein for server side db programming: why? Einstein 2009-10-30T17:19:47Z 2009-10-30T17:19:47Z <p>A good way to reduce scalability of your data tier is to interact with it on a procedural basis. (Fetch row..process... update a row, repeat)</p> <p>This can be done within a stored procedure by use of cursors or within an application (fetch a row, process, update a row) .. The result (poor performance) is the same.</p> <p>When people say they want to do processing in their application it sometimes implies a procedural interaction.</p> <p>Sometimes its necessary to treat data procedurally however from my experience developers with limited database experience will tend to design systems in a way that do not leverage the strenght of the platform because they are not comfortable thinking in terms of set based solutions. This can lead to severe performance issues.</p> <p>For example to add 1 to a count field of all rows in a table the following is all thats needed: </p> <pre><code>UPDATE table SET cnt = cnt + 1 </code></pre> <p>The procedural treatment of the same is likely to be orders of magnitude slower in execution and developers can easily overlook concurrency issues that make their process inconsistant. For example this kind of code is inconsistant given the avaliable read isolation levels of many RDMBS platforms.</p> <pre><code>SELECT id,cnt FROM table ... foreach row ... UPDATE table SET cnt = row.cnt+1 WHERE id=row.id ... </code></pre> <p>I think just in terms of abstraction and ease of servicing a running environment utilizing stored procedures can be a useful tool.</p> <p>Procedure plan cache and reduced number of network round trips in high latency environments can also have significant performance advantages.</p> <p>It is also true that trying to be too clever or work very complex problems in the RDBMS's half-baked procedural language can easily become a recipe for disaster.</p> http://stackoverflow.com/questions/1618591/how-to-delta-encode-a-c-c-struct-for-transmission-via-sockets/1618657#1618657 0 Answer by Einstein for How to delta encode a C/C++ struct for transmission via sockets Einstein 2009-10-24T18:13:46Z 2009-10-24T18:13:46Z <p>Use an RPC like corba or protocol buffers</p> <p>Use DTLS with a compression option</p> <p>Use a packed format</p> <p>Repurposes an existing header compression library</p> http://stackoverflow.com/questions/314581/performance-of-web-app-with-high-number-of-inserts/1581769#1581769 0 Answer by Einstein for performance of web app with high number of inserts Einstein 2009-10-17T08:50:51Z 2009-10-17T08:50:51Z <p>When working with an RDBMS the most important thing is optimizing write operations to disk. Something somewhere has got to flush() to persistant storage (disk drives) to complete each transaction which is VERY expensive and time consuming. Minimizing the number of transactions and maximizing the number of sequential pages written is key to performance.</p> <p>If you are doing inserts sending them in bulk within a single transaction will lead to more effecient write behavior on disk reducing the number of flush operations. </p> <p>My recommendation is to queue the messages and periodically .. say every 15 seconds or so start a transaction ... send all queued inserts ... commit the transaction.</p> <p>If your database supports sending multiple log entries in a single request/command doing so can have a noticable effect on performance when there is some network latency between the application and RDBMS by reducing the number of round trips.</p> <p>Some systems support bulk operations (BCP) providing a very effecient method for bulk loading data which can be faster than the use of "insert" queries.</p> <p>Sparing use of indexes and selection of sequential primary keys help.</p> <p>Making sure multiple instances either coordinate write operations or write to separate tables can improve throughput in some instances by reducing concurrency management overhead in the database.</p> http://stackoverflow.com/questions/1550932/i-was-asked-this-in-a-recent-interview/1551125#1551125 0 Answer by Einstein for I was asked this in a recent interview Einstein 2009-10-11T16:40:18Z 2009-10-11T16:40:18Z <p>I have a feeling based on their answer about product ids and two digits the answer they were looking for is to convert the numeric product ids into a different base system or packed form.</p> <p>They made a point to indicate the product description was with the product ids to tell you that a higher base system could be used within the current fields datatype.</p> http://stackoverflow.com/questions/1182584/secure-random-number-generation-in-php/1551064#1551064 0 Answer by Einstein for Secure random number generation in PHP Einstein 2009-10-11T16:17:23Z 2009-10-11T16:17:23Z <p>I strongly recommend targeting /dev/urandom on unix systems or the crypto-api on the windows platform as an entropy source for passwords.</p> <p>I can't stress enough the importance of realizing hashes are NOT magical entropy increasing devices. Misusing them in this manner is no more secure than using the seed and rand() data before it had been hashed and I'm sure you recognize that is not a good idea. The seed cancels out (deterministic mt_rand()) and so there is no point at all in even including it.</p> <p>People think they are being smart and clever and the result of their labor are fragile systems and devices which put the security of their systems and the security of other systems (via poor advice) in unecessary jeopardy.</p> <p>Two wrongs don't make a right. A system is only as strong as its weakest part. This is not a license or excuse to accept making even more of it insecure.</p> http://stackoverflow.com/questions/1549847/difference-between-2-indexes-with-columns-defined-in-reverse-order/1549881#1549881 2 Answer by Einstein for Difference between 2 indexes with columns defined in reverse order Einstein 2009-10-11T04:49:57Z 2009-10-11T04:49:57Z <p>A multi-column index is conceptually no different than taking all the columns fields and concatinating them together -- indexing the result as a single field.</p> <p>Since indexes are b-trees they are always searched left to right. You have to begin your search from the left to pair down results as you move to the right for the index to do its job and provide useful results.</p> <p>With only a single field indexed: </p> <pre><code>WHERE val1 LIKE 'myvalue%' (uses index) WHERE val1 LIKE '%myvalue' (cannot use index) </code></pre> <p>The same concept is applied for multi-column indexes:</p> <p>When order is val1,val2</p> <pre><code>WHERE val1='value1' (uses index) WHERE val2='value2' (cannot use index) </code></pre> <p>When order is val2,val1</p> <pre><code>WHERE val1='value1' (cannot use index) WHERE val2='value2' (uses index) </code></pre> <p>If both fields are matched exactly order of indexes does not matter in that case.</p> <pre><code>WHERE val1='value1' AND val2='value2' (uses index in any order) </code></pre> http://stackoverflow.com/questions/1526485/can-the-data-in-a-udp-packet-be-assumed-to-be-correct-at-the-application-level/1526913#1526913 0 Answer by Einstein for Can the data in a UDP packet be assumed to be correct at the application level? Einstein 2009-10-06T17:14:58Z 2009-10-06T17:14:58Z <p>Its worth noting the same 16-bit crc implementation applies to TCP as well as UDP on a per packet basis. When characterizing the properties of UDP consider the majority of data transfers that take place on the Internet today use TCP. When you download a file from a web site the same CRC is used for the transmission.</p> <p>The secret is the physical and virtual layers (L1) of most access technologies is significantly more robust than TCP and the combined chance of error between L1 and L2 is very low.</p> <p>For example modems had error correcting hardware and the PPP layer also had its own checksum.</p> <p>DSL is the same way with error correction at the ATM (Solomon codes) and CRC at the PPPoA layers.</p> <p>Docsis cable modems use similiar technology to that of DSL for error detection and correction.</p> <p>The end result is that errors in modern systems are extremely unlikely to ever get past L1.</p> <p>I have seen clock issues with old frame relay circuts 14 years ago routinly cause corruption at the TCP layer. Have also heard stories of patterns of bit flips on malfunctioning hardware promoting canceling of CRCs and corrupting TCP.</p> <p>So yes it is possible for corruption and yes you should implement your own error detection if the data is very important. In practice on the Internet and private networks its a rare occurance today.</p> <p>All hardware: disk drives, buses, processors, even ECC memory have their own error probabilities - for most applications their low enough that we take them for granted.</p> http://stackoverflow.com/questions/1513911/most-efficient-way-to-unique-random-string/1514165#1514165 0 Answer by Einstein for Most Efficient Way to... Unique Random String Einstein 2009-10-03T16:12:06Z 2009-10-03T16:12:06Z <p>I think you should stick to your origional idea. Putting a unique constraint on the index and letting the database check/report dupes for you would be fairly effecient method of dupe checking but this assumption depends on some information not provided like the number of rows and likelyhood of encountering dupes with randomly selected data.</p> <p>Fully pre-populating a unique sequence pool with your parameters requires a 459 million row table.</p> <p>You could use a bloom filter to load managable statistics into a database or main memory and avoid dupes but depending on the row count and filter configuration this may lead to saturation of the filter when the row count is an appreciable percentage of the 459 million limit.. Since the filter can report false positives you should work to ensure that you don't get into a situation where your system is stuck trying permutations that pass the filter approaching forever.</p> http://stackoverflow.com/questions/1499239/database-vs-flat-text-file-what-are-some-technical-reasons-for-choosing-one-over/1499604#1499604 1 Answer by Einstein for Database vs Flat Text File: What are some technical reasons for choosing one over another when performance isn't an issue? Einstein 2009-09-30T17:38:43Z 2009-09-30T17:38:43Z <p>It depends on context. If its very limited as you suggest simply logging some basic file transfer data processing the log once and throwing it away I would tend to be attracted to the flat file option as well. RDBMS would be a bit overkill however maybe forseeable future conciderations can add an overriding factor.</p> <p>As a compromise you may want to think about an embedded solution like SQL Lite et al or using a database abstraction API (such as flat file ODBC driver) that operates on flat files and can later be easily changed to operate against an RDBMS without any or any siginficant code changes as conditions warrent.</p> <p>You might also want to think in terms of log server such as using reliable syslog with database backed storage. With this method there is less complexity in the simple application and all systems can benefit from the arrangement.</p> http://stackoverflow.com/questions/1485442/storing-partial-credit-card-numbers/1488508#1488508 0 Answer by Einstein for Storing partial credit card numbers Einstein 2009-09-28T18:08:47Z 2009-09-28T18:08:47Z <p>Your specific question is answered in sec 3.3 of the PCI/DSS document. First six and last four are max for display. Customer (paper?) receipts are more restrictive. Those with a legitimiate need to know can see full card data.</p> <p>My recommendation is to contact your merchant provider and see what options are available to you. A number of the modern transaction gateways have "vault" features where sensitive information is stored at the provider and you simply reference customers by a token number when you want to bill them or check account information.</p> <p>Along the same lines use of transaction specific tokens can be used to reference needed data stored on the providers system.</p> <p>However I can't stress enough the importance of reading and understanding PCI DSS. Simply punting secure storage does not magically obsolve you from being subject to PCI compliance requirements!! This is only possible when your system never touches full card data.</p> http://stackoverflow.com/questions/1403915/does-a-disaster-proof-language-exist/1428762#1428762 0 Answer by Einstein for does a disaster proof language exist? Einstein 2009-09-15T18:05:04Z 2009-09-15T18:05:04Z <p>I think its a fundemental mistake for recovery not to be a salient design issue. Punting responsibility exclusivly to the environment leads to a generally brittle solution intolerant of internal faults.</p> <p>If it were me I would invest in reliable hardware AND design the software in a way that it was able to recover automatically from any possible condition. Per your example database session maintenance should be handled automatically by a sufficiently high level API. If you have to manually reconnect you are likely using the wrong API.</p> <p>As others have pointed out procedure languages embedded in modern RDBMS systems are the best you are going to get without use of an exotic language.</p> <p>VMs in general are designed for this sort of thing. You could use a VM vendors (vmware..et al) API to control periodic checkpointing within your application as appropriate.</p> <p>VMWare in particular has a replay feature (Enhanced Execution Record) which records EVERYTHING and allows point in time playback. Obviously there is a massive performance hit with this approach but it would meet the requirements. I would just make sure your disk drives have a battery backed write cache.</p> <p>You would most likely be able to find similiar solutions for java bytecode run inside a java virtual machine. Google fault tolerant JVM and virtual machine checkpointing.</p> http://stackoverflow.com/questions/1421488/java-decompiler-written-in-the-united-states/1428512#1428512 1 Answer by Einstein for Java decompiler written in the United States Einstein 2009-09-15T17:24:32Z 2009-09-15T17:24:32Z <p>It scares me when I hear this type of nonsense eminating from my own government.</p> <p>Run jad -p, recompile the source and compare the compiled class with the origional class file.</p> <p>You can run jad on a throwaway computer/VM instance. If there is reasonable agreement on the compiled class you know the software functioned properly.</p> http://stackoverflow.com/questions/1386253/how-to-recognize-malicious-source-code/1390989#1390989 1 Answer by Einstein for How to recognize malicious source code? Einstein 2009-09-07T21:17:21Z 2009-09-07T21:17:21Z <p>There is no difference between malicious code and an unintentional security bug.</p> <p>You might as well be asking "How can I write a useful program that has no bugs and is impossible to exploit".</p> <p>As we all learn in CS its impossible to even write debuggers to catch infinite loops let alone intelligent malevolence.</p> <p>My advice for security conscious applications is an ex(p|t)ensive code review and use of commercially available static analysis software.</p> http://stackoverflow.com/questions/1016466/mysql-or-sql-server-better-for-an-enterprise-application/1016714#1016714 1 Answer by Einstein for MySQL or SQL Server better for an Enterprise application? Einstein 2009-06-19T07:12:03Z 2009-08-19T22:32:34Z <p>MySQL and SQL Server Express are free for production use. In my view the best advice is to try them both and decide for yourself. A lot of folks can live quite happily with a lightweight RDBMS where solutions like MySQL/Express may be appropriate.</p> <p>From a purely technical point of view all of the major RDBMS vendors (Oracle, Sybase, DB2, SQL Server et al.) are significantly more capable than MySQL is currently or can reasonably be expected to be in the foreseeable future. </p> <p>This does <em>not</em> mean you should not use MySQL for a particular job. A good analogy is continuing to use a version of Microsoft office released years ago. For most people the old version does everything they would ever want even though the newer version is "better" and has more features.</p> http://stackoverflow.com/questions/1283797/processor-os-32bit-64-bit/1297197#1297197 1 Answer by Einstein for Processor, OS : 32bit, 64 bit Einstein 2009-08-18T23:54:27Z 2009-08-18T23:54:27Z <p>Think of a generic computers memory as a massive bingo card with billions of squares. To address any individual square on the board there is a scheme to label each row and column B-5, I-12, O-52..etc.</p> <p>If there are enough squares on the card eventually you will run out of letters so you will need to start reusing more letters and writing larger numbers to continue to be able to uniquely address each square.</p> <p>Before you know it the announcer is spouting annoyingly huge numbers and letter combinations to let you know which square to mark on your 10 billion square card. BAZC500000, IAAA12000000, OAAAAAA523111221</p> <p>The bit count of the computer specifies its limit of the complexity of the letters and numbers to address any specific square.</p> <p>32-bits means if the card is any bigger than 2^32 squares the computer does not have enough wires and transisters to allow it to uniquely physically address any specific square required to read a value or write a new value to the specified memory location.</p> <p>64-bit computers can individually address a massive 2^64 squares.. but to do so each square needs a lot more letters and numbers to make sure each square has its own unique address. This is why 64-bit computers need more memory.</p> <p>Other common examples of addressing limits are local telephone numbers. They are ususally 7-digits 111-2222 or reformatted as a number 1,112,222 .. what happens when there are more than 9,999,999 people who want their own telelphone numbers? You add area codes and country codes and your phone number goes from 7 digits to 10 to 11 taking up more space.</p> <p>If you are familiar with the impending IPv4 shortage its the same problem.. IPv4 addresses are 32-bits meaning there are only 2^32 (~4 billion) unique IP addresses possible and there are many more people than that alive today.</p> <p>There is overhead in all schemes I mentioned (computers, phone numbers, IPv4 addresses) where certain portions are reserved for organizational purposes so the usable space is much less.</p> <p>The performance promise for the 64-bit world is that instead of sending 4 bytes at a time (ABCD) a 64-bit computer can send 8 bytes at a time (ABCDEFGH) so the alphabet is transfered between different areas of memory up to twice as fast as a 32-bit computer. There is also benefit for some applications that just run faster when they have more memory they can use.</p> <p>In the real world 64-bit desktop processors by intel et al are not really true 64-bit processors and still are limited to 32-bits for several types of operations so in the real world the performance between 32-bit and 64-bit applications is marginal. 64-bit mode gives you more hardware registers to work with which does improve performance but adressing more memory on a "fake" 64-bit processor can also hurt performance in some areas so its ususally a wash. In the future we will be seeing more performance improvements when desktop processors become fully 64-bit.</p> http://stackoverflow.com/questions/1268329/what-is-preventing-widespread-use-of-xslt-for-webpages/1268806#1268806 0 Answer by Einstein for What is preventing widespread use of XSLT for webpages? Einstein 2009-08-12T21:24:28Z 2009-08-12T21:24:28Z <p>XSLT was one of the few XMLish technologies that I actually liked. Especially for report generation the concept of XSLT with its set-based feel and ability to target all kinds of output formats (not just html) it deserves to be used more than it is today.</p> <p>The reason I personally never used it was because at the time one of the browsers (I believe IE7) did not support rendering XSLT in the browser and we did not have the option of XSLT processing on the server side.</p> <p>The second reason is that while its great for reporting and data presentation it wasn't really practical in terms of general purpose use.</p> http://stackoverflow.com/questions/1264367/best-way-to-store-password-into-sql/1264494#1264494 0 Answer by Einstein for Best way to store password into sql Einstein 2009-08-12T06:23:42Z 2009-08-12T06:23:42Z <p>As with most questions the best answer depends on the context of your situation. There is no good solution.</p> <p>Some options:</p> <ol> <li><p>Leave the password in plain text or reversably encrypt. Use SQLServer facilities to encrypt important fields at the RDBMS level or use similiar encryption functions and hope that MS has implemented reasonable key management and the keys are reasonably secure for your purposes. In practice all encryption does is collapse storage of a whole lot of little secrets into storage of one big secret.. It might make the problem more managable but the problem itself never goes away.</p></li> <li><p>Irreversably "Encrypt" the password using a hashing algorithm or some form of crypt(). Depending on the attack vectors available this method may not provide much in the way of actual improvment of security over plaintext storage.</p></li> </ol> <p>. Use of hashed passwords limits your options in terms of selection of a secure authentication algorithm. With this approach you will likely end up sending plain texts or other material that is no better over a transport (regardless of if unbound encryption is used or not) this can be a substantial risk from a trust POV.</p> <p>. Succeptable to offline dictionary attack if hashes are stolen recovery of some portion of passwords should be outright assumed if they have any value to an attacker.</p> <p>. In some cases knowledge of the password hash can be just as bad as knowing the password in terms of system access.</p> http://stackoverflow.com/questions/618398/does-using-linux-benefit-you-as-a-programmer/1166189#1166189 1 Answer by Einstein for Does using linux benefit you as a programmer? Einstein 2009-07-22T15:41:12Z 2009-07-22T15:41:12Z <p>In a general sense I tend to look at the operating system as a commodity. Just another platform to be targeted regardless of if its windows, linux, mac, solaris..etc. All standard unix applications have been ported to all other general purpose operating systems in use today so its hard to claim that you can benefit from an environment unique to linux.</p> <p>To be honest in terms of development the MS IDE with its context sensitive help and edit-and-continue features allowing you to make realtime code changes on the fly without restarting the application is hard to beat on any platform. To the best of my knowledge Suns IDE was the only other c/c++ system with this capability.</p> <p>The one major exception is valgrind. For debugging applications valgrind has actually become quite good at finding problems (and surpressing false alarms:) over the years. Its getting to be right up there with the likes of rational purify in my opinion. We routinly do quite a bit of testing on the linux platform specifically because valgrind exists there and nowhere else.</p> http://stackoverflow.com/questions/1117590/preventing-multiple-daily-votes-in-a-contest/1117665#1117665 1 Answer by Einstein for Preventing multiple daily votes in a contest Einstein 2009-07-13T04:11:05Z 2009-07-13T04:11:05Z <p>Making a just for fun voting system foolproof would most likely necessarily spoil it. My advice is simply not to provide an accurate feedback channel! If you provide feedback on the acceptance of a vote - show intermediate totals WITH duplicates so that people think their extra votes are counting. </p> <p>With this method people don't think they need to resort to additional creativity to submit additional votes.</p> http://stackoverflow.com/questions/173409/how-can-i-find-the-execution-time-of-a-section-of-my-program-in-c/1085320#1085320 0 Answer by Einstein for How can I find the execution time of a section of my program in C? Einstein 2009-07-06T03:43:32Z 2009-07-06T03:43:32Z <p>It depends on the conditions.. Profilers are nice for general global views however if you really need an accurate view my recommendation is KISS. Simply run the code in a loop such that it takes a minute or so to complete. Then compute a simple average based on the total run time and iterations executed.</p> <p>This approach allows you to:</p> <ol> <li><p>Obtain accurate results with low resolution timers.</p></li> <li><p>Not run into issues where instrumentation interferes with high speed caches (l2,l1,branch..etc) close to the processor. However running the same code in a tight loop can also provide optimistic results that may not reflect real world conditions.</p></li> </ol> http://stackoverflow.com/questions/1058353/virtualization-and-why-it-is-good-for-programmers/1058930#1058930 0 Answer by Einstein for Virtualization and why it is good for programmers Einstein 2009-06-29T15:27:43Z 2009-06-29T15:27:43Z <p>From my experience in most cases the answer is typically "no" (When testing and targeting multiple platforms is removed) Both are huge reasons to be familiar with "desktop" VM solutions. Others have done an excellent job of listing rare exceptions like debugging kernel codes.</p> <p>There are some quirks one must be aware of when running on a virtual machine. This is hardly an exhaustive list:</p> <ol> <li><p>Loss of precsision or even time reversal in high resolution timers due to emulation of hardware resources (depends somewhat on the vm platform and operating system)</p></li> <li><p>Virtual network interfaces ususally bridged. We've seen some extremely odd behavior in the host system with an application that sets up its own bridge between virtual interfaces -behavior which logically should not effect the host in one of the leading VM solutions.</p></li> <li><p>Usage models - If your product has orwellian licensing codes or records state dependant behavior when interacting with remote systems you should account for what would happen if a system were "paused" and "restarted" or restarted from an earlier "state". Normally this kind of thing would be taken into account anyway in a robust implementation.</p></li> </ol> http://stackoverflow.com/questions/1049553/how-prevalent-is-utf-8-really/1055403#1055403 1 Answer by Einstein for How prevalent is UTF-8 really? Einstein 2009-06-28T18:09:25Z 2009-06-28T18:09:25Z <p>While it does not specifically address the question -- UTF-8 is the only character encoding mandatory to implement in all IETF track protocols.</p> <p><a href="http://www.ietf.org/rfc/rfc2277.txt" rel="nofollow">http://www.ietf.org/rfc/rfc2277.txt</a></p> http://stackoverflow.com/questions/1044654/bitfield-manipulation-in-c/1044937#1044937 1 Answer by Einstein for Bitfield manipulation in C Einstein 2009-06-25T16:37:15Z 2009-06-27T21:37:29Z <p>Well you can't go wrong with structure mapping since both fields are accessable they can be used interchangably.</p> <p>One benefit for bit fields is that you can easily aggregate options:</p> <pre><code>mask = USER|FORCE|ZERO|COMPAT; vs flags.user = true; flags.force = true; flags.zero = true; flags.compat = true; </code></pre> <p>In some environments such as dealing with protocol options it can get quite old having to individually set options or use multiple parameters to ferry intermediate states to effect a final outcome. </p> <p>But sometimes setting flag.blah and having the list popup in your IDE is great especially if your like me and can't remember the name of the flag you want to set without constantly referencing the list.</p> <p>I personally will sometimes shy away from declaring boolean types because at some point I'll end up with the mistaken impression that the field I just toggled was not dependent (Think multi-thread concurrency) on the r/w status of other "seemingly" unrelated fields which happen to share the same 32-bit word.</p> <p>My vote is that it depends on the context of the situation and in some cases both approaches may work out great.</p> http://stackoverflow.com/questions/1042366/indexed-ranged-search-algorithm-for-ip-addresses 3 Indexed ranged search algorithm for IP Addresses Einstein 2009-06-25T05:54:27Z 2009-06-25T12:05:52Z <p>Given an ACL list with 10 billion IPv4 ranges in CIDR notiation or between two IPs:</p> <pre><code>x.x.x.x/y x.x.x.x - y.y.y.y </code></pre> <p>What is an effecient search/indexing algorithm for testing that a given IP address meets the critera of one or more ACL ranges?</p> <p>Lets assume most ACL range definitions span a great number of class C blocks.</p> <p>Indexing points via hash tables is easy but try as I might have not been able to come up with a reasonable method for detecting which points are covered by a large list of "lines".</p> <p>Had some thoughts like indexing hints at a certain level of detail -- say pre-computing at the class C level each ACL that covered that point but the table would be too large.. Or some sort of KD tree to dynamically set levels of detail.</p> <p>Also had the thought that maybe there are collision detection algorithms out there that can address this.</p> <p>Any hints or pointers in the right direction?</p> http://stackoverflow.com/questions/1041542/how-to-download-multiple-files-with-one-http-request/1041682#1041682 0 Answer by Einstein for How to download multiple files with one HTTP request? Einstein 2009-06-25T00:54:16Z 2009-06-25T00:54:16Z <p>Remember doing this >10 years ago in the netscape 4 days. It used boundaries like what your doing and didn't work at all with other browsers at that time.</p> <p>While it does not answer your question HTTP 1.1 supports request pipelining so that at least the same TCP connection can be reused to download multiple images.</p> http://stackoverflow.com/questions/1036285/what-does-1-mean-in-perl/1036867#1036867 3 Answer by Einstein for What does $1 mean in Perl? Einstein 2009-06-24T07:24:34Z 2009-06-24T17:25:27Z <p>As others have pointed out the $x are capture variables for regular expressions allowing you to reference sections of a matched pattern.</p> <p>Perl also supports named captures which might be easier for humans to remember in some cases.</p> <p>given input: 111 222</p> <pre><code>/(\d+)\s+(\d+)/ </code></pre> <p>$1 is 111</p> <p>$2 is 222</p> <p>One could also say:</p> <pre><code>/(?&lt;myvara&gt;\d+)\s+(?&lt;myvarb&gt;\d+)/ </code></pre> <p>$+{myvara} is 111</p> <p>$+{myvarb} is 222</p> http://stackoverflow.com/questions/1036603/storing-business-hours-in-a-database/1036814#1036814 0 Answer by Einstein for Storing Business Hours in a Database Einstein 2009-06-24T07:09:07Z 2009-06-24T07:09:07Z <p>Might think about factoring in holidays by including additional fields for month of year/day of month/week of month. Week of month has some minor subtlties "last" could for example be week 4 or 5 depending on the year.</p> http://stackoverflow.com/questions/1109277/importing-md5salt-passwords-to-md5/1109329#1109329 Comment by Einstein on Importing MD5+Salt Passwords to MD5. Einstein 2009-11-16T08:00:28Z 2009-11-16T08:00:28Z Using an entire salt shaker and the worlds best hash algorithm does not really buy you anything. It does not effectivly solve the weak password (offline dictionary attack) problem. It can force an attacker to devote more resources to the problem but nothing that anyone should expect would prevent a successful attack. http://stackoverflow.com/questions/1543486/does-computing-require-specific-energy Comment by Einstein on Does computing require specific energy? Einstein 2009-10-09T16:28:00Z 2009-10-09T16:28:00Z I've always wondered about this. We have successful experiments where strong magnetic fields are maintained in superconductors by electrons spinning around in a closed loop -- NO input current <b>continuously</b> for about 20 years now. If a perfect transistor was made out of entirely superconducting material would the act of switching generate any heat or otherwise lead to entropy lowering event? Does it have to? What specifically in a perfect transistor must &quot;loose energy&quot; for it to function properly? http://stackoverflow.com/questions/1513911/most-efficient-way-to-unique-random-string/1513952#1513952 Comment by Einstein on Most Efficient Way to... Unique Random String Einstein 2009-10-03T16:14:05Z 2009-10-03T16:14:05Z For a base 54 random string the table size is 459 million and all your doing is punting the same problem from one table to another unless a predictable sequence is used which is then not &quot;random&quot;. http://stackoverflow.com/questions/1485442/storing-partial-credit-card-numbers/1485450#1485450 Comment by Einstein on Storing partial credit card numbers Einstein 2009-09-29T09:38:13Z 2009-09-29T09:38:13Z I'm sure others are much more qualified to draw a complete threat tree for you. This can occurs by compromising the ecommerce server and installing necessary software. I don't disagree with your sentiment but we must all live within the context of our time. IMHO ideal solution is to replace the current 'take' model with a 'give' system where the user initiates transfer of funds (Essentially PayPal).. Rather than merchants taking funds from the customer. http://stackoverflow.com/questions/1485442/storing-partial-credit-card-numbers/1486075#1486075 Comment by Einstein on Storing partial credit card numbers Einstein 2009-09-28T17:58:13Z 2009-09-28T17:58:13Z See my response to Mitch Wheats response. Storing hashes of card data is exceedingly dangerous. http://stackoverflow.com/questions/1485442/storing-partial-credit-card-numbers/1485450#1485450 Comment by Einstein on Storing partial credit card numbers Einstein 2009-09-28T17:46:40Z 2009-09-28T17:46:40Z Subscription services where customers are billed automatically on a recurring basis. E-commerce sites which give users convinent funding options. Many respected systems (PayPal..et al) store card data. Your obviously correct however it is possible to mitigate such risks -- not storing them is NO EXCUSE to not have a secure system in the first instance. An attacker could just as easily tap the transactions and &quot;store&quot; them in their own database. http://stackoverflow.com/questions/1485442/storing-partial-credit-card-numbers/1485450#1485450 Comment by Einstein on Storing partial credit card numbers Einstein 2009-09-28T06:40:17Z 2009-09-28T06:40:17Z I disagree. There are valid reasons to store card data and just saying don't do it does not answer the specific question Joel asked. http://stackoverflow.com/questions/1485442/storing-partial-credit-card-numbers/1485450#1485450 Comment by Einstein on Storing partial credit card numbers Einstein 2009-09-28T05:23:56Z 2009-09-28T05:23:56Z 16-digit card number 111,222,333,444,555 (trillions) -- 15 digits subtracting check bit -- first two-four digits are limited to about a dozen possibilities. subtract another 2-4 digits. This leaves at most 11 to 13 digits of entropy. Which works out to less than 1 trillion checks. This is nothing for a modern computer. Use of salts does nothing. http://stackoverflow.com/questions/1485442/storing-partial-credit-card-numbers/1485450#1485450 Comment by Einstein on Storing partial credit card numbers Einstein 2009-09-28T05:07:48Z 2009-09-28T05:07:48Z I disagree on all points. Storage of card data is not illegal. Requirements for secure storage and processing are governed by the card industry. The PCI/DSS requirements are available online and apply to you whether you store the data or not!! Use of a hash algorithm alone in this case is generally exceeding dangerous given low entropy of card numbers and covering block size recovery of origional number would be quite easy to accomplish using precomputed tables and other brute force techniques. http://stackoverflow.com/questions/1406234/sql-2008-mirroring-issues Comment by Einstein on SQL 2008 Mirroring Issues Einstein 2009-09-10T16:24:19Z 2009-09-10T16:24:19Z This is a good question for <a href="http://serverfault.com" rel="nofollow">serverfault.com</a> http://stackoverflow.com/questions/1386253/how-to-recognize-malicious-source-code/1390989#1390989 Comment by Einstein on How to recognize malicious source code? Einstein 2009-09-09T18:12:34Z 2009-09-09T18:12:34Z If my intent wasn't clear I'm sorry. My response was intended to be couched in the context of discovery of malicious code and was not intended to address exploitation. http://stackoverflow.com/questions/1354451/reasons-not-to-use-mysql/1354658#1354658 Comment by Einstein on reasons NOT to use mysql Einstein 2009-08-30T19:53:19Z 2009-08-30T19:53:19Z Oracle DDL operations themselves are not embarcked in transactions. Both MySQL and Oracle systems are broken. MySQL behavior is much worse. MSSQL has it right in terms of transactional DDL. http://stackoverflow.com/questions/1041542/how-to-download-multiple-files-with-one-http-request/1041591#1041591 Comment by Einstein on How to download multiple files with one HTTP request? Einstein 2009-06-25T00:59:03Z 2009-06-25T00:59:03Z Sorry, your comment appeared only after I sent mine. Maybe its not some W3C/IETF sanctioned thing but I do remember doing this myself over a decade ago. At the time it was part of &quot;server side push&quot; http://stackoverflow.com/questions/1041542/how-to-download-multiple-files-with-one-http-request/1041591#1041591 Comment by Einstein on How to download multiple files with one HTTP request? Einstein 2009-06-25T00:35:56Z 2009-06-25T00:35:56Z Hu? How do you think file upload from the browser works? http://stackoverflow.com/questions/1005095/sql-round-function-not-working-any-ideas/1005136#1005136 Comment by Einstein on SQL Round function not working, any ideas? Einstein 2009-06-17T06:49:30Z 2009-06-17T06:49:30Z ISNULL can generate better execution plans if used in the WHERE clause. It has no tangable effect on performance of result sets.