Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
2k views

MySQL: How many queries per page is too many?

I'm new to MySQL and something that's quickly becoming obvious to me is that it feels considerably easier to create several database queries per page as opposed to a few of them.... but I don't really ...
6
votes
9answers
462 views

multiple classes with same methods - best pattern

I have a few classes in my current project where validation of Email/Website addresses is necessary. The methods to do that are all the same. I wondered what's the best way to implement this, so I ...
5
votes
7answers
129 views

JavaScript over/under usage. what is acceptable these days?

As a budding web developer I'm trying to walk the fine line of cross-platform usability/compatibility and pizazz(functionality). Is this as much as a problem as it was a few years ago? The parts of ...
4
votes
3answers
188 views

D adding functionality to classes in an uncoupled way

I wrote a class called Container which handles hierarchies (as visible to the class user) and converts them internally to a flat array. So for the outside of Container it looks like a hierarchy of ...
3
votes
2answers
103 views

Pointcuts and Aspect-Oriented Programming

How are pointcuts used in aspect-oriented programming language to add functionality into an existing program? To my understanding, from this Wikipedia article - http://en.wikipedia.org/wiki/Pointcut ...
3
votes
3answers
175 views

What is the correct way of ensuring a single instance of a class?

In java I would create something like this: private static MyClass instance; public static MyClass getInstance() { if(instance != null) { return instance; } instance = new MyClass(); ...
2
votes
6answers
522 views

How to develope one android application for different screens?

I want to develope application for Galaxy Tab and android phones. The tab and phone UI are very different like in tab we have used fragments etc. and in phone we want to use tabs. I am aware that ...
2
votes
3answers
199 views

String constants vs char arrays in C [closed]

Possible Duplicate: What is the difference between char s[] and char *s in C? More of a general question rather than trying to fix something, I've been reading the C programming language ...
2
votes
2answers
97 views

Make :Q! have the same functionality as :q! in vim

Sometimes in vim, I accidentally type :Q instead of :q in normal mode. To work around this, I've added this in my .vimrc: command Q q This works fine for :Q, but in case I type :Q!, vim responds ...
2
votes
5answers
3k views

How do I make Dreamweaver to show me closing tags?

I would like Dreamweaver to show me the opening/closing tag when I select a tag. This functionality is seen in many editors, I know for sure Eclipse has it. To make things clearer: When I ...
2
votes
2answers
69 views

Question about the LGPL

I was wondering if it was legal/not frowned upon to base enhancements to one LGPL library off of the functionality of another LGPL library. Note that because of the method of implementation, the ...
2
votes
2answers
378 views

Help regarding functionality and technical documentation

I ve completed a web application and now i want to prepare functionality and technical documentation for the same. But i ve never done such documentations. Can someone provide how to prepare such ...
2
votes
2answers
64 views

Internal product documentation

We have a system that has grown over a number of years (ASP.NET Web Forms, MySQL) and we're looking for guidance on what to document about it and how to document it so that we have a single place we ...
2
votes
2answers
1k views

Add functionality to Windows.Forms exit button?

Programming in C#.NET 4.0 is my latest passion, and I would like to know how to add functionality to the standard Windows.Forms Exit button (the red X in the upper right corner of the form). I have ...
2
votes
4answers
284 views

Adding many frameworks to a Java application - will it have any negative side effects?

If one adds many framework dependencies to a Java application, will this increase its memory footprint drastically, because it preloads all libraries at startup or is that a more lazy behaviour which ...
1
vote
3answers
61 views

itertools.ifilter Vs. filter

I am trying to become more familiar with the itertools module and have found a function called ifilter. From what I understand, it filters and iterable based on the given function and returns an ...
1
vote
2answers
59 views

Bind to socket using javascript?

Is it possible to bind to a socket with in-browser javascript code? I need to open a local web server when a user visits a page to provide some localhost web publishing.
1
vote
1answer
116 views

Copying files to applications isolated storage in WP7 like in iOS

In iOS, there are plenty of applications that allow a user to copy files to their on-device storage through iTunes, which application will then have access to. This allows the creation of, for ...
1
vote
1answer
25 views

calling different functions based on a string

I have a rather noobish question and am not sure if it's even possible or how say i have the following function defined: a(), b(), c() i want to get a user input from command line (either "a", ...
1
vote
0answers
56 views

Android Apps - Limited Functionality Demo - Pay for full functionality

I've seen many people ask things similar to this, but they seem to settle for answers other than what I'm willing to.... I've written an android app, and I've included some functionality that is ...
1
vote
1answer
32 views

Functionality and operation

I'm trying to do some analysis and when writing down a list of functionalities I realized I'm a bit fuzzy on the notion. What can you consider as functionalities like, say, on this Stackoverflow ...
1
vote
0answers
49 views

How to generate an event while blackberry handset shake?

I am a newbee for Blackberry application development & I am developing one application,that needs to fire some action on Blackberry device shake event? I have searched and tried a lot but haven't ...
1
vote
1answer
99 views

Need custom comments functionality( beyond comment module) in drupal

I've already enabled comments module. For my website i've following requirements: Customers will leave comments about vendor service on Pages Vendor will be provided a login who can reply ...
1
vote
4answers
58 views

What's the most important in the long run… how a site looks, or how it actually functions? [closed]

Was having this debate with a friend recently. If you only really had time to focus on one or the other, would you focus on how your site looked to pull most customers in and hap-hazardly botched ...
1
vote
2answers
125 views

When to use class::function or class->function, is there a preferred method? [closed]

Possible Duplicate: In PHP, whats the difference between :: and -> ? I've been seeing this class::function more in some code examples and thought it was the same as this ...
1
vote
4answers
154 views

How does QA verify that existing product functionality is still working while verifying new product features and functionality?

How does QA verify that existing product functionality is still working while verifying new product features and functionality?
0
votes
0answers
43 views

Matlab Indexing Limitations [closed]

Why does Matlab support neither indexing of function outputs such as f()(1) nor cascade indexing of variables such as x(1)(2) when Octave supports it? I know that Matlab's range and matrix ...
0
votes
1answer
38 views

Silverlight 5 to act as a localhost web server

With Silverlight 5 in-browser application, will I be able to open a listening post on a client machine so my silverlight object acts as a local web server?
0
votes
1answer
75 views

fancybox gallery with voting

i have a fancybox gallery that is working perfectly but when i do a submit for voting instead of processing the form it goes to the next image the fancybox script $(".fancybox-button").fancybox({ ...
0
votes
2answers
37 views

jQuery common functionality in file

I have a C#.NET MVC3 web app and I have some common jQuery functionality across my pages and want to modularize it. I don't know how to do this. Below is an example of the code I'm using. You will ...
0
votes
1answer
34 views

Android API levels functionality

Is it possible to achieve the same effect of any hardware independent functionality from the higher API levels in Android OS using the lowest or one of the lowest levels by default?
0
votes
2answers
171 views

The best way to implement multi-language PHP

First of all - I know that there is alot of answers about multi-language functionality, I didn't found the answer for what I want I thought about 3 ways that I can work with, I need to create the ...
0
votes
2answers
32 views

How to make it so not events can occur while an event is running in DOJO?

is there some way I can disable all events until an event is completed in DOJO? For instance I am fading elements and the user can click the event again and it will not complete the last event. ...
0
votes
0answers
59 views

Brainstorming questions to elicit features in new software version?

Because of a change in technologies, we are doing a major version change in our in-house enterprise software. I am going to be doing the usual of interviews, observations and brainstorming sessions. ...
0
votes
0answers
26 views

PHP specific module to make a Zend Framework route

I'd like to know if there is a extension or module that I have to activate or install for routes to work in Zend Framework. I just have admin and index modules but the admin doesn't work, just index. ...
0
votes
1answer
79 views

Searching Functionality for displaytag

I need some help, I have a table with many rows, for that I have to create a searching funtionality in displaytag, but I don't know how to do this. If someone know the answer, please tell me!!! ...
0
votes
1answer
159 views

fancybox - navigating back and forward

I'm using fancybox's ajax method to open content that itself contains a link that opens another modal in it's place. This all works fine. My question is how can I add a "Back" functionality so that ...
0
votes
1answer
91 views

How to make Ctrl+= behave like Ctrl+w = in Vim?

A lot of times I find myself using Ctrl+w =, which resizes all windows equally. However, when I add nnoremap <C-=> <C-w>= to my .vimrc and restart vim, windows don't resize after pressing ...
0
votes
0answers
34 views

Repetitive testing of html element

We have interesting debate going on in our company about functionality testing related issues. While doing functionality testing of a web application in browsers, we record various steps in HTML ...
0
votes
0answers
17 views

Wordpress or Blog Functionality

I am not that familiar with WordPress. I need something I can setup to use Single Sign On with my existing application (Multiple accounts all with multiple users). I need to host this on one server ...
0
votes
2answers
173 views

Add functionality to wordpress built in gallery

I'd like to continue using the build in wordpress gallery, but I'm just searching for some sort of plugin that would add abit more functionality. I'm looking to exclude images without deleting them, ...
0
votes
1answer
49 views

Testing content versus function

What is the best way to approaching testing content vs. testing functionality? It seems like a complete test suite should fully test all parts of the application's function. But to what extent should ...
0
votes
3answers
129 views

Android Dev (NetBeans) Loses resources and ID's

Hi I am new to android development and using Netbeans IDE with an Android Plugin. Although the code builds successfully I inconsistently end up with forms that either do not display the controls or ...
0
votes
2answers
325 views

back/forward button functionality with jQuery/ajax

I have a page that loads data from a database. Also on this page are buttons to sort the data via date/price/location etc and those sorts are called via $.post This obviously eliminates browser ...
0
votes
2answers
75 views

Using the back button to reverse the effects of AJAX in my web application

I am using ajax to load into an element on my page, but I want this action to be reversed with the back button ... I'd rather the URL change to a real URL like mysite.com/page1 rather than ...
0
votes
1answer
192 views

Adding Custom functionality to jquery slider

I need to create a custom image slider with some functionality that I've never seen before. I'd like to use an existing jquery slider if I could (something like - http://nivo.dev7studios.com/) and ...
0
votes
2answers
59 views

Unsure how to design JavaScript / jQuery functionality which uses XML to create HTML objects

I'm using JavScript and jQuery to read an XML document and subsequently use the information from the XML to create HTML objects. The main 'C' nodes in the XML document all have a type attribute, and ...
0
votes
3answers
256 views

Iterating over consecutive sublists in Python

Does Python offer a way to iterate over all "consecutive sublists" of a given list L - i.e. sublists of L where any two consecutive elements are also consecutive in L - or should I write my own? ...
0
votes
3answers
87 views

search functionality

How can i implement search functionality otherthan sqlquery,joins and conditional querys
0
votes
3answers
46 views

Jquery site questions

im developing a site heavily based on jquery and involving wordpress. is there any way to navigate between pages without reloading the whole thing, other than simple hide/show functions or with ...

1 2