Ira Baxter

5,301
Reputation
1122 views

Registered User

Name Ira Baxter
Member for 5 months
Seen 3 hours ago
Website
Location Austin, Texas
Age 57
40 years of building systems software and software engineering tools. Architect of DMS Software Reengineering Toolkit (commercial program transformation engine) and PARLANSE (parallel programming language for SMP x86). Implemented compiler-quality front ends for Ada, VB6, C#, Java, FORTRAN, PHP, Natural.

idbaxter at semanticdesigns dot com
2d
answered Your favourite Abstract Syntax Tree optimization
Dec
1
answered Lexer written in Javascript?
Nov
30
awarded  Good Answer
Nov
30
comment PLC Ladder Logic Outputs
I'll admit I only worked seriously on Rockwell controllers. Which of the other controllers offer only a simpler style of rung?
Nov
30
revised PLC Ladder Logic Outputs
added 23 characters in body
Nov
30
accepted PLC Ladder Logic Outputs
Nov
29
answered File system regular expression search tool
Nov
29
answered PLC Ladder Logic Outputs
Nov
28
comment PHP String concatenation - “$a $b” vs $a . “ “ . $b - performance
By the principle of least surprise, two different syntaxes that mean exactly the same thing should have the same properties. The fact that it might not in PHP is just a bad property of PHP.
Nov
28
answered Is it better to declare variables in the middle of functions or just at the beginning?
Nov
28
comment Recursive Descent Parser for C
And just to be pedantic, how small a subset of C? Technically, the empty language can parse itself :-}
Nov
28
comment Recursive Descent Parser for C
Why do you care how the parser is constructed? More importantly, if you are working with an arbitrary subset of C, why would you want a parser that harder to modify ("handwritten") than one generated from a specification document in which the grammer was precisely delineated?
Nov
27
answered Logic programming online resources
Nov
27
comment Algorithm to convert infinitely long base 2^32 number to printable base 10.
Aha. So are you testing one number at a time in parallel, or lots of numbers in parallel? I'm not a GPU expert, but I didn't think they handled operations that varied considerably in time-to-execute well, because you have in effect a barrier synch at the "end" of the current set of operations, and Amhdahl's law means inefficient speedups in such a case. I'd expect infinite-precision arithmetic ops to have wide variance in timing for multiply/divide/modulo. What am I missing?
Nov
27
comment Algorithm to convert infinitely long base 2^32 number to printable base 10.
Well, the number of electrons in the Universe (~~10^73) can be expressed in 3, 2^32 digits. And that IS a big number :-}
Nov
27
revised Experience migrating legacy Cobol/PL1 to Java
deleted 2 characters in body
Nov
27
comment Algorithm to convert infinitely long base 2^32 number to printable base 10.
You imply you are implementing infinite precision arithmetic on the GPU. Assuming it isn't for decimal conversion procedure, why are you doing this? What does the GPU bring to that problem, and why do you expect it to scale well?
Nov
27
comment Algorithm to convert infinitely long base 2^32 number to printable base 10.
Involving the GPU in infinite precision division for the purpose of printing numbers is a poor use of the GPU; how many decimal printable numbers is it going to produce in one second under normal circumstances? Best to leave this to conventional software.
Nov
27
revised Algorithm to convert infinitely long base 2^32 number to printable base 10.
added 3 characters in body
Nov
27
answered Algorithm to convert infinitely long base 2^32 number to printable base 10.
Nov
27
comment COBOL Migrations Strategies?
This response is about "NACA". Check out the discussion here about what NACA really gives you: stackoverflow.com/questions/1029974/…
Nov
27
revised COBOL Migrations Strategies?
added 33 characters in body
Nov
27
comment Modernize Legacy Cobol
COBOL is just another programming language. It has scalar and record declarations. It has assignment, if, and do statements. It has subroutine calls. (It even has OOP features if you are using a modern compiler). That makes it just like C and Java. It is NOT domain specific any more than Java is.
Nov
27
comment Modernize Legacy Cobol
You can read a struct as a monolith in C, too. That's not the reason.
Nov
27
comment Modernize Legacy Cobol
This situation is hardly unique to COBOL. The reason that most large application systems aren't converted to your favorite language is that the cost and risk of doing so is very high, and if the application is mission critical then a risky undertaking is just stupid. Now, one can automate the conversion of COBOL to Java. Then it doesn't matter whether you know what it does, as long as the converted code does the same thing. Managers are still rightfully afraid of this, because it is hard to know if the translator is trustworthy.
Nov
27
answered COBOL Migrations Strategies?
Nov
27
answered Diff tool that can compare sub-sections of files
Nov
27
comment EBNF for ECMAScript?
So you wantto build and manage a variaety of ECMAScript dialects? Check out www.semanticdesigns.com/Products/FrontEnds/ECMASciptFrontEnd.html. This is a well-tested ECMAScript parser with ability to handle dialect variants
Nov
26
accepted What approaches have been used for searching computer code?
Nov
26
answered Find answer to string equation without using eval()
Nov
26
revised Law of Demeter violation proves useful. Am I missing something?
TItle: Dementer -> Demeter
Nov
25
comment Reverse-engineering of communication protocols
Without any other information? This is extremely hard. First you assume a basic model of protocol, say, "pure finite state automata"; if you get that wrong (say it has a hidden counter or a timer), then you can't get the right answer no matter what you do. If you get that right you still have to determine the field structure of the message, which elements trigger protocol transitions, and the actual transition conditions. People write PhD theses trying to induce FSAs from "use case models". If you aren't willing to bring in more knowledge, you'll have a hellaciously hard time.
Nov
25
comment Reverse-engineering of communication protocols
Are you trying to reverse engineer the code back to a state machine, or guess what the protocol is by observing just message traffic?
Nov
25
revised Dead code detection in PHP
added 1 characters in body
Nov
25
revised How does a stackless language work?
Discuss DAG allocation
Nov
25
revised Dead code detection in PHP
added 79 characters in body
Nov
25
answered What successful conversion/rewrite of software have you done?
Nov
25
answered Code coverage with nUnit?
Nov
25
answered Dead code detection in PHP
Nov
25
awarded  Nice Answer
Nov
24
comment EBNF for ECMAScript?
Welcome to open source. What is it you actually want to do?
Nov
24
comment EBNF for ECMAScript?
See EDIT to answer.
Nov
24
revised EBNF for ECMAScript?
added 529 characters in body
Nov
23
answered EBNF for ECMAScript?
Nov
23
revised What is the shortest source code you have seen to do a complex task?
edited body
Nov
23
comment how can I get test coverage statistics for VS2008 C# project
I've only had the briefest exposure to the testdriven.net "report" in the sense of having seen a screen shot. It appears that it also shows coverage data overlayed on source text, in that it will paint at least the line(s?) that are covered. What I do know about hte SD tool is is paints the precise region covered (from starting to ending column) by a probe on a conditional which means it nicely handles multiple conditionals in a line. I can't tell if the testdriven display does that.
Nov
23
answered how can I get test coverage statistics for VS2008 C# project
Nov
23
answered What is the shortest source code you have seen to do a complex task?
Nov
22
revised Stack allocation limit for programs on a Linux 32 bit machine
added 571 characters in body
Nov
22
comment Intelligent file search for windows that can ignore whitespace and search in code?
Contact SD for pricing at the website. I'm just the CTO :-} There is a demo download at the site. The download doesn't come equipped for PHP, but there is PHP module.