473,378 Members | 1,482 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

Testers please

I have written this tool that allows you to look at runtime data and
code at the same time.
And now I need people to test it.

The easiest way to see what I mean is to look at some videos:
http://codeinvestigator.googlepages....tigator_videos

It requires Apache and Sqlite.

It works for me with a Firefox browser on Linux.

Feb 13 '07 #1
9 1189
I took a first look on the video. Amazing. I love it. You got a tester

good job, man

// but one thing, why not zope and postgre?
martien friedeman je napisao/la:
I have written this tool that allows you to look at runtime data and
code at the same time.
And now I need people to test it.

The easiest way to see what I mean is to look at some videos:
http://codeinvestigator.googlepages....tigator_videos

It requires Apache and Sqlite.

It works for me with a Firefox browser on Linux.
Feb 13 '07 #2
martien friedeman wrote:
I have written this tool that allows you to look at runtime data and
code at the same time.
And now I need people to test it.

The easiest way to see what I mean is to look at some videos:
http://codeinvestigator.googlepages....tigator_videos

It requires Apache and Sqlite.

It works for me with a Firefox browser on Linux.
Amazing!
Feb 13 '07 #3
martien friedeman wrote:
I have written this tool that allows you to look at runtime data and
code at the same time.
And now I need people to test it.

The easiest way to see what I mean is to look at some videos:
http://codeinvestigator.googlepages....tigator_videos

It requires Apache and Sqlite.

It works for me with a Firefox browser on Linux.
Great idea !
Especially for newbies, so you've to make sure it's always in the "first
starters package".

As most modern code-editors, already support context sensitive popup's,
can't you make a module that can be added to any editor ?

a few other suggestions
- for large datasets, display only the "corner" values
- for loops, also only display the "corner" values
- to decrease datasize enormuous, limit the functionality to a piece of
code selected by the user
- get rid of Apache and SQLite, too complicated for newbies

keep on the good work,
cheers,
Stef Mientki
Feb 13 '07 #4
On Feb 13, 1:38 am, martien friedeman <martien.friede...@gmail.com>
wrote:
I have written this tool that allows you to look at runtime data and
code at the same time.
And now I need people to test it.

The easiest way to see what I mean is to look at some videos:http://codeinvestigator.googlepages....tigator_videos

It requires Apache and Sqlite.

It works for me with a Firefox browser on Linux.
I'm absolutely stunned. This is a great idea, especially because we
all hate learning other people's code, and this makes the process so
much easier.

Got some exams coming up this week, but I'll do some testing in the
weekend.

I'd like to suggest one thing though. When evaluating conditional
statements, it would be very useful to see what "else" meant in terms
of the statement itself, for example:

if foo == 1:
# Instead of showing "true" this would show "foo == 1"
elif foo == 2:
# This would show "foo == 2"
else:
# Instead of showing "false". Here comes the tricky part. This
should show the opposite of "foo == 1", as well as the following elif
statements. So in this case, the tab could show "not (foo == 1) |
(foo == 2)".

The reason for why showing the negated else in the header (looking for
a better word, this refers to the header shown when you click
something) would be helpful is because it helps keep track of what
statements are being evaluated, since "False" gives no information on
what statment is being tested and if the code is long, you have to
scroll way up to take a look at the if statement, so it will help a
lot with complex code.

