Tagged Questions
The all tag has no wiki summary.
16
votes
3answers
7k views
Xcode + remove all breakpoints
Is there any way to remove all the breakpoints in Xcode?
Regards,
Pratik
7
votes
4answers
734 views
How I can get all reference with Reflection + C#
Using System.Reflection, I can get all methods from a specific class...but I need know what are the refereces to these methods. For examp. In Visual Studio, if you want the references of specific ...
4
votes
3answers
119 views
SQL and ALL operator
Looking for an elegant way to workaround this...
DECLARE @ZIP INT
SET @ZIP = 55555
IF @ZIP = ALL(SELECT ZIP FROM PEOPLE WHERE PERSONTYPE = 1)
PRINT 'All people of type 1 have the same zip!'
ELSE
...
3
votes
2answers
341 views
git add -A is not adding all modified files in directories
i want to add all files no matter what: whether it is deleted, created, modified, untracked, etc? i just dont want to git add ALL my files EVERY TIME. I tried git add -A but it is NOT adding modified ...
3
votes
4answers
253 views
SQL query where ALL records in a join match a condition?
I have what seems to be a simple problem, but can not figure out the proper solution via SQL. I'm using postgresql specifically.
Take the following:
SELECT * FROM users INNER JOIN tags ON ...
3
votes
11answers
495 views
SQL for applying conditions to multiple rows in a join
I think I found the answer to my question, I'm just unsure of the syntax, I keep getting SQL errors.
Basically, I want to do the opposite of IN. Take this example:
SELECT *
FROM users INNER JOIN
...
3
votes
2answers
669 views
automatically animate all hover states with jQuery
On my new site, I have several different hover states for links. One swaps out a background image for the logo. One swaps out a different background image for the main nav. And normal inline links ...
2
votes
3answers
49 views
jQuery - How to find if all matching elements are display:none?
I have a list of divs similar to the simplified code below, which I've set up with a filter via a dropdown (so if you select an option in the drop down, all of the divs that don't match are set to ...
2
votes
3answers
91 views
Python builtin “all” with generators
I have the following problem with python's "all" and generators:
G = (a for a in [0,1])
all(list(G)) # returns False - as I expected
But:
G = (a for a in [0,1])
all(G) # returns True!
...
2
votes
3answers
209 views
DIfference between Select all href attributes and Select all anchor elements with href attributes using xpath with php
Given that in a html document all anchor elements have a href attribute that is set:
What is the difference between the following xpath queries
Case 1:
//@href
Case 2:
//a/@href
Case 3:
...
2
votes
2answers
729 views
Get all possible attributes and all objectClasses from openLDAP in PHP
I have to write LDAP editor in PHP. LDAP is used for store network devices (switch,AP,..). So, it is not normal functionality and I found lot of problems. The biggest problem is:
Is possible to read ...
2
votes
4answers
183 views
how understand one result set is subset of another in twomysql select result set?
Hi
I've 2 mysql select statements, suppose these are my queries & their result :
Statement 1 :
select id from a
which returns this result set : { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }
Statement ...
1
vote
1answer
25 views
JQuery tablesorter custom parser to all headers?
I'm currently working with a tablesorter table in which I need to use a custom parser for each header. I'd like to know if there's an easy way to do this, such as:
table.tablesorter({
...
1
vote
3answers
31 views
jQuery - If ANY Select within a div has a value
Been having lot's of trouble with this one. Let's say I had the following html:
<div id='step_1'>
<select name='select_1' id='choose'>
<option value='select one'>Select ...
1
vote
2answers
61 views
Android SDK - how to stop all mediaplayer at once
I made a soundboard, and the code creates a mediaplayer for every item when clicked.
Here's my code:
public void onListItemClick(ListView parent, View v, int position, long id){
Sound s = (Sound) ...
1
vote
1answer
11 views
NetBeans: execute all unit tests of all projects in 1 go
Unit testing some projects can take some time, and with multiple projects you have to start them one at-a-time sequentially. In NetBeans is it possible to run all unit tests for a single project in ...
1
vote
1answer
62 views
How can i modify this applescript to apply to selected emails rather than selected mailboxes?
tho is my first post - glad to have found this community :)
I'm afraid I have limited applescript knowledge but I discovered a script that will create a new message with recipients based on senders ...
1
vote
1answer
44 views
Unordered list of elements including a choice between 1 element and a sequence of other 3 elements
I have an XML that can be either like this:
<profile>
<docname>Bla bla bla</docname>
<author>Bubi</author>
<doctype>INVOICE</doctype>
</profile>
...
1
vote
1answer
86 views
Common Encryption process for iPhone and Android
hi guys is there any simple way to encrypt and decrypt the images across platforms like decrypting the image in android encrypted in the iPhone and vise-versa.
Thanks in Advance..
1
vote
4answers
112 views
Check if all of the Enum values are not set
Is it possible with a ONE-Liner (else the normal way...) to check if any of all possible enum states are set?
From enum fruits I want to know wether it is unset means no banana, no apple, no melon.
...
1
vote
1answer
121 views
how to make a list of installed apps clickable?
Okay i managed to make a button list all installed applications like this:
public void launcher(View v){
Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
...
1
vote
1answer
97 views
How to join two datasource which return all rows and group by condition?
I have a problem when using LINQ to join two datasource. Two datasource created by a query like :
var A = (from....
group .... into grp
select new
{
Qty = ...
1
vote
3answers
1k views
UITableView delete all rows at once
How is it possible to delete all rows from UITableView at once?
Because when I reload table view with new data, I am still inserting new rows:
- (UITableViewCell *)tableView:(UITableView *)tableView ...
1
vote
3answers
158 views
PHP if/switch concatenated by *
I was wondering if anybody knew if there was a way to concatenate a * (all) to a string inside an if (or switch) statement. For example if you had a URL called /hello/there and /hello/whats-up ... is ...
1
vote
2answers
336 views
SQL: Select * where attribute matches all items in array
Working in a Rails App, I have the following table structure (pertinent columns only)
Photos (id: integer)
Taggings (photo_id: integer, tag_id: integer)
Tags (id: integer, name:string)
I have the ...
1
vote
3answers
120 views
LINQ-All condition Problem
I have a Class :
Public Class Task
{
Public Guid TaskId { get ; set }
Public Guid ParentId { get ; set }
...
}
And Another class :
Public Class ContractDetail
{
Public Guid ...
1
vote
2answers
547 views
mongoid update all documents with conditions
I have a model
class Employee
include Mongoid::Document
field :first_name
field :last_name
field :address1
field :address2
field :salary
end
Now I need to update all Employee's salary ...
1
vote
2answers
248 views
jQuery auto detect and check all for that table colum
I am attempting to make a checkck that once clicked will check all the boxes in that spific column of the table. So say if it was in column 3... when clicked would check all the check boxes that are ...
1
vote
1answer
864 views
I want Search specific value in all columns of all tables in oracle 11g
Is it possible to search every field of every table for a particular value in Oracle.
I want to do it without using any procedure..
Can we do it with query??
1
vote
2answers
125 views
Why “all” is giving me this “Couldn't match expected type”?
m = [[1,0,0],[2,-3,0],[4,5]]
t all@(x:xs) = let (m, n) = (length all, length x) in all (==n) (map length all)
The command:
t m
gives:
Couldn't match expected type `(Int -> Bool) -> [Int] ...
1
vote
1answer
685 views
jquery callback after all images in dom are loaded?
HI, there are some suggestion how to fire an event when all images in DOM are loaded?
I've googlin a lot, i've found this but seems don't work:
jQuery event for images loaded
thank you
1
vote
2answers
124 views
Linq check to see is there any NULLs in a set of DataRows?
I have a set DataRows and i want to check if any of the fields in any of those rows has a NULL value in it. I came up with this below, but I'm not sure because I'm nesting an ALL.
...
1
vote
5answers
158 views
Does Python have a method that returns all the attributes in a module?
I already search for it on Google but I didn't have lucky.
1
vote
4answers
178 views
Cheat sheet documentation django python
Is there any Cheat Sheet or Document where I can see all the build-in modules, functions, commands etc in Django and or Python and where I will get an overview of ALL possible elements I could use. I ...
1
vote
2answers
2k views
Visual Studio 2010 Solution Find all References Not Working
I have a Visual Studio 2010 Solution that was imported from a Visual Studio 2008 solution that the Find all References does not work on. I've tried doing some searches on Google to try and figure ...
1
vote
1answer
632 views
YouTube API Get all videos uploaded feed
I can't seem to retrieve ALL videos from a particular channel on YouTube, despite the API giving example code that should perform just that. I'm using Java.
...
1
vote
1answer
827 views
Can`t uncheck all in Struts Multibox
I have a j2ee application running on weblogic. I was confused with my multibox. WHta I know of multibox is the checked items will be passed as array of strings on submit. I don`t know why in my ...
1
vote
3answers
877 views
MVC Catch All route not working
My first route:
// Should work for /Admin, /Admin/Index, /Admin/listArticles
routes.MapRoute(
"Admin", // Route name
"Admin/{action}", ...
1
vote
1answer
1k views
Get result row count for individual SELECT statements with UNION ALL in MySQL when using LIMIT
I need to get the row count for individual SELECT statements in an UNION ALL SELECT query that uses LIMIT. The MySQL docs are pretty clear about getting the global row count for the query (place ...
0
votes
1answer
48 views
Every .h file in XCode Project is disappeared. What happened to it?
I am programming iPhone applications, so I use Xcode and my Mac book every day.
There has been no problems at all until yesterday but today every .h files in every Xcode projects has disappeared. ...
0
votes
1answer
32 views
Apache2 .htaccess is being ignored
I recently reinstalled Zend Server (which includes Apache2) to a different directory on my machine, and moved my project there. However, I ran into a bit of a problem. Apache appears to be completely ...
0
votes
1answer
36 views
VB.NET : Generate all possible words on file
Example :
If a got word "don" then file will contain
ddd
ddo
ddn
dod
doo
don
dnd
dno
dnn
odd
odo
odn
ood
<...>
I have no idea to do this. Not less then 3 symbol words.
0
votes
1answer
121 views
jQuery validating all tabs on form submit
Currently jQuery validation plugin, validates only selected tab. So to make all the tabs to be validated i introduced ignore attribute
$("form").validate({
....
....
ignore:"ui-tabs-hide"
});
But ...
0
votes
1answer
41 views
How to Implement Application server
I have to implement a client-server architecture where there are many android client located at different places querying the application server (running all the time (24x7)) and which will do task ...
0
votes
1answer
25 views
Select all the column values with CASE in WHERE clause
What I want to achieve is really simple. I have a Select statement where there is a parameter @ageconnected to a DropDownList. The @age parameter is used for the AGE column.
Now this DropDownList has ...
0
votes
3answers
84 views
How to drop all triggers within given DB in Oracle at once?
Colleagues, please advise on how to drop (remove, delete) all triggers within given DB.
Problem is that application requires DB upgrade and does not proceed triggers (suport, drop, create) after ...
0
votes
2answers
45 views
Find all possible variations of a string of letters
Newb programmer here, I'm most familiar with Python but also learning C and Java, so either of 3 would be fine.
What I have is a string of letters, say:
ABXDEYGH
However say,
X is ...
0
votes
0answers
36 views
CakePhp - Array to find conditions
This here is the query that the system does to collection types:
[PHP] CakePHP - Consultation with or without conditions
http://pastebin.com/aBazvz4D
Now I'm trying to do a calculation to play in ...
0
votes
2answers
45 views
javascript: why won't this cause all the forms on a page to reset?
good evening fellow code bashers:
i know it should be simple, but i'm tired and just want to get it done. this is how i thought it should be done, which is identical to how this fellow did it, BUT ...
0
votes
1answer
42 views
How can I set up a query to compare all columns in a table with my text
I want to create a query where I can compare all columns in a table with my text and get the results. Something like this,
$query="SELECT * FROM table_name WHERE `column1` LIKE '%text%', ...