User esiegel - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T01:47:57Z http://stackoverflow.com/feeds/user/28486 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1655202/dynamic-table-generation 1 Dynamic Table Generation esiegel 2009-10-31T18:33:39Z 2009-11-07T20:56:04Z <p>First let me describe my situation so that you might be able to help me better. There are two parts.</p> <p>1: I have a program that runs and analyzes a bunch of files. It generates a "report" that will later be fed into a website for DB storage and viewing. This report can contain pretty much any type of data, as the users can query pretty much anything. I left it very open ended.</p> <p>2: The website parses through this report, adds an entry for things that are common. But also creates a new table for any new data it finds. It also stores a mapping from report_id to all of these dynamically created tables. For example if in the report someone wanted to calculate Standard Deviation, and this made sense for this report, than there would be a STD table.</p> <p>Right now this site is written in PHP, and looks kind of messy. Is there a better way to do this PHP. Also, I'm considering reworking this in Rails because organization sake. Is there a better way in rails, "method_missing?".</p> <p>I am not very skilled at building websites, and amateurish at DB, so please be kind.</p> <p>Thanks Eric</p> http://stackoverflow.com/questions/1461945/audio-feature-extraction 0 Audio Feature Extraction esiegel 2009-09-22T18:53:27Z 2009-09-22T18:53:27Z <p>I'm interested in learning about, and writing a system that will extract features from audio files (mp3, wav, etc) which can later be used for whatever purpose. In the future I hope to use it to write some software for music similarity.</p> <p>Are there any libraries that exist to help? I know of libxtract, but haven't used it. </p> <p>Also, are there any low level c/c++ libraries that would be good with dealing with audio streams? I simply have no experience in this area.</p> <p>Thanks for the help,</p> <p>Eric</p> http://stackoverflow.com/questions/274191/image-library-recommendations 1 Image library recommendations esiegel 2008-11-08T01:45:33Z 2009-09-01T20:15:29Z <p>I'm looking for some image library that can work with multiple formats (jpg,gif,png), and is fast at displaying the images to the screen.</p> <p>Also, it would be nice if I could specify only part of the image to render to the screen.</p> <p>In the end I want to have lots of images on the screen that I can pan and zoom about.</p> <p>This is for a personal project on my ppc powerbook, and I'd prefer if the library be in c++.</p> http://stackoverflow.com/questions/1339095/books-about-graph-databases 0 Books about Graph Databases esiegel 2009-08-27T05:57:50Z 2009-08-27T09:50:49Z <p>I was hoping I could get some recommendations or pointers to some books that could help me understand the internals about graph databases.</p> <p>When I say internals, I am interested mainly in Why graph databases are important, specifically what mathematical operations it excels at. Also, I would like to understand it's implementation, at least a high level perspective.</p> <p>Thanks Eric </p> http://stackoverflow.com/questions/922441/improve-bufferedreader-speed 2 Improve BufferedReader Speed esiegel 2009-05-28T18:22:55Z 2009-05-28T22:34:44Z <p>I am crunching through many gigabytes of text data and I was wondering if there is a way to improve performance. For example when going through 10 gigabytes of data and not processing it at all, just iterating line by line, it takes about 3 minutes.</p> <p>Basically I have a dataIterator wrapper that contains a BufferedReader. I continuously call this iterator, which returns the next line.</p> <p>Is the problem the number of strings being created? Or perhaps the number of function calls. I don't really know how to profile this application because it get compiled as a jar and used as a STAF service.</p> <p>Any and all ideas appreciated?</p> http://stackoverflow.com/questions/907665/objective-c-memory-management-confusion 1 Objective C Memory Management Confusion esiegel 2009-05-25T18:32:58Z 2009-05-25T19:43:19Z <p>I was reading the apple documentation for <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmPractical.html#//apple%5Fref/doc/uid/TP40004447-SW1" rel="nofollow">memory management</a>, and came across something that I just don't understand. Basically, I don't understand why one does not need need to retain an instance variable through the "getter" method. I wrote this little program to see what would happen. I thought there would be a crash, but I am obviously missing something.</p> <pre><code>// main.m // Test // #import &lt;Foundation/Foundation.h&gt; #import "Test.h" int main(int argc, char *argv[]) { NSAutoreleasePool *p = [[NSAutoreleasePool alloc] init]; //Initialize the test object Test *t = [[Test alloc] init]; //Set the value to 5 [t setMyNum:[NSNumber numberWithInt:5]]; //Save a temp number that points to the original number NSNumber *tempNum = [t myNum]; //release old number and retain new [t setMyNum:[NSNumber numberWithInt:7]]; //Shouldn't this crash because tempNum is pointing to a deallocated NSNumber??? NSLog(@"the number is %@",tempNum); [p drain]; return 0; } </code></pre> <p>Doesn't tempNum point to a deallocated object??</p> <p>All help is appreciated.</p> EDIT <p>This is the code in the getter and setter methods</p> <pre><code>#import "Test.h" @implementation Test - (void)setMyNum:(NSNumber *)newNum { [newNum retain]; [myNum release]; myNum = newNum; } -(NSNumber *)myNum { return myNum; } @end </code></pre> <p>As you can see I am calling release on the old object.</p> EDIT <p>It was suggested, and I thought rightfully so that the reason the tempNum is still around is because it hadn't been autoreleased from the pool yet. But even after moving the [pool drain] to right before the NSLog message, there is not crash??? Weird.</p> http://stackoverflow.com/questions/277207/opengl-include-directives-on-os-x 3 OpenGL include directives on OS X esiegel 2008-11-10T06:33:20Z 2009-02-13T21:49:11Z <p>I am a bit confused why this code compiles. I leave out the "necessary" <code>#include &lt;OpenGL/gl.h&gt;</code> and still the program can compile. How is this possible when my program is calling functions from the GL library, without including them.</p> <pre><code>int main(int argc, char** argv) { glClearColor(1.0,1.0,1.0,1.0); return 0; } </code></pre> <p>I use this compilation command:</p> <pre><code> gcc -framework GLUT -framework OpenGL test.c </code></pre> <p>I was under the assumption that adding -framework just specifies to the linker where the library is, but I thought I still need the headers?</p> http://stackoverflow.com/questions/547798/python-regular-expression-substitution 3 Python Regular Expression Substitution esiegel 2009-02-13T21:38:30Z 2009-02-13T21:47:22Z <p>I have a block of text, and for every regex match, I want to substitute that match with the return value from another function. The argument to this function is of course the matched text.</p> <p>I have been having trouble trying to come up with a one pass solution to this problem. It feels like it should be pretty simple.</p> http://stackoverflow.com/questions/252221/possible-google-riddle 10 Possible Google Riddle? esiegel 2008-10-31T00:14:12Z 2009-01-27T14:02:38Z <p>My friend was given this free google website optimizer tshirt and came to me to try and figure out what the front logo meant.</p> <p><a href="http://2.bp.blogspot.com/_iQVgmEEAit4/SPkKHA3e8fI/AAAAAAAAAB8/ugUerJjuBw8/s1600-h/GWO-tshirt.jpg" rel="nofollow">t-shirt</a></p> <p>So, I have a couple of guesses as to what it means, but I was just wondering if there is something more.</p> <p>My first guess is that each block represents a page layout, and the logo "You should test that" just means that you should use google website optimizer to test which is the best layout. I hope that this isn't the answer, it just seems to simple and unsatisfying.</p> <p>Well, I've spent the past hour trying to figure out if there is any deeper meaning, but to no avail. So, I'm here hoping that someone might be able to help.</p> <p>I did though write a program to see if the blocks represent something in binary. I'll post the code below. My code tests every permutation of reading a block as 4 bits, and then tries to interpret these bits as letters, hex, and ip addresses.</p> <p>I hope someone knows better.</p> <pre><code>#This code interprets the google t-shirt as a binary code, each box 4 bits. # I try every permutation of counting the bits and then try to interpret these # interpretations as letters, or hex numbers, or ip addresses. # I need more interpretations, maybe one will find a pattern import string #these represent the boxes binary codes from left to right top to bottom boxes = ['1110', '1000', '1111', '0110', '0011', '1011', '0001', '1001'] #changing the ordering permutations = ["1234", "1243", "1324", "1342", "1423", "1432", "2134", "2143", "2314", "2341", "2413", "2431", "3124", "3142", "3214", "3241", "3412", "3421", "4123", "4132", "4213", "4231","4312", "4321"] #alphabet hashing where 0 = a alphabet1 = {'0000':'a', '0001':'b', '0010':'c', '0011':'d', '0100':'e', '0101':'f', '0110':'g', '0111':'h', '1000':'i', '1001':'j', '1010':'k', '1011':'l', '1100':'m', '1101':'n', '1110':'o', '1111':'p'} #alphabet hasing where 1 = a alphabet2 = {'0000':'?', '0001':'a', '0010':'b', '0011':'c', '0100':'d', '0101':'e', '0110':'f', '0111':'g', '1000':'h', '1001':'i', '1010':'j', '1011':'k', '1100':'l', '1101':'m', '1110':'n', '1111':'o'} hex = {'0000':'0', '0001':'1', '0010':'2', '0011':'3', '0100':'4', '0101':'5', '0110':'6', '0111':'7', '1000':'8', '1001':'9', '1010':'a', '1011':'b', '1100':'c', '1101':'d', '1110':'e', '1111':'f'} #code to convert from a string of ones and zeros(binary) to decimal number def bin_to_dec(bin_string): l = len(bin_string) answer = 0 for index in range(l): answer += int(bin_string[l - index - 1]) * (2**index) return answer #code to try and ping ip addresses def ping(ipaddress): #ping the network addresses import subprocess # execute the code and pipe the result to a string, wait 5 seconds test = "ping -t 5 " + ipaddress process = subprocess.Popen(test, shell=True, stdout=subprocess.PIPE) # give it time to respond process.wait() # read the result to a string result_str = process.stdout.read() #For now, need to manually check if the ping worked, fix later print result_str #now iterate over the permuation and then the boxes to produce the codes for permute in permutations: box_codes = [] for box in boxes: temp_code = "" for index in permute: temp_code += box[int(index) - 1] box_codes.append(temp_code) #now manipulate the codes using leter translation, network, whatever #binary print string.join(box_codes, "") #alphabet1 print string.join( map(lambda x: alphabet1[x], box_codes), "") #alphabet2 print string.join( map(lambda x: alphabet2[x], box_codes), "") #hex print string.join( map(lambda x: hex[x], box_codes), "") #ipaddress, call ping and see who is reachable ipcodes = zip(box_codes[0:8:2], box_codes[1:8:2]) ip = "" for code in ipcodes: bin = bin_to_dec(code[0] + code[1]) ip += repr(bin) + "." print ip[:-1] #ping(ip[:-1]) print print </code></pre> <p><a href="http://2.bp.blogspot.com/_iQVgmEEAit4/SPkKHA3e8fI/AAAAAAAAAB8/ugUerJjuBw8/s1600-h/GWO-tshirt.jpg" rel="nofollow">t-shirt</a>.</p> http://stackoverflow.com/questions/261219/class-variables-in-javascript 3 Class Variables in Javascript esiegel 2008-11-04T08:07:10Z 2008-12-20T00:25:10Z <p>I'm having a bit of trouble trying to get class variables to work in javascript. </p> <p>I thought that I understood the prototype inheritance model, but obviously not. I assumed that since prototypes will be shared between objects then so will their variables.</p> <p>This is why this bit of code confuses me.</p> <p>What is the correct way to implement class variables?</p> <pre><code>function classA() {}; classA.prototype.shared = 0; a = new classA; //print both values to make sure that they are the same classA.prototype.shared; a.shared; //increment class variable classA.prototype.shared++; //Verify that they are each 1 (Works) classA.prototype.shared; a.shared; //now increment the other reference a.shared++; //Verify that they are each 2 (Doesn't Work) classA.prototype.shared; a.shared; </code></pre> <p>UPDATE: So it seems that everyone is confirming the fact that by incrementing the instance's variable we don't affect the prototype. This is fine, this is what I have documented in my example, but doesn't this seem like an error in the design of the language? Why would this behavior be desirable? I find it weird that when the instance's var is undefined we follow the hidden link to the prototype where we get the value of the var, but we copy it into the instance object. </p> <p>I also understand that this isn't java/c++/ruby/python, it's a different language. I'm just curious as to why this behavior might be good. </p> http://stackoverflow.com/questions/127704/algorithm-to-return-all-combinations-of-k-elements-from-n/339196#339196 0 Answer by esiegel for Algorithm to return all combinations of k elements from n esiegel 2008-12-04T00:02:09Z 2008-12-04T00:07:41Z <p>In Python like Andrea Ambu, but not hardcoded for choosing three.</p> <pre><code>def combinations(list, k): """Choose combinations of list, choosing k elements(no repeats)""" if len(list) &lt; k: return [] else: seq = [i for i in range(k)] while seq: print [list[index] for index in seq] seq = get_next_combination(len(list), k, seq) def get_next_combination(num_elements, k, seq): index_to_move = find_index_to_move(num_elements, seq) if index_to_move == None: return None else: seq[index_to_move] += 1 #for every element past this sequence, move it down for i, elem in enumerate(seq[(index_to_move+1):]): seq[i + 1 + index_to_move] = seq[index_to_move] + i + 1 return seq def find_index_to_move(num_elements, seq): """Tells which index should be moved""" for rev_index, elem in enumerate(reversed(seq)): if elem &lt; (num_elements - rev_index - 1): return len(seq) - rev_index - 1 return None </code></pre> http://stackoverflow.com/questions/315718/regex-textmate-confusion 1 Regex/Textmate Confusion esiegel 2008-11-24T22:23:24Z 2008-11-25T20:04:36Z <p>I'm trying to create a Textmate snippet, but have run into some difficulties. Basically, I want to type in a Name and split it into its parts.</p> <p>Example,</p> <p>Bill Gates: (Bill), (bill), (Gates), (gates), (Bill Gates), (Bill gates), (bill Gates), (bill gates)</p> <p>EDIT**</p> <p>So I most certainly can produce these results quite simply if I was using a programming language. For example, I could split the words and then call the uppercase or lowercase functions to produce this output. </p> <p>But in my situation I am using Textmate and it regular expression capabilities to create a tab snippet. I want to type some trigger key, ie doit, press tab and then type in a username. Then the ouput above will be created. This won't save me that much time, but I feel like I come across this sort of stuff in Textmate quite frequently and want to figure it out.</p> <p>I have been using this as a reference, but still don't know how use regexps to be selective with the words and upper and lowercase the values (\u \U \l \L)</p> <p><a href="http://manual.macromates.com/en/snippets" rel="nofollow">http://manual.macromates.com/en/snippets</a></p> http://stackoverflow.com/questions/282534/what-are-great-programming-related-online-talks-videos/282554#282554 6 Answer by esiegel for What are great programming-related online talks / videos? esiegel 2008-11-11T23:49:33Z 2008-11-11T23:49:33Z <p>Douglas Crockford's videos explain javascript very nicely. In the end, I actually started to enjoy/respect javascript, and that's saying something.</p> <p><a href="http://www.google.com/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fvideo.yahoo.com%2Fwatch%2F630959%2F2974197&amp;ei=6hkaSbFGoLLwBMnflKcO&amp;usg=AFQjCNFwN55YtC5wwa7KgS8x_WsXHmCZqA&amp;sig2=f6h9oNvVZGvS13EpY35NSQ" rel="nofollow">Javascript: The good parts</a></p> <p>After this you should really take a look at his advanced javascript videos, and his videos about the DOM.</p> http://stackoverflow.com/questions/260787/javascript-shell 1 Javascript shell? esiegel 2008-11-04T03:37:14Z 2008-11-04T08:41:13Z <p>I know that this question has already been asked <a href="http://stackoverflow.com/questions/41207/javascript-interactive-shell-with-completion">HERE</a> but sadly none of the answers suggest a javascript standalone shell that has auto completion. I am reopening this question again, in the hope that some new answers might be found.</p> http://stackoverflow.com/questions/258078/does-anyone-else-find-this-a-bit-offensive 4 Does Anyone else find this a bit offensive? [closed] esiegel 2008-11-03T07:45:19Z 2008-11-03T18:45:54Z <p>I found this Craigslist posting in the SFbay area section of software jobs, and it definitely bothered me.</p> <p><a href="http://sfbay.craigslist.org/eby/sof/902088464.html" rel="nofollow">POSTING</a></p> <p>The whole post was condescending and made it seem as if I'm a bad programmer for desiring things like a health package and a decent salary. Am I crazy or is this truly the best company of all time? I doubt it.</p> http://stackoverflow.com/questions/235637/spatial-data-structures-for-moving-objects 6 Spatial Data Structures for moving objects? esiegel 2008-10-24T23:56:07Z 2008-10-29T09:14:45Z <p>I was wondering what is the best data structure to deal with a lot of moving objects(spheres, triangles, boxes, points, etc)? I'm trying to answer two questions, Nearest Neighbor and Collsion detection.</p> <p>I do realize that traditionally, data structures like R trees are used for nearest neighbor queries and Oct/Kd/BSP are used for collision detection problems dealing with static objects, or with very few moving objects.</p> <p>I'm just hoping that there is something else out there that is better.</p> <p>I appreciate all the help.</p> http://stackoverflow.com/questions/237496/code-golf-factorials/239285#239285 0 Answer by esiegel for Code Golf: Factorials esiegel 2008-10-27T07:46:45Z 2008-10-27T07:46:45Z <pre><code>def f(n): return reduce(lambda x,y: x*y,range(1,n+1)) </code></pre> http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used/238205#238205 39 Answer by esiegel for What is the best UI you've ever used? esiegel 2008-10-26T16:26:09Z 2008-10-26T16:26:09Z <p>Quicksilver: </p> <p>It's fast, intuitive, and very adaptable. It allows for so many tasks to get done quickly and simply. </p> http://stackoverflow.com/questions/1655202/dynamic-table-generation/1657779#1657779 Comment by esiegel on Dynamic Table Generation esiegel 2009-11-02T01:30:25Z 2009-11-02T01:30:25Z You are right, this would definitely work. My problem really boils down to not defining all the type of data that I want to be able to process. Thanks a bunch. http://stackoverflow.com/questions/1655202/dynamic-table-generation Comment by esiegel on Dynamic Table Generation esiegel 2009-10-31T22:00:17Z 2009-10-31T22:00:17Z Sorry to say, I don't have the code on this computer. Basically, in the report there will be a string like: name: standard_deviation type: float value: 1.22243 In the website it checks that table standard_deviation exists. IF it does it will add this value, else it creates the table. The whole thing feels hacky, and very fragile. http://stackoverflow.com/questions/1461945/audio-feature-extraction Comment by esiegel on Audio Feature Extraction esiegel 2009-09-22T19:00:50Z 2009-09-22T19:00:50Z When I say &quot;features&quot;, I'm referring to a more AI theoretical definition. A feature is any metric that can be used to distinguish or group the audio together. For example, the average or the variance and other statistical things can be features. http://stackoverflow.com/questions/1339095/books-about-graph-databases/1340013#1340013 Comment by esiegel on Books about Graph Databases esiegel 2009-08-27T15:06:03Z 2009-08-27T15:06:03Z I am definitely looking for something more along the lines of db theory and CS, and your last recommendation is definitely the closest. http://stackoverflow.com/questions/922441/improve-bufferedreader-speed/922517#922517 Comment by esiegel on Improve BufferedReader Speed esiegel 2009-05-28T20:45:18Z 2009-05-28T20:45:18Z Update: Using NIO on smaller data (1GB) it doesn't seem much faster, marginally as you said. I'm having a problem using it on large dataset though. I have the data truncated into several 50mb files, and with NIO I memory map the file and then decode it into a char buffer, like the example, but how to I unmap the file. I'm getting java out of heap space error after about a minute of processing. I know the MappedByteBuffers have a limit of 2GB, but each of my files is much smaller. http://stackoverflow.com/questions/922441/improve-bufferedreader-speed/922511#922511 Comment by esiegel on Improve BufferedReader Speed esiegel 2009-05-28T20:04:18Z 2009-05-28T20:04:18Z I compile the STAF service into a JAR, and then STAF gets called and incorporates the jar file. I tried looking at it with Jconsole, but I wasn't able to connect for some reason. I posted this question on the STAF forum itself, but they weren't much help. http://stackoverflow.com/questions/922441/improve-bufferedreader-speed/922484#922484 Comment by esiegel on Improve BufferedReader Speed esiegel 2009-05-28T18:40:17Z 2009-05-28T18:40:17Z I'll try this out. http://stackoverflow.com/questions/907665/objective-c-memory-management-confusion/907673#907673 Comment by esiegel on Objective C Memory Management Confusion esiegel 2009-05-25T19:40:31Z 2009-05-25T19:40:31Z Awesome, That is exactly the right answer. How did you come up with it. And can you also add this update to your response so people can see it in the answer. http://stackoverflow.com/questions/907665/objective-c-memory-management-confusion/907673#907673 Comment by esiegel on Objective C Memory Management Confusion esiegel 2009-05-25T19:31:11Z 2009-05-25T19:31:11Z Maybe there is some setting within Xcode that is doing something strange. I don't have garbage collection on. I retried typing in all of this stuff again in a fresh foundation project, and it still has the same behavior. http://stackoverflow.com/questions/907665/objective-c-memory-management-confusion/907673#907673 Comment by esiegel on Objective C Memory Management Confusion esiegel 2009-05-25T19:21:03Z 2009-05-25T19:21:03Z I copy and pasted. http://stackoverflow.com/questions/907665/objective-c-memory-management-confusion/907673#907673 Comment by esiegel on Objective C Memory Management Confusion esiegel 2009-05-25T19:17:27Z 2009-05-25T19:17:27Z Very Strange, after the first call to setMyNum, the retain count goes from 0 to 3 on myNum. And then only falls to 2 when [pool drain] is called. This is why the program doesn't crash if I call pool drain before the last log. ??? http://stackoverflow.com/questions/907665/objective-c-memory-management-confusion/907673#907673 Comment by esiegel on Objective C Memory Management Confusion esiegel 2009-05-25T19:05:16Z 2009-05-25T19:05:16Z I don't think that this is totally correct: I tried inserting a [p drain] before the NSLog call expecting a crash, but no crash??? There must be something else retaining the value?? Still confused http://stackoverflow.com/questions/907665/objective-c-memory-management-confusion/907673#907673 Comment by esiegel on Objective C Memory Management Confusion esiegel 2009-05-25T18:51:52Z 2009-05-25T18:51:52Z But in my setMyNum I am explicitly calling retain and release. What happens to the old number after I call release? http://stackoverflow.com/questions/547798/python-regular-expression-substitution/547817#547817 Comment by esiegel on Python Regular Expression Substitution esiegel 2009-02-13T21:52:44Z 2009-02-13T21:52:44Z Damn, I just assumed that it could be a string in that function http://stackoverflow.com/questions/261219/class-variables-in-javascript/261243#261243 Comment by esiegel on Class Variables in Javascript esiegel 2008-11-05T02:42:16Z 2008-11-05T02:42:16Z I apologize for the voting down, but I did it originally because your answer didn't address my question. It didn't show instances sharing a variable. It was just code, and I interpreted as wrong even though this is the only way to &quot;share&quot; class variables in javascript. Now I can't undo the vote.