While this is not hard to implement (unless I'm missing something),
the implementation has some problems, because conditional statements
can become very long, the else statement's tab could show an
exceptionally long statement whereas showing just "False" keeps it at
a fair length.

I might be missing something in this suggestion though - if so, please
set me straight.

At any rate, I think you've done a great job on this. When I get
around to testing it this weekend I'll post the results on the
project's SourceForge forums.

Regards,
Frišrik Mįr

Feb 13 '07 #5
it would be nice when someone would paste some instructions or
tutorial how to bound it all together. where to paste the file. a
dummy tutorial if possible.

Feb 13 '07 #6
Thanks for getting involved. And kind remarks.

The labeling of 'false' and 'true' is just for shortness sake.
The condition itself could be quite a mess and span several lines. You
mentioned that.
The only reason I like to display it, is to show whether a
block of coding, the colored bit, is performed or not.

Without that you would find out anyway; nothing becomes underlined
when you move your mouse in that area: Nothing in that area is
interactive. Because nothing happened there.

Even when the condition itself shows on the tab, not just the outcome, the
user would still need to scroll up to that tab if it was not visible.

The user interface is in HTML, maybe a tooltip when one moves the cursor
over a colored condition block could show up that shows the condition and
its value.
I hate them tooltips though. They make the whole interface so jumpy.

More work in that area needed then.
Feb 13 '07 #7
Thanks Stef!

I looked at that area of storing large structures. That would seriously
make the whole thing much more complicated.

Say you have object 'foo' and it has lots of attributes.

If you're only accessing foo.length in the statement

'if foo.length 12:'

why should I store everything about foo? Its 'length' is the only
attribute accessed, therefore I only store its 'length'.
And therefore you can not click on 'foo', only on 'length'.
No video shows such an example though.

On the other hand if you had the statement

'if foo:'

then 'foo' would be able to be clicked, and it would say '<__main__.Foo
instance ... etc. The usual. No attributes though.

The interface is web based; I was going to make it as universal as
possible. The web server is required to do the Ajax thing and display
pages. Makes it harder to install too, unfortunately.

The size of the 'recording' is a major drawback, it was clearly not meant
to record the processing of millions of records.

I need to find a way to specify the area in the code that needs recording.

Thanks for the suggestions.
Feb 13 '07 #8
Martien Friedeman wrote:
The size of the 'recording' is a major drawback, it was clearly not meant
to record the processing of millions of records.

I need to find a way to specify the area in the code that needs recording.
Use something like zlib and write a compressed log -- especially
with logs you are working with highly compressible data. The gzip
module can be used to easily write to it on the fly (incrementally).
You'll find with very little effort you'll get very good compression.
Recently I saw a set of standard logs, not designed for any compression,
showing a factor of 9 compression -- that is, I was seeing less than
a single bit required per byte in the original.

--
--Scott David Daniels
sc***********@acm.org
Feb 14 '07 #9
Thanks for that for that Scott.
Most of hassle is storing the program flow.

For example:
Iteration 3 of the loop starting on line 12 has itself a loop on line 15
that has 14 iterations.
Iteration 4 of the loop starting on line 12 has a completely different set
of iterations for the loop on line 15. If at all(!)

All that is stored in a tree which I pickle and write to the database.

Massive program runs will create large trees.
And this pickling is expensive.
Feb 14 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: jon | last post by:
SOFTWARE BETA TESTERS REQUIRED I've got a Web Editor called Webstar that I have been working on for some time that is ready to be beta-tested and if you want to experience trying out a new...
3
by: Charlie Martin | last post by:
(Apologies for duplicating posts to *.misc and *.tools; Google wasn't co-operating .) Confio Software, a Boulder-based system performance tools developer, is preparing to announce our new...
0
by: Harry von Borstel | last post by:
Hello database friends, We are seeking beta testers for our upcoming "blueshell Data Guy Professional". This new application is an extension to our award-winning universal database editor...
0
by: Gregory Vaughan | last post by:
Beta testers wanted for a new Java utility that draws JPEG tree diagrams of XML files. The program is described at: http://www.intsysr.com/drawtag.htm Testers can receive a free copy of the...
0
by: CJ | last post by:
We are looking for some Beta Testers for a new version of ASPBanner.NET It is a port of our ASP 3.0 Version. It is not .NET code from scratch. We have been having some trouble with customer...
1
by: Urs Eichmann | last post by:
regarding partial classes and form designer http://lab.msdn.microsoft.com/ProductFeedback/viewFeedback.aspx?FeedbackId=a2e101a4-67ed-4478-a072-6fa1986b751b Thanks, Urs
0
by: Marian Heddesheimer | last post by:
Rent-a-Tutor.com is in search for testers as online-courses students. As operators of rent-a-tutor.com we are proud to offer high quality online courses over the internet at reasonable prices. At...
0
by: Jsobel | last post by:
Hi all: I downloaded this new Personal Audio Link app. They issued a press release looking for beta testers, with a compensation offer of 6 months free Vonage service for qualified testers. ...
0
by: John_Gradian | last post by:
Hi all: I downloaded this new Personal Audio Link app. They issued a press release looking for beta testers, with a compensation offer of 6 months free Vonage service for qualified testers. ...
0
by: sunil | last post by:
Dear All, I have a task at hand...I need to give some basic training to my testers about Portal and how ASP.Net works... I am sure there are articles and videos helping testers understand about...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.