Matt J

4,454
reputation
796 views

Registered User

name Matt J
member for 1 year
seen yesterday
website
location Urbana, IL
age 23
2d
awarded  Mortarboard
Nov
18
comment How do I build a domain-specific query language?
Yikes; no need to shout :) I only mean that even if you're right, the specific information you have included in the answer thus far will not be helpful. The fact that this question exists suggests that, if a list of formalized predicates exists, the OP doesn't see it (as evidenced by step 1). No effort was made in the answer to seek more information to help the asker formalize the predicates or realize that such a list of predicates may exist already. "This is a dumb question; think harder" may well be true, but doesn't help anybody. Neither do appeals to authority.
Nov
18
comment How do I build a domain-specific query language?
How is this helpful? I understand the value of "you're doing it wrong" answers, but you have no idea what the 'database' mentioned is (could be a SQL database in the traditional sense, a tarball of web pages having something to do with biology or other unstructured test). Furthermore, clearly relational algebra will be at the heart of most sensible query languages, but one size does not fit all. Many languages coexist because they provide better expressability or performance for somebody, and while creating a DSL may not be necessary, there isn't enough information here to conclude that.
Nov
15
comment How do I find the nth ancestor of a node in a binary search tree?
The queue can be even worse than that, requiring O(n) for a completely unbalanced tree that has devolved into a linked list. If you're OK with potentially O(n) memory, you may also consider a flat array of size N to hold your traversal history. That also avoids the O(N) (for a singly-linked list) or O(k) (for a doubly-linked list) traversal to find the kth ancestor after the target has been reached.
Oct
4
accepted What is the name of this data structure or technique of using relative difference between sequence members
Sep
20
awarded  Yearling
Sep
9
awarded  Good Answer
Sep
1
answered Performance of comparisons in C++ ( foo >= 0 vs. foo != 0 )
Aug
13
answered Getting all the permutations in an array
Aug
6
comment Shell script - search and replace text in multiple files using a list of strings
I edited the post to remove it :)
Aug
6
revised Shell script - search and replace text in multiple files using a list of strings
removed %
Aug
3
awarded  
Aug
1
revised Spiral Algorithm in C#
m->m-1, n->n-1
Jul
30
comment How to optimize a C for loop?
Assuming the compiler cannot do it for you (which it should), the second code sample avoids recalculating byte_index*NBBY each loop iteration.
Jul
30
comment How to optimize a C for loop?
true, inlining and unrolling+inlining are viable solutions as well. in my experience, it seems as though the compiler is more likely to do inlining for you than unrolling, so unrolling in your C code is moderately likely to yield unrolling+inlining in the compiled code, assuming the function is small enough not to cause ghastly numbers of cache misses.
Jul
30
answered How to optimize a C for loop?
Jul
25
answered Spiral Algorithm in C#
Jul
23
revised Do I need a server to use git?
cleanup
Jul
20
answered Algorithm for BFS traveral of an acylic directed graph
Jul
20
comment C/C++ rounding up decimals with a certain precision, efficiently
Actually, I think this works (don't think it will be fast though). For example, to round to the nearest hundredth, 1.014 would round down to 1.01 (1.014 + .005 = 1.019, truncate to 2 decimal places), but 1.017 would round up to 1.02 (1.017 + .005 = 1.022, truncate to 2 decimal places).
Jul
11
awarded  Enlightened
Jul
11
awarded  Nice Answer
Jul
11
answered Is this game physics?
Jul
11
accepted How do I capture SIGINT in Python?
Jul
10
answered How do I capture SIGINT in Python?
Jul
10
revised Is GIJ (GNU Interpreter for Java) stable enough for commercial use?
small edits
Jul
10
answered Is GIJ (GNU Interpreter for Java) stable enough for commercial use?
Jul
9
revised Where did code morphing go ?
edited link text
Jun
30
revised Why not use pointers for everything in C++
caps->bold, really->rarely; deleted 1 characters in body
Jun
30
revised How to combine multiple Excel files into single Excel workbook with multiple sheets?
grammar, title, removed salutation
Jun
19
comment Regex-like syntax or CFG for generating cartesian product of concatenated string variables and literals
Yeah, PICT looks like it would do what I want, though it may be a little overkill for my purposes. This is for running a carefully-selected set of directed simulations, not for testing, so I really just need a shorthand for generating lots of strings with common structure; you can always write your input in such a way that the cartesian product turns out to be exactly the set of things you wanted (though it may be convoluted to do so if you are exploring a non-linear, for lack of a better term, piece of the parameter space).
Jun
18
comment Regex-like syntax or CFG for generating cartesian product of concatenated string variables and literals
Thanks so much! This works great for my current use case, and when the time comes to add recursion to the syntax, I'll stop putting off learning Python and use it as my 'hello world' (unless you're bored ;)
Jun
18
comment Regex-like syntax or CFG for generating cartesian product of concatenated string variables and literals
Agreed; the functionality I am looking for is quite different than the implementation of regexes in any language I know of; as I tried to get across in the title, the pleasing syntax for combining literals and variables is what I'm after. As far as your second point, my idea was that I would write a separate input file for each set of jobs I'd like to do, in such a way that the exhaustive list is indeed what I want. If there is a scheme which allows me to specify the space of possible arguments to my program, and simply pick out a subset of those in each input file, that's fine too.
Jun
18
revised Regex-like syntax or CFG for generating cartesian product of concatenated string variables and literals
title
Jun
18
comment Java 5 to Java 1.4 Source Code Backporting Tool
In general no, but this also isn't as big of an issue because 1.6 didn't add a lot of new language features like 1.5 did. You can always generate bytecode from your 1.6 source code that will run on a 1.4 or 1.5 JVM, you just can't use Declawer to transform your 1.6 source code into source code that only uses 1.5 language and API features that is still readable.
Jun
18
asked Regex-like syntax or CFG for generating cartesian product of concatenated string variables and literals
Jun
18
revised Java 5 to Java 1.4 Source Code Backporting Tool
javac should be monospace, not italic
Jun
17
revised How to “get the most” out of a 3 month intern.
stint=skimp?
Jun
16
comment Being A Lone Developer
@Zack: Does being in Arizona affect your situation? Just curious, hadn't heard anything particularly bad about the economy there :)
Jun
15
revised How to do an integer log2() in C++?
changed title to be more searchable
Jun
15
answered How to do an integer log2() in C++?