active questions tagged theory - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T21:55:06Zhttp://stackoverflow.com/feeds/tag/theoryhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1812401/exactly-what-is-the-difference-between-a-closure-and-a-block8Exactly what is the difference between a "closure" and a "block"?cartoonfox2009-11-28T12:18:38Z2009-11-28T12:42:12Z
<p>I've found that lots of people use the words <em>closure</em> and <em>block</em> interchangeably. Most of these people can't explain what they're talking about.</p>
<p>Some Java programmers (even ones from really expensive consultancies) talk about anonymous inner classes as "blocks" and "closures" - but I know this isn't true. (You can't pass mutable variables in from the scope of the method in which they're defined...)</p>
<p>I'm looking for:</p>
<ul>
<li>a precise, computer science <strong>definition of a block</strong></li>
<li>a precise, computer science <strong>definition of a closure</strong></li>
<li>and <strong>clarification on the difference</strong> between the two.</li>
</ul>
<p>I'd really like to see links, articles or book <strong>references on these please</strong>.</p>
http://stackoverflow.com/questions/1604258/why-is-a-b-equivalent-to-a-a-b-b12Why is (a | b ) equivalent to a - (a & b) + b?CaptainAwesomePants2009-10-21T23:43:40Z2009-11-27T03:43:26Z
<p>I was looking for a way to do a BITOR() with an Oracle database and came across a suggestion to just use BITAND() instead, replacing BITOR(a,b) with a + b - BITAND(a,b).</p>
<p>I tested it by hand a few times and verified it seems to work for all binary numbers I could think of, but I can't think out quick mathematical proof of why this is correct.<br />
Could somebody enlighten me?</p>
http://stackoverflow.com/questions/1797457/how-to-write-an-enumeration-of-all-computable-functions3How to write an enumeration of all computable functions?sdcvvc2009-11-25T14:54:30Z2009-11-26T08:42:08Z
<p>Motivation: I'd like to be able to use toy functional programming in languages without first-order functions, by using natural numbers instead of functions.</p>
<p>A universal function is a function f : N -> (N -> N), equivalently f : N * N -> N that enumerates all possible computable functions. In other words, there's a number k such that f(k) is the squaring function, there's a number j such that f(j) is the n-th prime function etc.</p>
<p>To write such a function, one can take any Turing-complete language (programming language compiler, lambda calculus, Turing machines...) and enumerate all programs. I'd like to allow not only evaluation, but also operations on functions like addition, composition, currying. For example, given indices of two functions f,g I'd like to know what is the index of the function f+g, or f composed with g. This would allow "toy functional programming".</p>
<p>What is a good way to write such code library? I'm not looking for a minimalistic Turing tarpit that will struggle to compute factorial of 10, nor I don't want to write an advanced compiler. It should have some basic functions like addition and possibility to write loop, but not much more.</p>
<p>Solutions in all high-level languages are welcome. Pseudocode, Haskell and Python are preferred. You can assume arbitrary precision arithmetic. Using <code>eval</code> or similar is not allowed.</p>
<p>Clarification: Enumerated functions will consist of all <a href="http://en.wikipedia.org/wiki/Partial%5Frecursive%5Ffunction" rel="nofollow">partial recursive (computable)</a> ones - this includes functions that don't halt on some inputs. The universal function will hang in that cases; of course this is unavoidable. See also: m-recursive functions - <a href="http://en.wikipedia.org/wiki/" rel="nofollow">http://en.wikipedia.org/wiki/</a>Μ-recursive_function.</p>
http://stackoverflow.com/questions/1787498/are-there-any-good-resources-on-real-world-practical-uses-of-programming-theory5Are there any good resources on real world practical uses of programming theory?BenAlabaster2009-11-24T02:57:51Z2009-11-24T03:28:41Z
<p>Can anyone recommend any good material that seeks to provide a <em>real world perspective</em> on programming theories? I'm speaking from my perspective as a long time professional software engineer slash ex-cs student. When I say real world, I mean stuff like "Why should I use interfaces? Doesn't that go against DRY principles? It just seems like extra needless meta code." (which was the implication of another question that came up today.) It seems that the professor of this student's class hadn't given the obvious business reason for using them as "You use this so the main part of your application isn't dependent upon a specific implementation one or more of your components - for instance, a data store which may be replaced or upgraded without affecting the rest of your application or a plugin to an external device which may be replaced when a better one comes along."</p>
<p>I've noticed a tendency for students to reach key points of their CS courses and start asking questions on various Q&A sites about why they should use a certain paradigm, they understand the what and the how, but they're clueless as to why it's actually useful and go through the rest of their course thinking "okay, so what?" All too often classes are very academic and don't have any real world context. Having been there myself, I wish I'd had a resource like StackOverflow when I was at school.</p>
<p>I'm hoping that this question will provide students with a list of useful reading material that will help provide real world context to various programming paradigms and patterns they're learning in class [or otherwise] and helps them to grasp when and why certain patterns should be looked to in real world situations.</p>
http://stackoverflow.com/questions/1777461/best-case-running-time-to-solve-an-np-complete-problem4Best-case Running-time to solve an NP-Complete problem?Claudiu2009-11-22T01:28:48Z2009-11-23T17:06:29Z
<p>What is the fastest algorithm that exists up with to solve a particular NP-Complete problem? For example, a naive implementation of <a href="http://en.wikipedia.org/wiki/Travelling%5Fsalesman%5Fproblem" rel="nofollow">travelling salesman</a> is O(n!), but with dynamic programming it can be done in O(n^2 * 2^n). Is there any perhaps "easier" NP-Complete problem that has a better running time?</p>
<p>I'm curious about exact solutions, not approximations.</p>
http://stackoverflow.com/questions/1778190/serialization-to-disk-inplace-of-creating-a-simple-database-is-there-a-pattern1Serialization to Disk inplace of creating a simple database... Is there a pattern or industry name for this approach?Karl Easterly2009-11-22T08:27:11Z2009-11-22T16:20:02Z
<p>I am leading a development team of 5 or so developers and we have a need to persist a small amount of data. </p>
<p>I am thinking we do not need to employ a full DB engine and instead we can simply serialize our data to disk. We would serialize our collections of object to and from disk as needed at runtime instead of to a DB where we have to map tables to and from the objects. At most we have about 20 objects and I cannot imagine our object count would ever extend into the thousands.. </p>
<p>Part of the team wants to go the data base route as it is understood. The other part thinks serialization is OK. </p>
<p>My question is not how to do it.. but is there a keyword, or a name or something that identifies the activity of using serialization as the DB for the application as apposed to SQL or Oracle? What is a keyword so I can look up white papers or other information and can find documentation specific to that approach?</p>
<p><strong>** additional info ***</strong></p>
<p>There will be concurrency issues, but those can be mitigated via a controlled interface that would provide the synchronized access to the serialized data files. </p>
<p>Transactions, although not needed for this application, would be managed (in practice if needed) by a similar pattern as transactions employ. Start transaction would make a back up of the data files on disk, and commit would return successful if the data was written to disk without issue. </p>
<p>At most we have 20 base entities that need to be persisted and the number of objects to be stored would never be into the thousands. Nor is there a need for rapid and repeated access to the data, just occasional reads and writes (at most a couple times every several minutes).</p>
<p>I have both the concurrency and transactional needs covered if using DB or Serialization to disk. Since we do not need 'views, stored procedures, indexes, support for SQL etc... I am at a loss as to why we need a DB. </p>
<p>There is a data access layer (repository) and the application is factored quite cleanly. The serialization could easily be replaced with a DB or the other way around. </p>
<p>What I am really after is a contrast and comparison between the two approaches. I am after any real world documented user studies between the two approaches. I am just trying to find a hook into those topics so I can research the pros and cons more. </p>
http://stackoverflow.com/questions/1451543/what-does-driver-program-mean0what does driver program mean?Tom2009-09-20T17:40:19Z2009-11-20T11:20:39Z
<p>there is a quote from Algorithms for Java (sedgwick 2003) p. 135:
"we commonly use driver programs when developing or debugging adt iplementations"
what is meant by driver program?
google just gives me loads of info about programming drivers, clearly not related</p>
http://stackoverflow.com/questions/827989/does-the-security-of-skein-as-a-hash-imply-the-security-of-threefish-as-a-block-c1Does the security of Skein as a hash imply the security of Threefish as a block cipher?bdonlan2009-05-06T04:17:12Z2009-11-19T21:06:12Z
<p>The <a href="http://www.schneier.com/skein.html" rel="nofollow">Skein hash</a> proposed for SHA-3 boasts some impressive speed results, which I suspect would be applicable for the Threefish block cipher at its heart - but, if Skein is approved for SHA-3, would this imply that Threefish is considered secure as well? That is, would any vulnerability in Threefish imply a vulnerability in SHA-3? (and thus, a lack of known issues and a general trust in SHA-3 imply the same for Threefish)</p>
http://stackoverflow.com/questions/1734711/relational-databases-and-mathematics3Relational Databases and Mathematics?Steve Homer2009-11-14T16:22:08Z2009-11-16T01:28:23Z
<p>Can anyone suggest resources that take a mathematical approach to relational databases? Essentially relational algebra I'd guess.</p>
<p>I have a mathematics background and now work a great deal with databases and would like to close the gap.</p>
http://stackoverflow.com/questions/93526/what-is-a-y-combinator26What is a y-combinator?Turbulent Intellect2008-09-18T15:21:02Z2009-11-15T22:16:38Z
<p>A y-combinator is a comp-sci concept from the "functional" side of things. Most programmers don't know much at all about them, if they've even heard about them.</p>
<p>What is a y-combinator?
How do they work?
What are they good for?
Are they useful in procedural languages?</p>
http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected36Could a truly random number be generated using pings to psuedo-randomly selected IP addresses?_ande_turner_2008-09-26T01:57:39Z2009-11-15T10:24:40Z
<p>The question posed came about during a 2nd Year Comp Science lecture while discussing the impossibility of generating numbers in a deterministic computational device.</p>
<p>This was the only suggestion which didn't depend on non-commodity-class hardware.</p>
<p>Subsequently nobody would put their reputation on the line to argue definitively for or against it. </p>
<p>Anyone care to make a stand for or against. If so, how about a mention as to a possible implementation?</p>
http://stackoverflow.com/questions/1725407/designing-mvc-url-scheme-for-hierarchical-system1Designing MVC URL scheme for hierarchical systemGC2009-11-12T21:06:38Z2009-11-13T02:47:06Z
<p>So imagine I'm building a Multi User Dungeon system using a MVC web application. To describe the areas the player can explore, the system can contain a number of Maps, which will consist of Rooms and Doors - where doors connect two Rooms.
Consider the authoring part of the system. To create a Map is easy - I need URLs like:</p>
<pre>
/Author/Maps (an index of my maps)
/Author/Maps/Create (a new Map)
/Author/Maps/Detail/3 (show Map details)
/Author/Maps/Edit/3 (edit map details)
</pre>
<p>Using a Routing scheme: /Author/{controller}/{action}/{ID}</p>
<p>It's the URLs for the Rooms that I need help with. When creating a new Room, I need to know which Map I'm creating it for.</p>
<pre>
/Author/Rooms/CreateIn/[mapID] ?
</pre>
<p>And then for editing a room's details:</p>
<pre>
/Author/Rooms/Edit/[roomID]
/Author/Rooms/Detail/[roomID]
</pre>
<p>Would this routing scheme work? And should the view that lists all the Rooms for a Map be an "Index" action on the Rooms controller, with a MapID passed in, or a "Rooms" action on a Map controller?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1691557/what-are-the-overall-most-valuable-profitable-programming-expertises5What are the overall most valuable/profitable programming expertises?Cameigons2009-11-07T01:21:12Z2009-11-10T04:03:36Z
<p>Hi,</p>
<p>I would like to know if it's possible to point it out, and if so If anyone would know to summarize, considering things well beyond the basics and expectable of course, what would be nowadays the overall or statistical most highly regarded pieces of technical knowledge I better have if I wanna improve my chances of getting the highest paycheck I can get being a programmer? I'm asking either about valuable advanced knowledge with extensive applicability, but also about knowledge that the Market wants, and specific technical expertises pertaining any specific niche which are likely to yield greater financial rewards. </p>
<p>Regards,</p>
http://stackoverflow.com/questions/476959/why-cant-programs-be-proven20Why can't programs be proven?4thSpace2009-01-25T00:32:13Z2009-11-07T14:57:22Z
<p>Why can't a computer program be proven just as a mathematical statement can? A mathematical proof is built up on other proofs, which are built up from yet more proofs and on down to axioms - those truths truths we hold as self evident.</p>
<p>Computer programs don't seem to have such a structure. If you write a computer program, how is it that you can take previous proven works and use them to show the truth of your program? You can't since none exist. Further, what are the axioms of programming? The very atomic truths of the field?</p>
<p>I don't have good answers to the above. But it seems software can't be proven because it is art and not science. How do you prove a Picasso? </p>
http://stackoverflow.com/questions/1493747/bootstrapping-a-compiler-why7Bootstrapping a compiler: why?Mark Rushakoff2009-09-29T16:53:25Z2009-11-06T03:21:25Z
<p>I understand <em>how</em> a language can bootstrap itself, but I haven't been able to find much reference on <em>why</em> you should consider bootstrapping.</p>
<p>The intuitive answer is that the language you're writing offers utilities that are not found in the "base" language of the compiler, <em>and</em> the language's features are relatively well-suited for a compiler.</p>
<p>For instance, it would make sense to bootstrap a C++ compiler -- it could potentially be much easier to maintain the compiler when OOP is properly used, as opposed to using plain C.</p>
<p>On the other hand, MATLAB certainly makes matrix math a lot easier than plain C, but I can't see any apparent benefits from writing a MATLAB compiler/interpreter in MATLAB -- it seems like it would become <em>less</em> maintainable. A similar view could be applied to the R programming language. Or a pretty extreme example would be bootstrapping <a href="http://compsoc.dur.ac.uk/whitespace/" rel="nofollow">Whitespace</a>, which is written in Haskell -- definitely a massive <em>super</em>set of Whitespace.</p>
<p>Is the only reason for bootstrapping to take advantage of the new language's features? I know there's also the "because we can" reason, but that's not what I'm looking for :)</p>
http://stackoverflow.com/questions/1681285/pros-and-cons-explicitly-setting-enum-fields-values1Pros and Cons explicitly setting enum field's valuesKamarey2009-11-05T15:28:23Z2009-11-05T15:44:10Z
<p>Is it preferable to explicitly set enum's fields instead of just defining their names?
E.g. any pros and cons for Enum1 vs Enum2?</p>
<p>Enum1:</p>
<pre><code>enum SomeEnum
{
Something1 = 0,
Something2 = 1
}
</code></pre>
<p>Enum2:</p>
<pre><code>enum SomeEnum
{
Something1,
Something2
}
</code></pre>
<p>P.S. This question doesn't relates to enums that would be stored in database, which is requires to set values explicitly.</p>
<p>Edit:
Say all values are 0, 1, etc... They are not negative or something.</p>
http://stackoverflow.com/questions/1241522/general-proof-of-equivalence-of-two-fsms-in-finite-time3General proof of equivalence of two FSMs in finite time?sgibbons2009-08-06T21:15:36Z2009-10-31T11:24:56Z
<p>Does a general proof exist for the equivalence of two (deterministic) finite state machines that always takes finite time? That is, given two FSMs, can you prove that given the same inputs they will always produce the same outputs without actually needing to execute the FSMs (which could be non-terminating?). If such a proof does exist, what is the time complexity?</p>
http://stackoverflow.com/questions/1652538/what-really-is-good-enough-for-a-late-project1What really is 'good enough' for a late project?Ryan2009-10-30T21:55:00Z2009-10-30T22:02:27Z
<p>It seems like management always is saying how the project is late, then we have to figure out what is good enough to go live fast. The problem I find is that we tend to focus on the features that the client wants more than some basic features that I would think a web app should just have by it's very nature. </p>
<p>For example we spent more time talking about whether adding a noscript tag to inform users the site requires javascript should be added to the list of feature requests than the time it would have taken me to add it to the master page and then push it out.</p>
<p>Is there some good method for determining what things should be there to be good enough?
How do I know what things my app should be expected to do at bare minimum?</p>
<p>We don't even add data validation sometimes because there is no time.
It seems like there should be some basic bread and butter things in an app but so often all we care about is the things the user actually sees.</p>
<p>This is not the ideal way to make software in my opinion, but how can you know what good enough is?</p>
http://stackoverflow.com/questions/1634911/can-liftm-differ-from-lifta10Can liftM differ from liftA?Doug McClean2009-10-28T02:34:44Z2009-10-28T16:55:01Z
<p>According to <a href="http://haskell.org/sitewiki/images/8/85/TMR-Issue13.pdf" rel="nofollow">the Typeclassopedia</a> (among other sources), <code>Applicative</code> logically belongs between <code>Monad</code> and <code>Pointed</code> (and thus <code>Functor</code>) in the type class hierarchy, so we would ideally have something like this if the Haskell prelude were written today:</p>
<pre><code>class Functor f where
fmap :: (a -> b) -> f a -> f b
class Functor f => Pointed f where
pure :: a -> f a
class Pointed f => Applicative f where
(<*>) :: f (a -> b) -> f a -> f b
class Applicative m => Monad m where
-- either the traditional bind operation
(>>=) :: (m a) -> (a -> m b) -> m b
-- or the join operation, which together with fmap is enough
join :: m (m a) -> m a
-- or both with mutual default definitions
f >>= x = join ((fmap f) x)
join x = x >>= id
-- with return replaced by the inherited pure
-- ignoring fail for the purposes of discussion
</code></pre>
<p>(Where those default definitions were re-typed by me from the <a href="http://en.wikipedia.org/wiki/Monad%5F%28functional%5Fprogramming%29#fmap%5Fand%5Fjoin" rel="nofollow">explanation at Wikipedia</a>, errors being my own, but if there are errors it is at least in principle possible.)</p>
<p>As the libraries are currently defined, we have:</p>
<pre><code>liftA :: (Applicative f) => (a -> b) -> f a -> f b
liftM :: (Monad m) => (a -> b) -> m a -> m b
</code></pre>
<p>and:</p>
<pre><code>(<*>) :: (Applicative f) => f (a -> b) -> f a -> f b
ap :: (Monad m) => m (a -> b) -> m a -> m b
</code></pre>
<p>Note the similarity between these types within each pair.</p>
<p>My question is: are <code>liftM</code> (as distinct from <code>liftA</code>) and <code>ap</code> (as distinct from <code><*></code>), simply a result of the historical reality that <code>Monad</code> wasn't designed with <code>Pointed</code> and <code>Applicative</code> in mind? Or are they in some other behavioral way (potentially, for some legal <code>Monad</code> definitions) distinct from the versions that only require an <code>Applicative</code> context?</p>
<p>If they are distinct, could you provide a simple set of definitions (obeying the laws required of <code>Monad</code>, <code>Applicative</code>, <code>Pointed</code>, and <code>Functor</code> definitions described in the Typeclassopedia and elsewhere but not enforced by the type system) for which <code>liftA</code> and <code>liftM</code> behave differently?</p>
<p>Alternatively, if they are not distinct, could you prove their equivalence using those same laws as premises?</p>
http://stackoverflow.com/questions/1620087/asymptotic-notation-does-n-log-n-log-n-simplify0Asymptotic Notation - does n (log n) (log n) simplify?Steve3142009-10-25T05:33:29Z2009-10-26T09:04:42Z
<p>If I have an algorithm that takes n log n steps (e.g. heapsort), where the steps take log n time (e.g. comparison/exchange of "big" integers in the range 0 to n-1), what is the asymptotic bound for the whole process.</p>
<p>Obviously we can say "n (log n) (log n)", but I'm having a hard time trying to convince myself that I cannot simplify this to "n log n". At the same time, I'm having a hard time justifying the instinct that insists that I can.</p>
<p>Is my instinct just plain wrong on this?</p>
<p><strong>EDIT</strong></p>
<p>It seems my simple-example-to-avoid-complicating-the-issue has complicated the issue. Oh well.</p>
<p>The real reason for the question is that I often have a standard algorithm with a known complexity, but implemented using different underlying containers, so that the individual steps are O(log n) rather than O(1). For example, Hopcrofts automaton minimisation algorithm is O(n log n) - but if you start using binary tree containers for the states, transitions and intermediate results, the steps themselves become O(log n) - the O(n log n) is no longer valid because the assumption of O(1) accesses is invalid.</p>
<p>Still, people will claim that there are n states and m transitions, but n and m tend to be linearly related for automata, assuming that the number of transition annotations is constant and that the automata are more-or-less deterministic.</p>
<p>I haven't worried too much about this in the past - the cases I work with aren't very big. But, well, I'm doing a major refactoring of my automata code, and I thought I might as well do the math properly for some key algorithms as I go.</p>
<p><strong>EDIT</strong></p>
<p>I'm also increasingly convinced that the "n (log n) (log n)" is wrong.</p>
<p>If a is O(b log b) where b is O(log c), what is a in terms of c?</p>
http://stackoverflow.com/questions/274054/what-are-your-favorite-metaphors-for-technical-concepts19What are your favorite metaphors for technical concepts?wonderchook2008-11-08T00:00:37Z2009-10-25T14:05:32Z
<p>At the risk of getting downvoted I'm going to ask this anyway. </p>
<p>What are your favorite metaphors for technical concepts?</p>
<p>My most recent one I used was when a customer didn't understand why we would have to charge them for switching out one mapping api for another. </p>
<p>My metaphor was: If you had a heat pump at your house and then bought a gas furnace you couldn't just plug the electric wires in the furnace and expect it to heat your house. </p>
http://stackoverflow.com/questions/1617901/what-does-stereotype-mean2What does "Stereotype" mean? [closed]JMSA2009-10-24T12:33:48Z2009-10-24T13:55:04Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/829904/whats-the-difference-between-a-stereotype-and-a-class-inheritance-in-uml">What’s the difference between a stereotype and a class inheritance in UML?</a> </p>
</blockquote>
<p>What does "Stereotype" mean? Is it a concept of OOP?</p>
http://stackoverflow.com/questions/870757/should-we-care-if-a-prospective-hire-understand-big-o-notation20Should we care if a prospective hire understand Big O notation? Al Crowley2009-05-15T20:37:48Z2009-10-23T18:32:21Z
<p>A colleague of mine caused a long e-mail conversation by saying:</p>
<blockquote><p>Of the probably 30+ people I’ve given a phone interview to, not a one (including people with Masters degrees in CS!!) has been able to tell me the big O of bubble sort- or any other sort for that matter, and maybe 2-3 seemed to have an clue what I was talking about.
</p><p>
Am I expecting too much of people with CS degrees? Maybe. But people with undergrad and Masters degrees in CS?
</p>
<p>
The last few people with CS degree’s couldn’t even describe how bubble sort worked.
</p>
</blockquote>
<p>The potential developer would be working on web based line of business apps, not scientific or game programming. Some people in the conversation feel that computational theory isn't so important when using modern framworks, i.e. no one should be writing a sort after CS 101. </p>
<p>Personally, I think that the kind of person who would care about the underlying theory is going to be a better programmer. </p>
<p>What do you think?</p>
http://stackoverflow.com/questions/7284/what-is-turing-complete14What is Turing Complete?david2008-08-10T18:41:02Z2009-10-22T23:45:42Z
<p>What does the expression Turing Complete means? Can you give a simple explanation, without going into too much theoretical details?</p>
http://stackoverflow.com/questions/107165/big-o-for-eight-year-olds73Big-O for Eight Year Olds?Jason Baker2008-09-20T04:59:59Z2009-10-22T19:47:10Z
<p>I'm asking more about what this means to my code. I understand the concepts mathematically, I just have a hard time wrapping my head around what they mean conceptually. For example, if one were to perform an O(1) operation on a data structure, I understand that the amount of operations it has to perform won't grow because there are more items. And an O(n) operation would mean that you would perform a set of operations on each element. Could somebody fill in the blanks here?</p>
<ul>
<li>Like what exactly would an O(n^2) operation do?</li>
<li>And what the heck does it mean if an operation is O(n log(n))?</li>
<li>And does somebody have to smoke crack to write an O(x!)?</li>
</ul>
http://stackoverflow.com/questions/1606827/why-is-amount-of-bits-always-a-power-of-two27Why is amount of bits always(?) a power of two?Joonas Pulakka2009-10-22T12:21:19Z2009-10-22T19:23:03Z
<p>We have 8-bit, 16-bit, 32-bit and 64-bit hardware architectures and operating systems. But not, say, 42-bit or 69-bit ones.</p>
<p>Why? Is it something fundamental that makes 2^n bits a better choice, or is just about compatibility with existing systems? (It's obviously convenient that a 64-bit register can hold two 32-bit pointers, or that a 32-bit data unit can hold 4 bytes.)</p>
http://stackoverflow.com/questions/1587049/optimization-what-is-it-how-is-it-done8Optimization! - What is it? How is it done?CptAJ2009-10-19T05:04:25Z2009-10-21T15:42:44Z
<p>Its common to hear about "highly optimized code" or some developer needing to optimize theirs and whatnot. However, as a self-taught, new programmer I've never really understood what exactly do people mean when talking about such things.</p>
<p>Care to explain the general idea of it? Also, recommend some reading materials and really whatever you feel like saying on the matter. Feel free to rant and preach.</p>
http://stackoverflow.com/questions/1584267/understanding-word-alignment4Understanding word alignmentChrisDiRulli2009-10-18T07:38:04Z2009-10-19T05:07:53Z
<p>I understand what it means to access memory such that it is aligned but I don’t understand why this is necessary. For instance, why can I access a single byte from an address 0x…1 but I cannot access a half word (two bytes) from the same address.</p>
<p>Again, I understand that if you have an address A and an object of size s that the access is aligned if A mod s = 0. But I just don’t understand why this is important at the hardware level.</p>
<p>Thanks! </p>
http://stackoverflow.com/questions/1513299/how-to-handle-theming-of-modules-in-a-web-application2How to handle theming of modules in a web application?Kaitsuli2009-10-03T09:20:25Z2009-10-16T09:02:47Z
<p>Hi,</p>
<p>I have made a CMS that allows users to choose which modules to show where on the website. I also have templates/themes that define how the site look. The problem I have goes like this:</p>
<p>Suppose I have placed a voting booth module on the site. When I press "View results", it will display the results with graphical bars like on this demo page: <a href="http://osc.template-help.com/joomla%5F25754/index.php?option=com%5Fpoll&id=14%3Ajoomla-is-used-for" rel="nofollow">http://osc.template-help.com/joomla%5F25754/index.php?option=com%5Fpoll&id=14%3Ajoomla-is-used-for</a></p>
<p>My first question is: isn't theming of that graphical bar the responsibility of themes/templates rather than the modules'? If the modules can decide what to show, they might show some graphics that don't fit the templates/themes.</p>
<p>How should I handle all this? I'm not really sure how to explain the problem any better, but the issue is that in the current version some modules will display graphics/appearance that looks bad against some templates. All gfx and stuff like that should be the responsibility of the template system, right? But how would I achieve that... how would modules and templates work together to construct something like that or do you have other ideas?</p>
http://stackoverflow.com/questions/1523143/coinduction-clear-concise-description1Coinduction - clear, concise descriptionPaul Nathan2009-10-06T01:05:05Z2009-10-16T05:53:16Z
<p>Hi,</p>
<p>I am studying coinduction(<em>not</em> induction) as part of a class on static analysis. Rummaging around the internet, I am simply not finding clear, concise description of:</p>
<ul>
<li>What coinduction is</li>
<li>How coinduction actually proves something(it seems that coinduction is like waving a magic hand in the treatments I've read)</li>
<li>What propositions require coinductive proof</li>
<li>How to operate a coinductive proof</li>
</ul>