User Karl - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T05:46:02Zhttp://stackoverflow.com/feeds/user/36093http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1884394/plot-graphs-in-matlab/1884452#18844521Answer by Karl for Plot graphs in MATLABKarl2009-12-10T22:10:02Z2009-12-10T22:10:02Z<p>Plotting is straightforward:</p>
<pre><code>plot(xvec,yvec)
</code></pre>
<p>The real problem you have is trying to read the values into the program at all. Check out the csvreader functions or file reading in the help documentation. csvread() help docs looks like it requires a real comma separated values file, but the help dox link to textscan() which looks better:</p>
<p><a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/textscan.html" rel="nofollow">http://www.mathworks.com/access/helpdesk/help/techdoc/ref/textscan.html</a></p>
http://stackoverflow.com/questions/350308/how-to-know-if-a-page-is-currently-being-read-by-the-user-with-javascript7How to know if a page is currently being read by the user with Javascript?Karl2008-12-08T17:58:17Z2009-12-04T00:52:41Z
<p>I'm making a webpage with dynamic content that enters the view with AJAX polling. The page JS occasionally downloads updated information and renders it on the page while the user is reading other information. This sort of thing is costly to bandwidth and processing time. I would like to have the polling pause when the page is not being viewed.</p>
<p>I've noticed most of the webpages I have open spend the majority of their time minimized or in a nonviewed tab. I'd like to be able to pause the scripts until the page is actually being viewed.</p>
<p>I have no idea how to do it, and it seems to be trying to break out of the sandbox of the html DOM and reach into the user's system. It may be impossible, if the JS engine has no knowledge of its rendering environment. I've never even seen a different site do this (not that the user is intended to see it...)</p>
<p>So it makes for an interesting question for discussion, I think. How would you write a web app that is CPU heavy to pause when not being used? Giving the user a pause button is not reliable, I'd like it to be automatic.</p>
http://stackoverflow.com/questions/1832853/is-it-possible-to-create-an-uber-jar-containing-the-project-classes-and-the-pro/1834819#18348190Answer by Karl for Is it possible to create an "uber" jar containing the project classes and the project dependencies as jars with a custom manifest file ?Karl2009-12-02T18:20:36Z2009-12-02T18:20:36Z<p>I've used FatJar for this in the past. <a href="http://fjep.sourceforge.net/" rel="nofollow">http://fjep.sourceforge.net/</a></p>
<p>I had created a relatively simple application, the client was going to want to double click on an executable and have it just work. Installers or dependencies are out of the question. Fatjar bundled up the project libraries and referenced files from Eclipse into a several megabyte executable jar for me. Flawless.</p>
http://stackoverflow.com/questions/1781636/pure-c-open-source-pcm-to-mp3-convertor/1781669#17816690Answer by Karl for Pure C# open source PCM to Mp3 convertor?Karl2009-11-23T07:51:18Z2009-11-23T07:51:18Z<p>mp3 is not a free codec. Try looking for Ogg instead, youve got better chances of finding an open source one there.</p>
<p>Also codec translations are rarely in managed code, because they need high efficiency, as in, it is a CPU intensive task , so going to a native dll would be a lot faster. (for varying levels of a lot). If you found what you are looking for it would be slow and probably violating the fraunhofer copyright. </p>
<p>Two seconds at google shows a c# example to use a native dll mp3 encoder:
<a href="http://www.codeproject.com/KB/audio-video/MP3Compressor.aspx" rel="nofollow">http://www.codeproject.com/KB/audio-video/MP3Compressor.aspx</a></p>
<p>Three seconds at google did not yeild any ogg encoders. These things are rare in managed code.</p>
http://stackoverflow.com/questions/1773950/is-there-a-dictionary-like-collection-that-can-use-a-property-of-its-value-as-the/1773957#17739572Answer by Karl for Is there a dictionary like collection that can use a property of its value as the key?Karl2009-11-20T23:59:12Z2009-11-20T23:59:12Z<p>Use a normal one, and when you set the key value pair, specify the property of the value you are interested in.</p>
<p>That was too easy, I must be misunderstanding your request. </p>
<p>Maybe you wanted to use an arbitrary property later rather than at input time. In that case, I think you would have to use multiple dictionary objects (perhaps tied together in a helper class).</p>
http://stackoverflow.com/questions/1767491/getting-user-specified-javascript-executed-for-all-pages/1767505#17675052Answer by Karl for Getting user specified javascript executed for all pagesKarl2009-11-20T00:06:51Z2009-11-20T00:06:51Z<p>The user can do it with a firefox plugin, called greasemonkey. The server cant do that.</p>
http://stackoverflow.com/questions/1655669/asp-mvc-storing-page-states-for-later-restoring/1655684#16556840Answer by Karl for ASP MVC storing page states for later restoringKarl2009-10-31T21:28:39Z2009-10-31T21:28:39Z<p>Storing Session State is the right key word.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms972429.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms972429.aspx</a></p>
<p><a href="http://www.devarticles.com/c/a/ASP/Maintaining-Session-State-With-ASP/" rel="nofollow">http://www.devarticles.com/c/a/ASP/Maintaining-Session-State-With-ASP/</a></p>
<p>You need to simply grab the session state variable and store it somehow, then retreive it somehow. That might be a lot of work, and there might be a built in way to make it happen since you have an MS SQL Server right there. But I dont know about hooking those things up, so I'd write the session object to an objectstream hooked into the database. You can query for it later.</p>
<p>EDIT:
On the other hand, since you said you don't need it to be restored between visits, maybe you just want to make the lease duration of this one a lot longer than it is. Sounds like they are timing out? Tell it to hang onto connections for a few more hours. Unless they close the page, theyll get a new logon at the front if the browser deleted cookies.</p>
http://stackoverflow.com/questions/1651166/simple-database-handling/1651185#1651185-1Answer by Karl for Simple Database HandlingKarl2009-10-30T17:21:01Z2009-10-30T17:21:01Z<p>If the hosting company does not allow mysql, why would they allow anything ?</p>
<p>I like SQLite, it is a single file dll that creates and manages a database saved to a single file.</p>
<p>Also you might not need a db at all but rewriting the code to not use one will be tricky. </p>
http://stackoverflow.com/questions/1648670/feasibility-of-beating-the-turing-test-with-modern-software0Feasibility of beating the Turing Test with modern software?Karl2009-10-30T08:49:57Z2009-10-30T13:05:57Z
<p>I ask this academically, I want to ask aloud a very important question and have the community try to answer it. Can we build a system that generates a scene to play out along a live anonymous group video chatroom that can read the text typed at it and respond with a chatbot?</p>
<p>Live Internet video is often blurry and has low resolution. One cannot make out many details in the scene of the distant party. Scenes can be rendered with modern software tools that look very real when not moving. Making them move realistically is a large piece of simulation software. </p>
<p>Faces can be rendered at 24 frames per second by a cluster of 24 systems capable of 1 frame per second. The video would then have a 1 second lag from the point where the decision was made as to which facial expression to generate. These facial expressions and their generation is a key problem. The skin realism requirement is a solved problem by the graphics community.</p>
<p>Facial expressions have been categorized by several researchers. They also can be rendered, this has been shown in modern computer graphics literature. We can do them if we can know which ones are appropriate for a given situation.</p>
<p>Chatbots have been in use for decades. There exist now quite 'smart' chatting programs that will read what it is asked and reply in a sensible way. They have always done this with text, but text-reader software can speak out in a human-ish voice, and speech recognition software is getting better every year.</p>
<p>What I propose is the fact that it should be quite rudimentary to connect all of these disparate parts of software development and create some truly amazing turing-test beater.</p>
<p>This program could enter a virtual space and display a realistic environment as if on a webcam like the other participants. It can watch their facial expressions and it can listen to their speech and it can read their text. It could then create a response and either type or say it back to the group. The choosing of what to respond with is a difficult problem that not even most humans have mastered. We can get it close with a lot of work.</p>
<p>The Turing Test is about proving that a communicator is a human, but 'proof' only in the sense that it is good enough to fool the human judges. If the human judges are simply everyone, they will not likely apply a strict formal procedure. Guessing or falling for a trick is good enough.</p>
<p>Do you think we can do this?</p>
<p>Is this plan flawed? Are there moral implications to tricking the average viewer in this way? Can we make millions of dollars by generating personal intelligent assistants?</p>
http://stackoverflow.com/questions/1395191/how-to-split-a-data-frame-by-rows-and-then-process-the-blocks/1395792#13957922Answer by Karl for How to split a data frame by rows, and then process the blocks?Karl2009-09-08T19:11:42Z2009-09-08T19:11:42Z<p>Here's what I would do, although it looks like you guys have it handled by library functions.</p>
<pre><code>for(i in 1:length(unique(data$site))){
constrainedData = data[data$site==data$site[i]];
doSomething(constrainedData);
}
</code></pre>
<p>This kind of code is more direct and might be less efficient, but I prefer to be able to read what it is doing than learn some new library function for the same thing. makes this feel more flexible too, but in all honesty this is just the way I figured it out as a novice. </p>
http://stackoverflow.com/questions/1371189/what-does-firebug-xml-cannot-be-the-whole-program-error-message-mean/1371450#1371450-2Answer by Karl for What does Firebug "XML cannot be the whole program" error message mean?Karl2009-09-03T04:33:13Z2009-09-03T04:33:13Z<p>Why don't you ask the people who wrote it?</p>
<p>Here's the Firebug documentation.</p>
<p><a href="http://getfirebug.com/docs.html" rel="nofollow">http://getfirebug.com/docs.html</a></p>
http://stackoverflow.com/questions/1358238/finding-a-curve-to-match-data/1358423#13584231Answer by Karl for Finding a curve to match dataKarl2009-08-31T17:21:17Z2009-08-31T17:21:17Z<p>In R, this is quite easy.</p>
<p>The built in method is called optim(). It takes as arguments a starting vector of potential parameters, then a function. You have to go build your own error function, but that's really simple.</p>
<p>Then you call it like out = optim( 1 , err_fn)</p>
<p>where err_fn is</p>
<pre><code>err_fn = function(A) {
diff = 0;
for(i in 1:data_length){
x = eckses[i];
y = data[i];
model_y = A*x;
diff = diff + ( y - model_y )^2
}
return(diff);
}
</code></pre>
<p>This just assumes you have a vector of x and y values in eckses and data. Change the model_y line as you see fit, even add more parameters.</p>
<p>It works on nonlinear just fine, I use it for four dimensional e^x curves and it is very fast. The output data includes the error value at the end of the fitting, which is a measure of how well it fits, given as a sum of squared differences (in my err_fn).</p>
<p>EDIT:
If you NEED to take in the model as a string, you can have your user interface construct this whole model fitting process as an R script and load it in to run. R can take text from STDIN or from a file, so it shouldn't be too hard to craft this function's string equivalent, and have it run optim automatically. </p>
http://stackoverflow.com/questions/1310661/for-what-to-use-vi/1310743#13107431Answer by Karl for For what to use VI?Karl2009-08-21T08:38:23Z2009-08-21T08:38:23Z<p>I frequently work on a remote system, programming for a cluster, or editing config files on a headless box. All of these could be done with a file transfer, a regular IDE, and another file transfer, but it is so much faster to just use VIM through SSH.</p>
http://stackoverflow.com/questions/1288609/which-language-to-use-for-very-large-data-set-and-lot-of-computation-involved/1292473#12924732Answer by Karl for which language to use for very large data set and lot of computation involvedKarl2009-08-18T08:10:12Z2009-08-18T08:10:12Z<p>I hate to do this, but I would reccomend simply C. What you need is actually to figure out your problem in the language of math, then implement it into C. The ways of storing a graph in memory is a large research area. You could use an adjacency matrix if the graph is dense (highly connected), or an adjacency list if it is not. Each of the subtree searches will be some fancy code and it might be a hard problem.</p>
<p>As others have said, SQL can do it, and the code has even been posted. If you need help putting the data from a text file into a SQL database, that's a different question. Look up bulk data inserts. </p>
<p>The problem with SQL is that even though it is a wonderfully succinct language, it is parsed by the database engine and the underlying code might not be the best method. For most data access routines, the SQL database engine will produce some amazing code efficiencies, but for graphs and very large computations like this, I would not trust it. That's why you go to C. Some lower level language that makes you do it yourself will be the most efficient.</p>
<p>I assume you will need efficient code due to the bulk of the data.</p>
<p>All of this assumes the dataset fits into memory. If your graph is larger than your workstation's ram, (get one with 24GB if you can), then you should find a way to partition the data such that it does fit. </p>
http://stackoverflow.com/questions/1224796/what-could-cause-the-same-browser-on-different-pcs-to-render-the-same-html-differ/1224823#12248233Answer by Karl for What could cause the same browser on different PCs to render the same HTML differently?Karl2009-08-03T21:55:07Z2009-08-03T21:55:07Z<p>I know my FF3.0 makes everything look different than other people's because I have it set in Preferences to use a minimum font size of 16. I dont get fine print, I get a pile of legible writing. </p>
<p>Also, being on a Mac, the default fonts are sans serif, whereas on windows everything is serif, which also can change the font widths and heights even further. </p>
<p>If anything on your page is specified with "em" or "ex" units, they are dependent on font size. </p>
http://stackoverflow.com/questions/1223712/regex-for-unclosed-html-tags/1223776#12237762Answer by Karl for Regex for unclosed HTML tagsKarl2009-08-03T18:08:08Z2009-08-03T18:08:08Z<p>Yes it requires recursive processing, and potentially quite deep (or a fancy loop of course), it is not going to be done with a regex. You could make a regex that handled a few levels deep, but not one that will work on just any html file. This is because the parser would have to remember what tags are open at any given point in the stream, and regex arent good at that.</p>
<p>Use a SAX parser with some counters, or use a stack with pop off/push on to keep your state. Think about how to code this game to see what I mean about html tag depth. <a href="http://en.wikipedia.org/wiki/Tower_of_Hanoi" rel="nofollow">http://en.wikipedia.org/wiki/Tower_of_Hanoi</a></p>
http://stackoverflow.com/questions/1080909/when-to-mix-languages/1080959#10809594Answer by Karl for When to mix languages?Karl2009-07-03T21:50:04Z2009-07-03T21:50:04Z<p>I know in your question you sort of ruled this out, but different languages are used for different domains.</p>
<p>Right now I am working on a data visualizer, the data is in a database so of course there is some SQL, but that hardly counts because it's small and required frequently. The data is turned into a series of graphs, I'm using R, which is like MATLAB but open source. It is a unique statistical language with some advanced plotting features. </p>
<p>A data visualizer isn't just a graph generator, so there needs to be a way to browse and navigate this pile of image files. We opted to use html with embedded javascript to build an offline "application" that can be easily distributed. It's offline in the sense that it is self contained, that html is carefully generated and the js inside it is carefully crafted to allow the user to browse thousands of images sorting or filtering by a number of criteria.</p>
<p>How do you carefully craft javascript and html based on a database structure that changes as the rest of my team makes progress? They are made by a perl program (single pass script really) that reads into the db for some structure and key information, and then outputs over 300 kilobytes of html/js. It's not entirely trivial html either, imagemaps that are carefully aligned with the R plots and some onclick() javascript allow the user to actually interact with a plain image plot so this whole thing feels like a real data browser/visualizer application.</p>
<p>That's four 'languages', five if you count SQL, just to make a single end product.</p>
<p>I dont think doing this in a single language would be a good choice, because we are exploiting the capabilities of a real web browser to give us a free GUI and frontend.</p>
http://stackoverflow.com/questions/531259/three-dimensional-matrices-practical-usage/1080384#10803840Answer by Karl for Three dimensional matrices: practical usageKarl2009-07-03T18:19:44Z2009-07-03T18:19:44Z<p>I've got four drop-down menus on my webpage, the user selects something from each one, and this indexes into a four dimensional matrix and retrieves the desired answer.</p>
<p>It's just like an array of arrays... actually that's how javascript is handling my situation.</p>
http://stackoverflow.com/questions/1022738/i-need-a-good-programming-project/1022742#10227422Answer by Karl for I need a good programming projectKarl2009-06-20T22:52:01Z2009-06-20T22:53:07Z<p>Ask your professor. They exist to teach you. They would love to offload some busywork. Welcome to graduate school, you're about to be the department's favorite undergrad.</p>
http://stackoverflow.com/questions/971548/algorithm-to-check-if-a-space-is-convex/971567#9715674Answer by Karl for algorithm to check if a space is convexKarl2009-06-09T17:54:22Z2009-06-09T17:54:22Z<p>Use more words.</p>
<p>We can;t know what exactly you are asking. We can only guess.</p>
<p>I don't think spaces could be convex or concave in general... maybe you mean volume or area? In any case I dont think you are going to beat polynomial time, given the complexity of the surface is going to be polynomial in nature.</p>
http://stackoverflow.com/questions/945641/why-is-this-crc32-implementation-in-c-so-slow/945822#9458222Answer by Karl for Why is this CRC32 implementation in C# so slow?Karl2009-06-03T16:51:32Z2009-06-03T16:51:32Z<p>You are comparing your code to built in functions and asking why they are faster. What you need to do is find the source for the built in functions. How do they work? See what's different.</p>
<p>Betcha the built in functions call out to a native library and cheat by not having to run inside the managed memory framework. </p>
http://stackoverflow.com/questions/921588/is-there-an-effient-way-of-determining-whether-a-leaf-node-is-reachable-from-anot/921679#9216792Answer by Karl for Is there an effient way of determining whether a leaf node is reachable from another arbitrary node in a Directed Acyclic Graph?Karl2009-05-28T15:59:50Z2009-05-28T17:10:44Z<p>There are a few methods that each may be faster depending on your structure, but in general what youre going to want is a traversal.</p>
<p>A depth first search, goes through each possible route, keeping track of nodes that have already been visited. It's a recursive function, because at each node you have to branch and try each child node of it. There's no faster method if you dont know which way to look for the object you just have to try each way! You definitely need to keep track of where you have already been because it would be wasteful otherwise. It should require on the order of the number of nodes to do a full traversal. </p>
<p>A breadth first search is similar but visits each child of the node before "moving on" and as such builds up layers of distance from the chosen root. This can be faster if the destination is expected to be close to the root node. It would be slower if it is expected to be all the way down a path, because it forces you to traverse every possible edge.</p>
<p>Youre right about maybe keeping a list of known root nodes, the tradeoff there is that you basically have to do the search whenever you alter the graph. If you are altering the graph rarely this is acceptable, but if you alter the graph more frequently than you need to generate this information, then of course it is too costly. </p>
<p>EDIT: Info Update.
It sounds like we are actually looking for a path between two arbitrary nodes, the root/leaf semantic keeps getting switched. The DepthFirstSearch (DFS) starts at one node, and then for each unvisited child, recurse. Break if you find the target node. Due to the way recursion evaluates, this will traverse all the way down the 'left' path, then enumerate nodes at this distance before ever getting to the 'right' path. This is time costly and inefficient if the target node is potentially the first child on the right. BreadthFirst walks in steps, covering all children before moving forward. Because your graph is bottom heavy like a tree, both will be approximately the same execution time.</p>
<p>When the graph is bottom heavy you might be interested in a reverse traversal. Start at the target node and walk upwards, because there are relatively fewer nodes in this direction. So long as the nodes in general have more parents than children, this direction will be much faster. You can also combine the approaches, stepping one up and one down , then comparing lists of nodes, and meeting somewhere in the middle. (this combination might seem the fastest if you ignore that twice as much work is done at each step).</p>
<p>However, since you said that your graph is stored as a list of lists of children, you have no real way of traversing the graph backwards. A node does not know what its parents are. This is a problem. To fix it you have to get a node to know what its parents are by adding that data on graph update, or by creating a duplicate of the whole structure (which you have said is too large). It will need the whole structure to be rewritten, which sounds probably out of the question due to it being a large database at this point.
There's a lot of work to do.
<a href="http://en.wikipedia.org/wiki/Graph_" rel="nofollow">http://en.wikipedia.org/wiki/Graph_</a>(data_structure)</p>
http://stackoverflow.com/questions/916663/would-it-be-possible-to-write-a-3d-game-as-large-as-world-of-warcraft-in-pure-pyt/916701#9167015Answer by Karl for Would it be possible to write a 3D game as large as World of Warcraft in pure Python?Karl2009-05-27T16:21:14Z2009-05-27T16:21:14Z<p>Technically, anything is possible in any Turing Complete programming language.</p>
<p>Practically though, you will run into trouble making the networking stack out of a high level language, because the server will have to be VERY fast to handle so many players. </p>
<p>The gaming side of things on the client, there should be no problem, because there is nothing too complicated about GUIs or quests or keyboard input and what have you. </p>
<p>The problems will be in whatever is computationally intensive up on the server. Anything that happens in human-time like logging on will probably be just fine, but if somemthing needs to be instantaneous over ten thousand users, you might want to go for an external library done up in C. </p>
<p>Now some Python guru is going to come out of the woodwork and rip my head off because, as I said at the top, technically, anything can be done with enough effort.</p>
http://stackoverflow.com/questions/870097/how-do-i-fix-this-mysql-innodb-deadlocking-issue-in-a-non-blocking-environment/870220#8702200Answer by Karl for How do I fix this MySQL/Innodb Deadlocking issue in a non-blocking environment?Karl2009-05-15T18:42:26Z2009-05-15T18:42:26Z<p>You need these requests to happen one at a time, so maybe stop using that non-blocking driver. Or implement your own blocking mechanism. Wait for one to finish before moving on to the next one. </p>
<p>You havent said that this is unreasonable, or that you for some reason need these things to move along so quickly. </p>
http://stackoverflow.com/questions/831807/eclipse-limit-task-tags-to-current-project/831836#8318361Answer by Karl for Eclipse: Limit task tags to current projectKarl2009-05-06T21:23:18Z2009-05-06T21:23:18Z<p>Close projects that you aren't working on. Tasks show for any part of the workspace, so remove projects that you arent working on by doing a close operation. </p>
http://stackoverflow.com/questions/808499/sqlite-extension-name/808535#8085351Answer by Karl for SQlite extension nameKarl2009-04-30T19:02:41Z2009-04-30T19:02:41Z<p>In distributable software, I dont want my customers mucking about in the database by themselves. The program reads and writes it all by itself. The only reason for a user to touch the DB file is to take a backup copy. Therefore I have named it whatever_records.db</p>
<p>The simple .db extension tells the user that it is a binary data file and that's all they have to know. Calling it .sqlite invites the interested user to open it up and mess something up!</p>
<p>Totally depends on your usage scenario I suppose.</p>
http://stackoverflow.com/questions/804179/what-computer-game-if-any-has-made-you-want-to-get-into-games-programming/804197#8041972Answer by Karl for What computer game if any has made you want to get into games programming?Karl2009-04-29T20:49:08Z2009-04-29T20:49:08Z<p>Logo on the Apple ][ boxes in 5th grade. Creating 'fractals' with a repeat statement!</p>
http://stackoverflow.com/questions/462297/how-to-use-classt-in-java3How to use Class<T> in Java?Karl2009-01-20T17:38:46Z2009-04-29T19:12:30Z
<p>There's a good discussion of Generics and what they really do behind the scenes over at <a href="http://stackoverflow.com/questions/31693/differences-in-generics">http://stackoverflow.com/questions/31693/differences-in-generics</a> so we all know that Vector < int[]> is a vector of integer arrays, and HashTable< String, Person> is a table of whose keys are strings and values Persons. </p>
<p>What stumps me is the usage of Class<>. The java class Class is supposed to also take a template name, (or so I'm being told by the yellow underline in eclipse). I don't understand what I should put in there. The whole point of the Class object is when you don't fully have the information about an object, for reflection and such. Why does it make me specify which class the Class object will hold? I clearly don't know, or I wouldnt be using the Class object, I would use the specific one.</p>
http://stackoverflow.com/questions/701030/whats-the-significance-of-oct-12-1999/714129#7141290Answer by Karl for What's the significance of Oct 12 1999?Karl2009-04-03T14:21:06Z2009-04-03T14:21:06Z<p>It's 10/12/99 in America and 12/10/99 in Europe, making for a nice confusing date. No one knows if it is in December!</p>
http://stackoverflow.com/questions/697918/what-does-o1-access-time-mean/697935#69793524Answer by Karl for What does "O(1) access time" mean?Karl2009-03-30T16:25:42Z2009-03-30T17:18:28Z<p>You're going to want to read up on Order of complexity.</p>
<p><a href="http://en.wikipedia.org/wiki/Big_O_notation" rel="nofollow">http://en.wikipedia.org/wiki/Big_O_notation</a></p>
<p>In short, O(1) means that it takes a constant time, like 14 nanoseconds, or three minutes no matter the amount of data in the set.</p>
<p>O(n) means it takes am amount of time linear with the size of the set, so a set twice the size will take twice the time. You probably don't want to put a million objects into one of these.</p>
http://stackoverflow.com/questions/350308/how-to-know-if-a-page-is-currently-being-read-by-the-user-with-javascript/1844169#1844169Comment by Karl on How to know if a page is currently being read by the user with Javascript?Karl2009-12-04T23:16:31Z2009-12-04T23:16:31ZI linked to it from a similar thread yesterday and it got some hits and maybe an upvote, which did put it back into the active questions list. Stack-O has voodoo that way. Thanks for the response anyway, it's helpful.http://stackoverflow.com/questions/1843791/how-does-gmail-detect-mouse-movementComment by Karl on how does gmail detect mouse movement?Karl2009-12-03T23:35:38Z2009-12-03T23:35:38ZA similar question: <a href="http://stackoverflow.com/questions/350308/how-to-know-if-a-page-is-currently-being-read-by-the-user-with-javascript" rel="nofollow" title="how to know if a page is currently being read by the user with javascript">stackoverflow.com/questions/350308/…</a>http://stackoverflow.com/questions/1832853/is-it-possible-to-create-an-uber-jar-containing-the-project-classes-and-the-pro/1834819#1834819Comment by Karl on Is it possible to create an "uber" jar containing the project classes and the project dependencies as jars with a custom manifest file ?Karl2009-12-02T18:52:33Z2009-12-02T18:52:33ZYou're right, I misread that part. I guess I was thinking that it could be applied to other areas, since all IDEs are little more than wrappers of wrappers of scripts. http://stackoverflow.com/questions/1781307/website-hacking-why-it-is-always-possible-to-do/1781323#1781323Comment by Karl on Website hacking - Why it is always possible to do?Karl2009-11-27T20:45:21Z2009-11-27T20:45:21ZAll of a website is sent to the client in the form of CSS, HTML and javascript, which is the open for inspection by anyone.http://stackoverflow.com/questions/913829/is-there-any-easy-to-use-cluster-building-software/1804502#1804502Comment by Karl on is there any easy-to-use cluster building software?Karl2009-11-26T16:10:48Z2009-11-26T16:10:48ZI was going to suggest Condor as an easy way to get a cluster, but it is for high throughput computing and not really suited to high avaliability web/database server hosting.http://stackoverflow.com/questions/1795615/create-and-modify-xml-file-using-javascript-want-to-save-xml-file-on-client-side/1795631#1795631Comment by Karl on create and modify xml file using javascript (want to save xml file on client side)Karl2009-11-25T09:15:47Z2009-11-25T09:15:47ZHow much can we stuff inside a cookie?http://stackoverflow.com/questions/1792634/where-how-to-store-persistent-data-with-tomcatComment by Karl on Where/how to store persistent data with tomcat ?Karl2009-11-24T20:46:59Z2009-11-24T20:46:59ZYoull have to explain why a database is not an option, they are so basic and common that disallowing it surely means something else is going on. Maybe youre in a specially constrained environment we should know about.http://stackoverflow.com/questions/1648670/feasibility-of-beating-the-turing-test-with-modern-software/1648696#1648696Comment by Karl on Feasibility of beating the Turing Test with modern software?Karl2009-11-12T06:10:22Z2009-11-12T06:10:22ZWhat's a better term for it?http://stackoverflow.com/questions/1655357/how-do-i-say-5-seconds-from-now-in-java/1655538#1655538Comment by Karl on How do I say 5 seconds from now in Java?Karl2009-10-31T21:34:00Z2009-10-31T21:34:00Z+1, I probably would have answered this same thing.http://stackoverflow.com/questions/1655357/how-do-i-say-5-seconds-from-now-in-java/1655392#1655392Comment by Karl on How do I say 5 seconds from now in Java?Karl2009-10-31T21:33:03Z2009-10-31T21:33:03ZWow. Java can be really verbose when it is correctly written. Your variable name was only three letters long!http://stackoverflow.com/questions/1655357/how-do-i-say-5-seconds-from-now-in-java/1655450#1655450Comment by Karl on How do I say 5 seconds from now in Java?Karl2009-10-31T21:32:02Z2009-10-31T21:32:02ZDoes almost entirely deprecated mean its going to break if my clients upgrade their JVM? Holy crap... this could be really bad. Why would they kill Date?!http://stackoverflow.com/questions/1648670/feasibility-of-beating-the-turing-test-with-modern-software/1648692#1648692Comment by Karl on Feasibility of beating the Turing Test with modern software?Karl2009-10-30T09:20:49Z2009-10-30T09:20:49ZThank you Aaron, I'm just talking about fooling people so this can be a salable product for vending machines or help desks or receptionists or bank tellers.
Not trying to actually prove the turing test, I only brought it up to get everyone pointed in the right direction.http://stackoverflow.com/questions/1648670/feasibility-of-beating-the-turing-test-with-modern-software/1648693#1648693Comment by Karl on Feasibility of beating the Turing Test with modern software?Karl2009-10-30T09:19:29Z2009-10-30T09:19:29ZThe back end is hard, and infinitely deep, so I'm not worried about trying to solve it. We cannot program a soul, but if we could just trick people, or make them interact naturally with their pc... that could be a lot of fun.http://stackoverflow.com/questions/1648670/feasibility-of-beating-the-turing-test-with-modern-software/1648696#1648696Comment by Karl on Feasibility of beating the Turing Test with modern software?Karl2009-10-30T09:18:25Z2009-10-30T09:18:25ZI didn't mean to actually beat a carefully conducted study, only a social occasion.http://stackoverflow.com/questions/1582356/fastest-way-of-finding-the-middle-value-of-a-triple/1582524#1582524Comment by Karl on Fastest way of finding the middle value of a triple?Karl2009-10-17T18:36:34Z2009-10-17T18:36:34ZIt's kind of ugly, and I think the OP was looking for an elegant solution. The trick is lots of people mistake fewer characters for more elegant, when in reality, more straightforward (this answer) is more readily optimizable by the compiler/virtual machine.