Tagged Questions

Results are the output of a function performed on a body of data.

learn more… | top users | synonyms

11
votes
3answers
28k views

ExtJS grab JSON result

I'm generating JSON response from PHP witch looks like this: { done:'1', options: [{ message:'Example message'},{message:'This is the 2nd example message'}]} I want to grab these results using ...
8
votes
2answers
350 views

Organizing Notebooks & Saving Results in Mathematica

As of now I use 3 Notebook : Functions Where I have all the functions I created and call in the other Notebooks. Transformation Based on the original data, I compute transformations and add ...
8
votes
8answers
285 views

C++ code purity question

I'm working in C++ enviroment and: a) We are forbidden to use exceptions b) It is application/data server code that evaluates lot of requests of different kinds I have simple class encapsulating ...
7
votes
5answers
9k views

Getting Google PageRank via an API (PHP)

I have a list of domains and would like to get the: PageRank for all the domains. So just an integer, there must be an API that returns this. The number of results in Google The position of the word ...
6
votes
3answers
675 views

MD5 file hash for the same unchanged file is different each time C#

Good evening all, I've been working on an MD5 tool in C# that takes a file, goes through my Hasher class and pops the result in a database, along with the filename and directory. The issue I'm ...
6
votes
5answers
17k views

In cakePHP, how to retrieve joined result from multiple tables

