Tagged Questions
The development-approach tag has no wiki summary.
11
votes
10answers
500 views
How do programmers brainstorm and approach new projects?
What is the best way, you have developed, to approach / brainstorm / look at new assigned projects?
read relevant books, blogs?
discuss problems with fellow programmers?
ask questions on ...
7
votes
9answers
947 views
What is the best way to go about writing a simple x86 assembler?
I'm interested in writing an x86 assembler for a hobby project.
At first it seemed fairly straight forward to me but the more I read into it, the more unanswered questions I find myself having. ...
6
votes
1answer
413 views
Weather prediction algorithm variety
Currently there's a big 'storm' over the predictions by the MetOffice in the UK. They predicted a mild, wet winter, while we have the coldest temperature on record in Northern Ireland and solid snow ...
5
votes
9answers
183 views
What will be the OOP approach? (or YOUR approach?)
I'm having difficulties with some general OOP & Java approach. There are various ways to let classes/objects communicate with each other. To give a simple example:
I need object A to perform ...
3
votes
2answers
251 views
Right way to format date with strings like today, yesterday, tomorrow etc
I have a date textview. And my textview holds a date string like 2011.09.17. Well I still do want to have that but I also want to add some more user friendly info for some specific dates like today or ...
3
votes
3answers
100 views
How do you deal with multiple developers and database changes?
I would like to know how you guys deal with development database changes in groups of 2 or more devs? Do you have a global db everyone access, maybe a local copy and manually apply script changes? It ...
3
votes
3answers
106 views
What are some strategies/approaches for refactoring a UI?
This isn't a "Refactor or rewrite" question. Also, this applies strictly to UI refactoring.
Refactoring in general I am familiar with, but what are some really good strategies and approaches for ...
3
votes
4answers
113 views
Is it bad to have a long name for an associative array in PHP?
I have a function which must return one dimensional associate array, like $user_info[$index]=value where $index is a string which consist of
user_id
full_name
photo_file_name
for example, my ...
3
votes
10answers
281 views
When do you use third-party code?
How do you generally resolve a programming problem, for example, when you have to parse a ini file?
If it is my task, I will :
First check if there is already a weapon suitable for it in my ...
2
votes
3answers
141 views
How to change Grid Content?
I am asking for a programming approach.
This is my problem:
I have a WPF window, with a ComboBox at the top.
When user select the item in combobox, depends on the selection, the Grid below it will ...
2
votes
2answers
88 views
Preferred approach for producing ranked SQL results?
I need to build some searching logic that produces ranked results. A simple example would be querying a table with firstname, lastname and zip code columns. The required output would be a list a rows ...
1
vote
1answer
42 views
Programming by Assumption VS. What
When we approach a project in a top-down fashion, we often call it programming by assumption.
What should we call it when we create the building blocks first, and then proceed to build our project?
...
1
vote
3answers
101 views
The correct way to use Git?
I have a bin/ folder with tons of Bash, Python scripts and some C code.
In this folder, I did:
git init
git add file_name
I thought git add . would not be good because it would think that all the ...
1
vote
2answers
160 views
Declarative Approach vs Programmatic Approach for Content Types Development?
For custom development of Content Types, which approach should be followed, Declarative Approach (via element.xml) vs Programmatic Approach (via code)?
What are the pros and cons of each approach?
1
vote
1answer
108 views
What is the best conceptual approach, in Rails, to managing content areas in what is otherwise a web application?
(A while back I read this great post: http://aaronlongwell.com/2009/06/the-ruby-on-rails-cms-dilemma.html, discussing the "Rails CMS Dilemma". It describes conceptual approaches to managing content ...
1
vote
1answer
182 views
Filtering a ListBox
I have a ListBox - lsbEntities - which I want to filter the items of based on some selected radio button. The below code is semi-pseudo, is their a better approach?
private List<string> ...
1
vote
2answers
169 views
Zend sending email
i have a project that need to send email. and i use zend as my framework.
i use XSL for email templat and save email parameter as array that will turn to XML before send the email.
i create my own ...
1
vote
3answers
55 views
Best approach: transfer daily values from one year to another
I will try to explain what I want to accomplish. I am looking for an algorithm or approach, not the actual implementation in my specific system.
I have a table with actuals (incoming customer ...
1
vote
2answers
70 views
BEST approach to share messages between data tier and application tier
I was looking for any suggestion or a good approach to handle messages between the data & application tier, what i mean with this is when using store procedures or even using direct SQL statements ...
1
vote
2answers
140 views
Reading HTML data from database is slow? Need a better approach?
We have a table in mysql of 18GB which has a column "html_view" which stores HTML source data, which we are displaying on the page, but now its taking too much time to fetch html data from "html_view" ...
1
vote
1answer
901 views
Loading alternative content via tabs and jQuery and JSP
I have a table of data for a policy type (options are Single, Couple, Family & Single Parent Family). I want to have a tabbed interface with each policy type occupying one tab. At the same time ...
1
vote
3answers
107 views
Documenting and getting approval before starting to code?
Recently our boss changed our method of working to first document stuff such as what we are going to code, how will it affect the system code, where would i require to make changes, etc, get it ...
1
vote
2answers
538 views
What is the best approach to store xml temporarily on the client side?
My application has a lot of decision to make before finally saving my data to the database. I am using JQuery to do this. I have succeeded in creating a moderately long xml string, due to the fact ...
1
vote
3answers
328 views
Approach For Syncing One SharePoint List With One or More SharePoint Lists
What would be the best approach or strategy for configuring, customizing or developing in SharePoint a solution that allows me to keep one or more SharePoint lists in sync with a SharePoint list I ...
0
votes
1answer
22 views
Insert large volume of data to create a tree with 25k nodes
We are creating a tree structure with the help of a custom tool develop in JavaScript/Jquery.
It works great now we have to create that tree with help of a feed file (CSV file).
I am working on ...
0
votes
2answers
56 views
What is the best approach to make android apps?
I was just reading a tutorial at
http://courses.coreservlets.com/Course-Materials/pdf/android/Android-Programming-Basics.pdf
It has 3 ways in which android applications can be build
• Java-based
...
0
votes
0answers
31 views
choosing right approch to implement google map application (js/php/mysql)
I need your help to choose the right approach to implement an google map application to allow bellow actions :
Collecting datas
will allow users to upload etheir .gpx, .tcx or .kml files
retrieve ...
0
votes
1answer
36 views
programming approach for better performance [closed]
Which approach is better?
Initialize everything at the start of application and free it at the end of application(exit).
Or Initialize when you need it and free it after using it.
And does it ...
0
votes
1answer
31 views
Searching inside documents - right approach
We are developing a web based application (asp.net 3.5 with sql server 2005) where we need to handle and search inside the documents uploaded by users.
We have the following flow which is working ...
0
votes
0answers
10 views
How should I approach a functionality to create a Comment and User at the same time?
With Comment and User I mean the relationship of belongs_to and has_many.
Something like this:
Suppose we have 2 resources, Comment and User. Users can create Comments.
When a non-User go to the ...
0
votes
1answer
90 views
Holder pattern approached differences and performance comparisons
I have seen two ways of doing the same thing, and I do not know what is faster and what is better , and what is the difference . . .
I mean only this few row at the begging are differences and ...
0
votes
1answer
35 views
an excel filter
I have a program in which I take a input from a cvs file and store them into a ArrayList of ArrayList. And I can sort them according to column but now I want to create like a filter so if a file has ...
0
votes
2answers
40 views
How to work on a project with limited access?
It's nice to have a complete project at your disposal to see how an application works when it's modified.
That's in an ideal situation. Now, say you have ftp access to a web site root with all the ...
0
votes
1answer
54 views
Save Form only if Changed
I have a form as shown in PHP where user can build a quiz by adding question and possible answers. User can add multiple answers by clicking Add Answer which just on more empty row .When Save is ...
0
votes
2answers
54 views
performing Complex Joining on RDF
I want to execute the following query:
SELECT ?name1 ?name2 WHERE {
?article1 rdf:type bench:Article .
?article2 rdf:type bench:Article .
?article1 dc:creator ?author1 .
?author1 ...
0
votes
1answer
51 views
Finding Specific Code Functionality from Open Source Code
Understanding the relevant license issues, I'd like to know if there's a good general way to go about hunting down the code that accomplishes a specific task from a large open source project. For ...
0
votes
0answers
33 views
Web Application analysis
we have a small small company with a small team and we are looking for the best approach that fits our company wt do you recommend for us guys?
0
votes
1answer
95 views
DataBinding help in Flex 4
I managed to make the enabled thing work.
<s:Button x="388" y="219" width="180" height="40"
label="Generate Code" fontWeight="bold"
enabled="{(mbUniqueID.text!='')}" />
...
0
votes
2answers
415 views
Make Flex 4 web application load faster
I made a Flex 4 web application. Upon testing locally, I already got satisfied at how it looks like. However, the swf's file size grew to around 6mb in size so when I uploaded it to my website and ...
0
votes
1answer
212 views
Front to back-end development process
How do you handle your development process from the front-end to the back-end? Front-end first or back-end?
Also, if you are the back-end developer do you write ANY javascript for things like AJAX ...
0
votes
1answer
151 views
Best approach to building a full featured website: Where to start?
I'm starting to build my second medium sized eCommerce website. Some standard features it will have are:
View/Browse items
User login system (using OpenID)
Purchase items with a custom made ...
0
votes
2answers
238 views
Good Strategy for sharing project dependencies/resources across multiple projects/boxes/developers?
I work in a small developing team with 3 developers and none of us are really 'uber elite programmers' but we get by pretty well for our company. One thing that has been constantly recurring is we ...
0
votes
2answers
35 views
Any recommendations for writing a GUI client from a CLI client?
I'm looking for writing a GUI client for a existing application in my job, this application is CLI and because this is not widely used.
This is the first time I'm writing something similar, the I ask ...
0
votes
2answers
113 views
What should i use Iframe or Frameset?
I am creating a page wherein there will be a text box , a button and a frame .
Wireframe:
http://gomockingbird.com/mockingbird/index.html?project=2e29104b80a65861df9c1113b029befcd9dd163c
Now, i am ...
0
votes
2answers
57 views
What should be the correct/better approach for locking a record in table?
Actually, the problem is like this:-
i am having a table, say Payments. I have provided few GUI for searching, viewing and editing the record. Now if the user is trying to edit a record perform some ...
-1
votes
1answer
29 views
How to sketch Android apps [closed]
I'm an absolut newbie.I've done a bit of reading and a bit of sample code exploring already.
My question now is: How should I approach the design of my firsts applications?
I mean, should I use ...
-3
votes
2answers
253 views
Efficient Algorithm/code to print a 2D Array into Spiral Format [closed]
Please write a efficient code/algorithm in java to print a two dimensional array [m][n] in a spiral format ?
For ex. if the array provided by the user is :
1 2 3 4
5 6 7 8
1 2 3 4
5 6 7 8
...
-4
votes
0answers
19 views
How to estimate if a page is a payment success page or not with Javascript [closed]
I am implementing a tracking system that tracks purchases of a shopping website. I can locate a tracking script code to determine the page is a payment success page or not. According to the result it ...