473,769 Members | 5,727 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Prototyping

Does anyone here use prototyping tools? I'm building one myself as I feel
like I'm doing the same thing over and over again with the majority of my
projects, how do people generally feel about them? Do people ever use the
generated code in production?

Thoughts appreciated.

Chris.
Nov 15 '05 #1
4 2229
I for one do all my prototyping in VS.net. Very easy to put together a good
looking UI. The secret to prototyping though is to Never use the prototyped
code in the production project. Always start over with a clean project once
the user accepts the prototype. This avoids having all the garbage code we
use in a prototype carrying forward to production.

Kirk Graves
KRGIT Software

"Tilted" <pu***@gvygrq.p b.hx (ROT13)> wrote in message
news:OD******** ********@TK2MSF TNGP10.phx.gbl. ..
Does anyone here use prototyping tools? I'm building one myself as I feel
like I'm doing the same thing over and over again with the majority of my
projects, how do people generally feel about them? Do people ever use the
generated code in production?

Thoughts appreciated.

Chris.

Nov 15 '05 #2
I for one do all my prototyping in VS.net. Very easy to put together a good
looking UI. The secret to prototyping though is to Never use the prototyped
code in the production project. Always start over with a clean project once
the user accepts the prototype. This avoids having all the garbage code we
use in a prototype carrying forward to production.

Kirk Graves
KRGIT Software

"Tilted" <pu***@gvygrq.p b.hx (ROT13)> wrote in message
news:OD******** ********@TK2MSF TNGP10.phx.gbl. ..
Does anyone here use prototyping tools? I'm building one myself as I feel
like I'm doing the same thing over and over again with the majority of my
projects, how do people generally feel about them? Do people ever use the
generated code in production?

Thoughts appreciated.

Chris.

Nov 15 '05 #3
My feelings also, you get that "Thats a bit dirty, but I'll tidy it up
later" feeling and six months later the dirty code turns up in production.
I wasn't actually thinking about UI design more so the data tier, this is
the area I spend most of my time developing and yet it seems to be mostly
repetative.

I have the basics already developed using reflection and custom attributes
but I'm undecided as to whether or not to develop it any further, I know
I'll benefit from it in it's present state but I'm interested in other
people views. Some kind of automatic generation of the tables,
relationships, fields and attributes would be a bonus, but may take some
time to develop.

Chris.
"Kirk Graves" <kr***********@ yahoo.com> wrote in message
news:OC******** ********@TK2MSF TNGP10.phx.gbl. ..
I for one do all my prototyping in VS.net. Very easy to put together a good looking UI. The secret to prototyping though is to Never use the prototyped code in the production project. Always start over with a clean project once the user accepts the prototype. This avoids having all the garbage code we use in a prototype carrying forward to production.

Kirk Graves
KRGIT Software

"Tilted" <pu***@gvygrq.p b.hx (ROT13)> wrote in message
news:OD******** ********@TK2MSF TNGP10.phx.gbl. ..
Does anyone here use prototyping tools? I'm building one myself as I feel like I'm doing the same thing over and over again with the majority of my projects, how do people generally feel about them? Do people ever use the generated code in production?

Thoughts appreciated.

Chris.


Nov 15 '05 #4
My feelings also, you get that "Thats a bit dirty, but I'll tidy it up
later" feeling and six months later the dirty code turns up in production.
I wasn't actually thinking about UI design more so the data tier, this is
the area I spend most of my time developing and yet it seems to be mostly
repetative.

I have the basics already developed using reflection and custom attributes
but I'm undecided as to whether or not to develop it any further, I know
I'll benefit from it in it's present state but I'm interested in other
people views. Some kind of automatic generation of the tables,
relationships, fields and attributes would be a bonus, but may take some
time to develop.

Chris.
"Kirk Graves" <kr***********@ yahoo.com> wrote in message
news:OC******** ********@TK2MSF TNGP10.phx.gbl. ..
I for one do all my prototyping in VS.net. Very easy to put together a good looking UI. The secret to prototyping though is to Never use the prototyped code in the production project. Always start over with a clean project once the user accepts the prototype. This avoids having all the garbage code we use in a prototype carrying forward to production.

Kirk Graves
KRGIT Software

"Tilted" <pu***@gvygrq.p b.hx (ROT13)> wrote in message
news:OD******** ********@TK2MSF TNGP10.phx.gbl. ..
Does anyone here use prototyping tools? I'm building one myself as I feel like I'm doing the same thing over and over again with the majority of my projects, how do people generally feel about them? Do people ever use the generated code in production?

Thoughts appreciated.

Chris.


Nov 15 '05 #5

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

Similar topics

30
2778
by: Dave Allison | last post by:
Oh no, not another "check out my cool new language" posting :-) For about 5 years now, I have been developing a scripting/prototyping language that is now available on the net. It's called Aikido and was born in Sun Labs, but has been released as open source. I no longer work for Sun, but am continuing to use and develop it. The language has a syntax similar to C++ and Java but is aimed at adhoc and prototyping tasks. Unlike other...
9
2678
by: Carl | last post by:
I have been using Python for quite some time now and I love it. I use it mainly for explorative computing and numerical prototyping, ie testing and trying out different kinds of algorithms and computational schemes. The use of Python as my first-choice language has made me extremely productive. Now, I have always believed that Python is a poor performer in terms of numerical speed. My experience, however, is that the efficient use of...
1
2374
by: Will | last post by:
function obj1() { this.children; this.Children = function() { if(typeof(this.children) === 'undefined') { this.children = new col(); } return this.children; }
4
1273
by: Jeff Thies | last post by:
It seems to me that document.getElementById and document.all are essentially the same thing. I'm thinking of prototyping document.getElementById for those browsers that understand document.all but not document.getElementById (IE4). Is that a reasonable thing to do? Suggestions? Jeff
1
1813
by: cainlevy | last post by:
Hey all, What are the pros and cons of defining methods in the constructor vs through the prototype? For example: Constructing: ------------- function MyObj() { this.MyMethod = function() {};
13
1699
by: rs | last post by:
Dear All, I have a question regarding proptypes for functions. What is the recommended practice? The way I do it is to put all my external functions in a header file, while protyping internal (file scope) functions at the start of the source file. I've seen many people (especially using gcc under linux) don't botehr prototyping internal functions but just declare them inline so to speak.
0
321
by: Tilted | last post by:
Does anyone here use prototyping tools? I'm building one myself as I feel like I'm doing the same thing over and over again with the majority of my projects, how do people generally feel about them? Do people ever use the generated code in production? Thoughts appreciated. Chris.
1
1682
by: matt.rasmus | last post by:
I have been using python for the last two years to create various visualizations for my research in computational biology. Over the years, I found that I often needed the same kinds of features for many of my visualizations (OpenGL graphics with basic scrolling and zooming). I have implemented these features in an extension module for python called SUMMON which I have made freely available on my website for anyone who is interested...
2
3324
by: ChrisO | last post by:
I've been pretty infatuated with JSON for some time now since "discovering" it a while back. (It's been there all along in JavaScript, but it was just never "noticed" or used by most until recently -- or maybe I should just speak for myself.) The fact that JSON is more elegant goes without saying, yet I can't seem to find a way to use JSON the way I *really* want to use it: to create objects that can be instantated into multiple...
0
9583
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9423
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10210
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9990
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9860
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8869
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7406
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6668
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5297
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...

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.