can anyone tell me, how to retrieve joined result from multiple tables in cakePHP ( using cakePHP mvc architecture). For example, I have three tables to join (tbl_topics, tbl_items, tbl_votes. Their ...
5
votes
1answer
306 views

How to increase limit of graph in LINQPad?

Results shown in LINQPad are limited. If objects are deep nested, a red line is shown. I would like to increase a limit, so I can see more nested objects. Do you know how to do it? (I have not find ...
4
votes
3answers
489 views

SQL n-to-n matching multiple values

I've got a web application that matches images to tags, and I need to create a way of dynamically refine results for tag search. However, I cannot find a clean way to make that SQL queries, and that's ...
4
votes
1answer
340 views

How can I concatenate set of results in MySQL?

I would like to join results returned in the set in MySQL with a comma as a separator string. For example, set returned contains: COLUMN_X john jerry maria joseph gugla I would like to receive the ...
4
votes
7answers
1k views

What is the best way to paginate results in php

I need to display many pages of news in a site. Should i do the pagination in the db query using limit or do it in my php script after getting all the results?
3
votes
3answers
75 views

What's the best way to identify hidden characters in the result of a query in SQL Server (Query Analyzer)?

When trying to identify erroneous data (often needing manual review and removal), I'd like an easy way of seeing hidden characters, such as TAB, Space, Carriage return and Line feed. Is there a ...
3
votes
2answers
714 views

LINQ stored procedure return value to a string array?

I have a stored procedure in DBML and I try to pass the result to "sqlQryArray" as an array(1 dimensional array). But the bottom code causes error like below message. What else should be done? ...
3
votes
2answers
102 views

how to show sequential results inside textfield

dear all.I want to use only one textfield for different results. what should I do if I want after pressing a few times a checkbox or another checkbox the results will appear sequentially in the ...
3
votes
2answers
1k views

Conditional column for query based on other columns in MySQL

I'm pretty sure I've seen this somewhere, but I can't find the right terminology so I'm having trouble... Let's say I have a table with user info (let's also assume that it was created by someone who ...
3
votes
2answers
141 views

Is there a “result server” that store performance test result, with good analysis tool?

I need a "result server" that can store my raw test data (server cpu, memory usage, etc), create report template (e.g. user number vs response time), generate live-reports base on templates, and ...
3
votes
16answers
770 views

What's the single biggest reason Senior Executives tolerate poorly-performing software development projects and teams?

Many senior executives of businesses that rely on custom software - within their products or underpinning their company's services - seem to tolerate or avoid tackling long standing dysfunctionalities ...
2
votes
4answers
23 views

java math result types

I haven't been able to find these rules on a website, (surely because I'm googling the wrong thing) so I'm asking here. Dividing an int by an int and storing in a double always stores the rounded ...
2
votes
4answers
59 views

SQL Query - Return Text based on numeric value

I am trying to work out a query where the query will perform a count (total) on a specific column. If the count is greater than 0, I want to display YES and display NO if the returned count is zero. ...
2
votes
1answer
46 views

MySQL: Shouldn't this return more rows?

I'm running a simple LIKE search on a table but i can't seem to get more than one result for some reason. In the query example below i include words like "never back down" and "soul surfer" but i only ...
2
votes
3answers
99 views

elif statement returning the “lost” result each time incorrectly. (homework)

I have updated my code with the changes made. I am still getting incorrect results... # Import statements import random # Define main function that will ask for input, generate computer choice, # ...
2
votes
2answers
322 views

Javascript Math.cos and Math.sin are inaccurate. Is there any solution?

Javascript Math trigonomerial methos return wrong results. Try alert(Math.sin(Math.PI)); it doesn't return 0. Maybe problem is with javascript decimal number precision. Is there any workoround ...
2
votes
1answer
382 views

Get total count of tweets from a API search result?

Hello Guy's I'm trying to count all of the tweets from a Twitter search API response, anyone got any ideas? Everything I tried doesn't seem to work, I'm doing everything with jSON so my best guess ...
2
votes
2answers
145 views

What is the efficient way to save the result in Matlab if I have to stop the iteration for some reason?

I am trying to minimize my objective function by running iterations and it could take a long time (may be a day or more). If for some reason I have to stop the program or it gets hung, what is the ...
2
votes
3answers
367 views

In PHP, how to display array contents in a table

If I do a select in the mysql client, I'll have an output that will looks like: mysql> select * FROM `group` LIMIT 2; +----------+---------------------+-----------------+-------------+ | group_id ...
2
votes
3answers
70 views

Sorting/ordering problem in MySQL

I'm having a little problem with trying to sort the contents of a table programs by the column prog_id which holds the id of each program in the following format: prog_id 1.0.1, 1.0.2, 1.0.3, ..., ...
2
votes
1answer
225 views

Creating a Custom Button in a ListView in ASP.NET

I have a Results.aspx page that displays the resulting records queried using a SqlDataSource object via a ListView. I want to add a "View" button that will appear next to each record, and when clicked ...
2
votes
1answer
275 views

Can I make Lucene return an unlimited number of search results?

I am using Lucene 3.0.1 in a Java 5 environment. I've been researching this issue a little bit, but the documentation hasn't given any direct answers. Using the search method TopFieldDocs ...
2
votes
1answer
140 views

How do to “Showing 1-10 of 728 results”

I'm wondering on how to output "Showing 1-10 of 728 results" in PHP. Say I have the total rows count, the items per page and the offset, what would be the best way to output that phrase? How would I ...
2
votes
5answers
338 views

Can i request SQL Server to cache a certain result set?

There is a certain query that is being called from an ASP .NET page. I studied the execution plan of that query in Management Studio and 87% is for a sort. I badly need the sorting or else the data ...
2
votes
3answers
106 views

Return 1 result per left join

Currently I am performing a left join on two tables. The first table has an id and a persons name, the second table has an id, the id of a person from table 1, and then a timestamp (of the last flight ...
2
votes
1answer
496 views

Cache results of a mysql query manually to a txt file

Is there a way to cache results of a mysql query manually to a txt file? Ex: $a=1; $b=9; $c=0; $cache_filename = 'cached_results/'.md5("$a,$b,$c").'.txt'; if(!file_exists($cache_filename)){ ...
2
votes
2answers
2k views

how do you get “real” sql distinct with hibernate criteria queries?

I have a Hibernate criteria query that is incorrectly pulling out max results. In many cases, when I specify 20 max results, the query actually only returns 1 or 5 results, because the restrictions ...
2
votes
1answer
927 views

ForEach loop: Output something different on every second result

I have two for each loops and I am trying to output something different for each second result: foreach ($wppost as $wp) { $wp_title = $wp->post_title; $wp_date = ...
2
votes
2answers
38 views

What is the easiest way to find a sql query returns a result or not?

Consider the following sql server query , DECLARE @Table TABLE( Wages FLOAT ) INSERT INTO @Table SELECT 20000 INSERT INTO @Table SELECT 15000 INSERT INTO @Table SELECT 10000 INSERT INTO ...
2
votes
2answers
126 views

UISearchDiplayController: show all results without entering text?

I have a UISearchDisplayController that is being used to display a long list of options for the user to pick. I filter the list using the search bar supplied by the controller. It all works ok, ...
1
vote
1answer
54 views

In VBA after automated xml form post, how can I automate interaction with the response?

I am using xml in VBA. The code below adds an item to a shopping cart on a remote website (posts a form). Then the code displays the result in Internet Explorer. You can see in the response there ...
1
vote
4answers
42 views

Using jquery to search and return results on a page

Currently I have alot of information that are in several different divs. I want to be able to search this information (that is all on the same page) and print the results in a div, without having to ...
1
vote
1answer
106 views

How to enable the “results” attribute in <input type=“search”>?

I'm trying to make use of the results attribute of HTML5 <input type="search"> tags on Chrome, which should make for a "recent searches" funcionality. I cannot manage to make Chrome show a list ...
1
vote
3answers
81 views

How to determine the kind of mistake in a list in Prolog?

I am reaching a deadline at one of my projects and I am kind of stuck so I will need your help. The homework is all about making a spell checker in Prolog which will use an input of lists with letters ...
1
vote
1answer
56 views

Json string results number counting with JavaScript

I got this json string { "ResultSet": { "version": "1.0", "Error": 0, "ErrorMessage": "No error", "Locale": "us_US", "Quality": 40, "Found": 2, ...
1
vote
4answers
70 views

mysql_result(): supplied argument is not a valid MySQL result resource error?

Creating a login system for something and am getting: Warning: mysql_result(): supplied argument is not a valid MySQL result resource in .../func/user.func.php on line 21 Here is my code: ...
1
vote
1answer
76 views

mysql next and previous

I currently am using mysql and php to display 9 random results from my table of about 1100 records. Would it be possible to have a next and previous button even though it's random? I looked at a ...
1
vote
2answers
91 views

Jquery autocomplete - custom html for result listing

I am referring to this plugin: http://jqueryui.com/demos/autocomplete/ So the original structure for the results is <ul class="ui-autocomplete ui-menu ui-widget ui-widget-content ...
1
vote
1answer
38 views

Get count of all results with LIMIT in the query

SELECT `p`.`name`, `f`.* FROM `players` `p`, `folks` `f` WHERE `p`.`id` = `f`.`guid` AND `f`.`deleted` = 0 AND `first` = {$id} AND `text` LIKE ? LIMIT ...
1
vote
2answers
30 views

MySQL - Check for match in other column?

I am trying to fabricate an SQL query that will provide these results: | Category Title | Subcategory Of | ----------------------------------- | Category 1 | | | Category ...
1
vote
0answers
104 views

Get filtered result from BindingSource to table/dataset?

Im using a BindingSource connected to a DataGridView to filter the data shown... I would like to know what is the best way to get the filtered result to some other thing than a GridView? I ask this ...
1
vote
3answers
289 views

How to: jQuery Autocomplete display results containing search keywords

I am trying to implement something like google instant seach that displays possible searches as you type in the text box. So far I got the results as json string and jquery autocomplete display them ...
1
vote
1answer
260 views

Android: Improve app search results ranking

I recently co-authored and published a simple app to test the Android waters and get used to deving for android: https://market.android.com/details?id=com.parp&feature=search_result The name of ...
1
vote
5answers
53 views

WHERE x LIKE'%$find%' - What if $find = 2 seperate values?

I am creating a search feature for a products catalog. Here is the input code so far: <form name="search" method="post" action="'.$PHP_SELF.'"> <div> Search for: <input ...
1
vote
1answer
133 views

FitNesse Upgrade to .Net 4.0 with Fitsharp: Real time Results Display

I have a question concerning a difference I noticed between FiNesse and the newer version of FitNesse (with Fitsharp) to work with .Net 4.0. When running tests with the older version of FitNesse the ...

1 2 3 4 5