prototyping

Whats the best way to create interactive application prototypes?

ⅰ亾dé卋堺 提交于 2019-12-19 02:29:28
问题 The question should be interpreted from a general point of view and not targeted solely at web apps or desktop apps. I have been looking around to find a simple and easy way of creating interactive prototypes for web applications. I'd like to use a technique that allows simple UI creation and especially UI recreation and modification in further iterations. Filling the UI with mockup data should be very simple. The technique may require a simple form of programming, e.g. to specify a drag and

Whats the best way to create interactive application prototypes?

冷暖自知 提交于 2019-12-19 02:29:09
问题 The question should be interpreted from a general point of view and not targeted solely at web apps or desktop apps. I have been looking around to find a simple and easy way of creating interactive prototypes for web applications. I'd like to use a technique that allows simple UI creation and especially UI recreation and modification in further iterations. Filling the UI with mockup data should be very simple. The technique may require a simple form of programming, e.g. to specify a drag and

Which language should I use?

喜夏-厌秋 提交于 2019-12-17 19:53:54
问题 I'm about to produce a prototype for a technology startup that I've just joined, and I'm trying to decide which language to use. It's going to be a simple web tool with a MySQL database in the background and some AI stuff going on in between. I've used Ruby and PHP a reasonable amount in the past, but wonder whether I might be better off going with Python or even Perl. My main programming experience is with C / C++ / Java, but I feel like I want to go for something that will make my life as

Testing Ruby on Rails

做~自己de王妃 提交于 2019-12-12 03:03:58
问题 Is there anywhere online where you can test Ruby on Rails? Mainly testing getting data from models. Looking for something similar to http://jsfiddle.net/. 回答1: If I understand you correctly, and I'd like to think I do, you want a website which you could hit with your app that would let you correctly build queries using your ActiveRecord models? No, there isn't such a place, namely because your models are different from my models and there isn't any common code. If you need to test getting

Prototyping in C++

混江龙づ霸主 提交于 2019-12-11 10:59:20
问题 If I prototype a function above the main function in my code, do I have to include all parameters which have to be given? Is there a way how I can just prototype only the function, to save time, space and memory? Here is the code where I came up with this question: #include <iostream> using namespace std; int allesinsekunden(int, int, int); int main(){ int stunden, minuten, sekunden; cout << "Stunden? \n"; cin >> stunden; cout << "Minuten? \n"; cin >> minuten; cout << "Sekunden= \n"; cin >>

Prototyping Tools for non-programmers - Expression?

两盒软妹~` 提交于 2019-12-10 11:10:38
问题 We are looking for a prototyping tool to allow our business analysts (and myself) mockup sites. Some people have suggested using the MS Expression suite of tools for this. I am worried it might be a bit too technical for the non-programmers. Does anyone have any experience using Expressions Web (or Blend) as a prototyping tool? Is there anything else anyone would recommend. 回答1: I would not recommend that. You should use something that isn't intended for real application design. Mockups

Prototyping and simulating embedded software on Windows

落爺英雄遲暮 提交于 2019-12-09 11:08:37
问题 I am looking for tools and techniques for prototyping (virtual prototyping), simulation, and testing of deeply embedded C code on desktop Windows, including building realistic embedded front panels consisting of buttons, LEDs, and LCD displays (both segmented and graphic). I'm specifically interested in a possibly low-level approach, using pure C code and raw Win32 API rather than MFC, .NET/C#, vxWidgets or Qt. I'd also like to use free development tools, such as Visual C++ Express with

Design or prototype first? [closed]

岁酱吖の 提交于 2019-12-04 10:38:32
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed last year . When first approaching a project is best to step back and think through everything or just dive in and start coding and polish at a later date? Essentially, do you design first or try to rapidly prototype? I have been burned by both methods, sometimes I try and think everything

Prototyping and simulating embedded software on Windows

本秂侑毒 提交于 2019-12-03 13:55:30
I am looking for tools and techniques for prototyping (virtual prototyping), simulation, and testing of deeply embedded C code on desktop Windows, including building realistic embedded front panels consisting of buttons, LEDs, and LCD displays (both segmented and graphic). I'm specifically interested in a possibly low-level approach, using pure C code and raw Win32 API rather than MFC, .NET/C#, vxWidgets or Qt. I'd also like to use free development tools, such as Visual C++ Express with Platform SDK and ResEdit for editing resources. I'm looking for code examples to render graphic LCDs (from

Prototyping with Python code before compiling

心已入冬 提交于 2019-12-03 02:23:52
问题 I have been mulling over writing a peak fitting library for a while. I know Python fairly well and plan on implementing everything in Python to begin with but envisage that I may have to re-implement some core routines in a compiled language eventually. IIRC, one of Python's original remits was as a prototyping language, however Python is pretty liberal in allowing functions, functors, objects to be passed to functions and methods, whereas I suspect the same is not true of say C or Fortran.