Unnamed: 0
int64 65
6.03M
| Id
int64 66
6.03M
| Title
stringlengths 10
191
| input
stringlengths 23
4.18k
| output
stringclasses 10
values | Tag_Number
stringclasses 10
values |
---|---|---|---|---|---|
422,181 | 422,182 | create CSV file in c#net Window application | <p>create CSV file in c#net Window application at button click event</p>
| c# | [0] |
3,523,088 | 3,523,089 | ASP.Net Add Control "Cannot get inner content of [control] because the contents are not literal." | <p>I am currently trying to dynamically add HTML controls in my web form, but each time I insert a control in another control the error <code>Cannot get inner content of [control] because the contents are not literal</code> pops up(when trying to look at innerHtml or innerText) and cannot seem to find the reason why.</p>
<p>Here is the code that I am using:</p>
<pre><code>Dim newsList As New HtmlControls.HtmlGenericControl
newsList.TagName = "ul"
Dim i As Integer = 0
For Each newsDR As DataRow In newDS.Tables(0).Rows
i += 1
Dim stri As String = i.ToString()
Dim newsListItem As New HtmlControls.HtmlGenericControl
newsListItem.TagName = "li"
newsListItem.ID = "newsListItem" + stri
Dim newsTitle As New HtmlControls.HtmlGenericControl
newsTitle.TagName = "h1"
newsTitle.ID = "newsTitle" + stri
Dim newsAnchor As New HtmlControls.HtmlAnchor
newsAnchor.ID = "newsAnchor" + stri
newsAnchor.InnerHtml = newsDR("NewsTitle")
newsAnchor.HRef = "#"
newsTitle.Controls.Add(newsAnchor)
Dim newsSummary As New HtmlControls.HtmlGenericControl
newsSummary.TagName = "div"
newsSummary.ID = "newsSummary" + stri
newsSummary.InnerHtml = newsDR("NewsSummary")
newsListItem.Controls.Add(newsTitle)
newsListItem.Controls.Add(newsSummary)
newsList.Controls.Add(newsListItem)
Next
</code></pre>
| asp.net | [9] |
454,069 | 454,070 | Why the output getting differed in hexadecimal integer to character conversion? | <p>Why the output varies in both of the following codes since i am applying the same explicit type conversion.</p>
<pre><code> int hex = (char)0xA;
System.out.println(hex);
int hex = 0xA;
System.out.println((char)hex);
</code></pre>
| java | [1] |
445,151 | 445,152 | Underlying type in an empty Observable Collection | <p>How to get the underlying type of an Observable collection using reflection?</p>
<p>Consider following classes:</p>
<pre><code>public class Order
{
public int OrderID { get; set; }
public string OrderDetails { get; set; }
}
public class Orders : ObservableCollection<Order>
{
}
</code></pre>
<p>Any Ideas?</p>
| c# | [0] |
3,763,570 | 3,763,571 | How to avoid typing <pre> when viewing arrays... any ideas? | <p>I often have the need to view data in arrays and use the html tag <code><pre></code> to do this. However, it becomes tedious and frustrating having to type the same thing out all the time.</p>
<p>My question, what is your technique for avoiding this annoyance of programming with PHP?</p>
| php | [2] |
389,623 | 389,624 | Why two for statements will not run together in python? | <p>I am trying to run a Python program to calculate the total and average charges that are contained within a CSV file. </p>
<p>I then want to calculate the total and average charge per invoice. The program calculates the total charges and average charges correctly, but the second for statement will not run. Both for statement run independently correctly.</p>
<pre><code>import csv
f = open("transport.csv", "r")
reader = csv.DictReader(f)
charges_per_inv = dict()
inv_reader = csv.DictReader(f)
inv_dict = dict()
counter = 0
inv_counter = 1
for row in reader:
batch_num = row['Batch#']
if batch_num not in charges_per_inv:
charges_per_inv [batch_num] = 0.0
charges_per_inv [batch_num] += float(row['Amount'])
counter = counter + 1
#print charges_per_inv #Just a check
dvalue = [(v) for v in charges_per_inv.values()]
#print dvalue
total = sum(dvalue)
average = float(total)/ counter
#print counter #Just a check
print "The total charges is, ", total
print "The average charge is, ", average
a = raw_input("Enter Invoice#: ")
for i in inv_reader:
inv_num1 = i["Invoice#"]
if inv_num1 == a:
if inv_num1 not in inv_dict:
inv_dict[inv_num1] = 0.0
inv_dict[inv_num1] += float(i['Amount'])
inv_counter = inv_counter + 1
print inv_dict #Just a check
inv_amount = [(v) for v in inv_dict.values()]
#print inv_amount
inv_total = sum(inv_amount)
inv_average = float(inv_total)/ inv_counter
#print inv_counter #Just a check
print "The total charges is, ", inv_total
print "The average charge is, ", inv_average
</code></pre>
<p>Here is the output for the program.</p>
<pre><code>The total charges is, 9069.87
The average charge is, 72.55896
Enter Invoice#: 617537
The total charges is, 0
The average charge is, 0.0
</code></pre>
| python | [7] |
276,978 | 276,979 | Submit form with jQuery modal dialog | <p>As per our project requirement we have developed the jQuery dialog and added 3 buttons </p>
<p>YES , NO and CANCEL</p>
<p>On Yes Button we required to submit the form
but the form is not submitted
Nothing Happen to YES and NO</p>
<p>code is as below</p>
<pre><code> $("#dialog-NurseTeam").dialog({
autoOpen: false,
width: 430,
resizable: false,
title: 'Confirmation',
modal: true,
buttons:[ {
"text": "Yes",
"click": function () {
debugger;
document.getElementById("IsNurseTeamChanged").checked=true;
document.getElementById("hdnCancelChecked").value="Yes";
$(this).dialog("close");
$form = $('#PatientNewVisitForm');
$form.submit();
}
},
{
"text": "No",
"click": function () {
document.getElementById("IsNurseTeamChanged").checked=false;
document.getElementById("hdnCancelChecked").value="No";
$(this).dialog("close");
}
},
{
"text": "Cancel",
"click": function () {
document.getElementById("IsNurseTeamChanged").checked=false;
document.getElementById("hdnCancelChecked").value="Cancel";
$(this).dialog("close");
} }]
});
</code></pre>
<p>Please help me out to resolve this problem</p>
| jquery | [5] |
5,997,789 | 5,997,790 | Should I use several activities for an app with several screens? | <p>I'm new to Android and I'm building a simple application to start with. It consists of a client with three screens. In the first screen the user is prompted for an Ip to connect to a server (I use an EditText and a button). If the connection is successfully established, some data will be retrieved from the server and the client will show the data on a blank screen (I use a TextView). This would be the second screen. Then, the user could ask the server for detailed information about any data that has been retrieved from the server, which would be the third screen (I use a TextView again).</p>
<p>The problem is that I don't know what's the best way to go about it. I have currently one activity and one XML file containing all the components of the view (EditText, button, TextView). Until now, I've been using <code>setVisibility(View.GONE);</code>to hide certain components depending on the screen the user is in. (For example in the first screen I have to hide both TextViews).</p>
<p>One of the problems I'm facing is that when I put the phone in a horizontal position the components I had hidden show up again. I don't know if hiding views is the ideal thing to do for my purpose. </p>
<p>I've thought that maybe I should use more than one activity, shouldn't I?</p>
<p>I really appreciate any help you can give me to structure my first app.</p>
| android | [4] |
873,407 | 873,408 | Android app that needs to use non-memory SD card | <p>I'm contemplating making an android version of my iPhone app. One of the attractions is the availability of a micro/miniSD card from Spectec that has an Ant+ radio in it, to communicate with Ant+ protocol devices. </p>
<p>The technical feasibility of this is not my question; but rather its practicality:</p>
<p>This obviously involves taking out the SD memory card in the handset and replacing it with one with no on-board memory, leaving the device with only the builtin 256mb or whatever. this is plenty for my app, but I'm concerned that, aside from annoying the user by having all their music removed, there will be apps on the users device that save data to the SD and will be broken by removing the SD memory. </p>
<p>Can anyone give an opinion on this issue?</p>
<p>TIA</p>
| android | [4] |
2,427,400 | 2,427,401 | Shouldn't this Python function return 6 all the time? | <p>I am new to Python and learning about functions. I came across the following function and at my wits end understanding how it works. It seems to me no matter the value of <code>b</code>, the answer should always be six but that isn't the case.</p>
<p><em><strong>CODE</em></strong></p>
<pre><code>def mult(a, b):
if b == 0:
return 0
rest = mult(a, b - 1)
value = a + rest
return value
print "3 * 2 = ", mult(3, 2)
</code></pre>
<p>My understanding of what happens</p>
<ol>
<li>Since <code>b</code> is not 0 it proceeds</li>
<li><code>rest</code> is assigned the value <code>3, 1</code> and it runs the function again</li>
<li>Since <code>b</code> is 1 and does to equate to 0, it proceeds to <code>rest</code></li>
<li><code>rest</code> is assigned the value <code>3, 0</code> and it runs the function again</li>
<li>Since <code>b</code> is now zero it returns the value 0</li>
<li>It then proceeds to <code>value</code> which has the value 3 + 3 as <code>a</code> had the value of 3 and <code>rest</code> had the value of 3 i.e. <code>(3,0)</code></li>
<li>It returns the value 6</li>
</ol>
<p><strong>But</strong> if I assign <code>mult(3,4)</code>, it returns the value 12. Following my understanding, that isn't possible. Clearly, I am not understanding the logic flow. What am I doing wrong?</p>
| python | [7] |
4,288,870 | 4,288,871 | Android HTTPS streaming with 2.3.3 | <p>I was having an issue with a Video File hosted on a Amazon s3 server. I create a pre-signed URL and feed that URL to a video view. On ICS and above the VideoView plays the file, but in android 2.3.3 it fails to play the file. I remove the 's' from the https pre-signed url and now the videoview can play the file ? Whats going on here? Any ideas ? </p>
<p>Kind Regards, </p>
| android | [4] |
4,287 | 4,288 | Using lower_bound() and upper_bound() to select records | <p>I have a map of objects, keyed by a date (stored as a double). I want to filter/extract the objects based on date, so I wrote a function similar to the snippet below.</p>
<p>However, I found that if I provide a date that is either lower than the earliest date, or greater than the last date, the code fails. I have modified the code so that any input startdate that is lower than the first date is set to the first (i.e. lowest) date in the map, likewise, enddate > last date is set to the last (greatest) date in the map</p>
<pre><code>void extractDataRecords(const DatedRecordset& recs, OutStruct& out, const double startdt, const double enddt)
{
double first = recs.begin()->first, last = recs.rbegin()->first;
const double sdate = (start < first) ? first : startdt;
const double edate = (enddt > last) ? last : enddt;
DatedRecordsetConstIter start_iter = recs.lower_bound(sdate), end_iter = recs.upper_bound(edate);
if ((start_iter != recs.end()) && (end_iter != recs.end()))
{
// do Something
}
}
</code></pre>
<p>Is this the correct way to achieve this behaviour?</p>
| c++ | [6] |
765,109 | 765,110 | A set of radio buttons are displayed first, and then the stars later appear | <p>I am using JQuery with the Star Rating Plugin from the following site <a href="http://www.fyneworks.com/jquery/star-rating/#" rel="nofollow">http://www.fyneworks.com/jquery/star-rating/#</a> . The page loading A set of radio buttons are displayed first, and then the stars later appear. I would like to just display the stars, instead of having the radio
buttons flickering for a moment, is it possible?</p>
| jquery | [5] |
1,760,163 | 1,760,164 | How to store a list of numbers generated as output in Python? | <p>Suppose I want to add several numbers together like:
1. Find even numbers between 1-100.
2. Find odd numbers between 2-200.
3. Add them.</p>
<p>So for this, I can check for even numbers and odd numbers respectively, but to add them, they must be stored somewhere. Now how can I do this?</p>
<p>i.e. store the output of the first step, store the output of second step and then add them together.</p>
| python | [7] |
5,814,599 | 5,814,600 | Dynamically change the URL passed to the YouTube player | <p>Dynamically change the URL passed to the YouTube player</p>
<p>YouTube’s player is great but how can we call this object multiple times in our script and pass a new URL to it each time?</p>
<p>For instance, a single copy of the object would sit in our script either hidden or in a container like so:</p>
<pre><code> <div Style="Position:Absolute; Left:430px; Top:30px;";>
<object width="350" height="25">
<embed src="http://www.youtube.com/v/stCKjZniMsQ?autohide=2&autoplay=0&border=0&cc_load_policy=0&controls=2&fs=0&hd=1&iv_load_policy=3&loop=0&modestbranding=1&rel=1&showinfo=1&showsearch=1"
type="application/x-shockwave-flash" width="350" height="25">
</embed></object></div>
</code></pre>
<p>...and then whenever we call it in our script with a nifty function like this it’ll fire up playing the video:</p>
<p>Function CallYouTube(URL) { }</p>
<p>Thanks for your input.</p>
| javascript | [3] |
5,776,370 | 5,776,371 | Cannot find symbol Date | <p>I'm getting an error "cannot find symbol method add(java.util.Date)", although what I'm passing it was declared a Date. What am I missing?</p>
<pre><code>import java.util.*;
import java.text.SimpleDateFormat;
import java.text.*;
class Entry {
Date date;
Entry(Date aDate) {
date = aDate;
}
}
public class td {
public static void main(String[] args) {
List<Entry> entries = new ArrayList<Entry>();
DateFormat df = new SimpleDateFormat("yyyy-MM-dd");
Date aDate = df.parse("2011-02-27"); // Date aDate = new Date() also fails
entries.add(aDate);
System.out.println(entries.get(0));
}
}
</code></pre>
| java | [1] |
4,123,298 | 4,123,299 | Run codes for only 60 times each second | <p>I'm creating a directx application that relies on the system time (because it must be accurate),
and I need to run lines of code for 60 times each second in the background (in a thread created by boost::thread). that's equal to 60 FPS (frame per second), but without depending on the main application frame rate.</p>
<pre><code>//.................
void frameThread()
{
// I want to run codes inside this loop for *exactly* 60 times in a second.
// In other words, every 16.67 (1000/60) milliseconds
for(;;)
{
DoWork();
//.........
}
}
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd)
{
initialize();
//.....stuffs
boost::thread framethread(frameThread);
//......
}
</code></pre>
<p>Is there a way to do this?</p>
<p>Any kind of help would be appreciated :)</p>
| c++ | [6] |
4,585,423 | 4,585,424 | Add link to image with <a href /> already set? | <p>I am new to all this and stuck on the following;</p>
<p>I have a banner slider on the home page set as follows;</p>
<pre><code><li><a class="thumb" href="img/index1.jpg" ><img src="img/sliderImg1.jpg" /></a></li>
<li><a class="thumb" href="img/index2.jpg" ><img src="img/sliderImg2.jpg" /> </a></li>
<li><a class="thumb" href="img/index3.jpg" ><img src="img/sliderImg3.jpg" /></a></li>
</code></pre>
<p>I want visitors to be able to click on the href="img...." and be directed to a specific page.</p>
<p>I can't work out how this is possible, any assistance would be much appreciated.</p>
| javascript | [3] |
4,623,713 | 4,623,714 | Servlet on startup that triggers an event after regular interval of time using timer class? | <p>I have a servlet that starts on start of tomcat. I need a functionality in that servlet that triggers the event after a regular interval of time i.e 1 hour and
runs in the back ground? Here is my code :-</p>
<p>in main method </p>
<pre><code>MyTask contentTask = new MyTask();
long interval = 60 * 60 * 1000;
Timer timer = new Timer();
timer.schedule(contentTask, new Date(), interval);//line 1
System.out.println("line2");//line2
</code></pre>
<p>MyTask</p>
<pre><code>public class MyTask extends TimerTask {
@Override
public void run() {
System.out.println("Inside my task");
}
}
</code></pre>
<p>i am expecting as soon control comes to line 2 , run method gets executed and then it keeps on execting the task after ever 60 minutes like background thread does. But
control does not come to run method after line 2. <strong>I am not sure what i am missing here and why run method is not getting executed?</strong></p>
<p><strong>Edit:- I think problem is with interval value if i make it one minute i.e 1 * 60 * 1000; contol comes to run method . Looks like even the first time task will be executed after specified time interval i.e 60 minutes but i want to execute the task immediately as soon as it executes the line 1 and then repeat it after 60 minutes How to go for this?</strong> </p>
| java | [1] |
987,904 | 987,905 | Parse html from loadHTML, how to loop through cols? | <p>I'm trying to parse HTML from loadHTML but I'm having trouble, I managed to loop through all <code><tr></code>s in the document but I don't know how to loop through the <code><td></code> s on each row.</p>
<p>This is what I did so far:</p>
<pre><code>$DOM->loadHTML($url);
$rows= $DOM->getElementsByTagName('tr');
for ($i = 0; $i < $rows->length; $i++) { // loop through rows
// loop through columns
...
}
</code></pre>
<p>How can I get loop through the columns in each row?</p>
| php | [2] |
4,153,996 | 4,153,997 | Calling Python function from within function | <p>I am attempting to call two_byte_proc(payload,offset) from within process() but it does not write to the output file out_buf. The output from offset or payload may contain None so those iterations should be skipped and restart the process function with the next packet.</p>
<pre><code>def process():
pkts = sniff(offline="infile.pcap",filter="tcp")
out_buf = open("outfile.bin","wb")
for pkt in pkts:
offset = hexdump(str(pkt.payload)[:2])
payload = hexdump(pkt.payload)
if offset or payload is None:
pass
else:
out_buf.write(two_byte_proc(payload,offset))
process()
</code></pre>
| python | [7] |
1,795,305 | 1,795,306 | can i disable output escape in javascript? | <p>I realise that the title of this question may be inaccurate but I was wondering how I can use something like in XSLT to clean up characters in Javascript. For example I have a JSON which I use to extract certain information, one of which is a hotel name. The problem is the hotels that have an apostrophe in their names eg george's hotel. When i display this in Chrome or Firefox it works fine however in IE8 it gives me <code>george&apos;s</code>. </p>
<p>My code is:</p>
<pre><code>var hotel_title = j.data.hotels[i].title
</code></pre>
<p>Ive tried: </p>
<pre><code>var zz = escape(hotel_title);
</code></pre>
<p>any help would be appreciated.</p>
| javascript | [3] |
1,493,718 | 1,493,719 | Integer is String - how can that be? | <p>Something terribly wrong is happening.</p>
<p>I have </p>
<pre><code>ArrayList<Integer> activitiesToDelete;
</code></pre>
<p>I need to prepare array of objects to pass to Spring jdbcTemplate. However for some reason element in ArrayList is treated as String, so breaks at the point of execution of jdbcTemplate, complaining that it can't convert from String to int. Then I tried to convert within the loop to see if that would help :-\ And I obviously can't do Integer.parseInt as IDE treats it correctly as Integer. Whenever I assign Integer a = activitiesToDelete.get(i); It gives me:</p>
<pre><code>java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Integer
</code></pre>
<p>Same for int a = ...
How can that be?</p>
<pre><code> Object [] objectList = new Object [activitiesToDelete.size()];
for (int i = 0; i < activitiesToDelete.size(); i++) {
Integer a = activitiesToDelete.get(i);
logger.info(String.valueOf(activitiesToDelete.get(i)));
objectList[i] = activitiesToDelete.get(i).intValue();
}
jdbcTemplate.update(sql, objectList);
</code></pre>
<p>What am I missing in here?</p>
<p><strong>UPDATE: Culprit line</strong></p>
<pre><code> @RequestMapping(value="/activities/delete", method = RequestMethod.POST) public String deleteActivities(@RequestParam("activityId") ArrayList <Integer> activitiesToDelete)
</code></pre>
<p><strong>This is a snippet related to Spring MVC where it gets populated from form, it seems that Spring can't add proper types to the ArrayList.</strong></p>
<p>Anyone wondering, either use int[] or HttpServlet methods(extra code though).</p>
| java | [1] |
2,554,568 | 2,554,569 | catching std::exception | <p>I have a silly question. I read this article about std::exception <a href="http://www.cplusplus.com/doc/tutorial/exceptions/" rel="nofollow">http://www.cplusplus.com/doc/tutorial/exceptions/</a></p>
<p>On catch (exception& e), it says:</p>
<blockquote>
<p>We have placed a handler that catches exception objects by reference (notice the ampersand & after the type), therefore this catches also classes derived from exception, like our myex object of class myexception.</p>
</blockquote>
<p>Does this mean that by using "&" you can also catch exception of the parent class? I thought & is predefined in std::exception because it's better to pass e (std::exception) as reference than object.</p>
| c++ | [6] |
1,816,283 | 1,816,284 | javascript multidimensional Array and associative array | <p>i am new of javascript, i have been told by someone, he said "speak strictly, javascript doesn't have multidimensional Array and associative array ". but in a book, i saw the following </p>
<pre><code>var my_cars=Array();
my_cars["cool"]="Mustang";
$a=Array(Array(0,1),2);
</code></pre>
<p>so the opinion form he is wrong? am i right?</p>
| javascript | [3] |
327,239 | 327,240 | Valid Characters for JavaScript Variable Names | <p>Just wondering if anyone can point me to a webpage detailing the valid characters that can be used for naming a JavaScript variable. </p>
<p>I want to create a small 'extension library' for my non-javascript users here at work (who all seem to be squeamish when it comes to the language). I love how jQuery and Prototype have both used the '$' dollar sign, and since I use jQuery, I'm looking for another nice one character symbol to use. </p>
<p>I realize that I could just test out a number of characters, but I'm posing this question to the JavaScript Sensi's of the world to give me advice about what characters (even if valid) would be a bad idea to use (perhaps for future integration with another popular library).</p>
| javascript | [3] |
1,411,890 | 1,411,891 | Help display image in single post using javascript zoom image..? | <p>Can someone helping me implement single post image with Javascript features with image zoom such i found here : <a href="http://www.housetohome.co.uk/galleries/bedroom/adult/Relaxed_country_bedroom_31391.html" rel="nofollow">http://www.housetohome.co.uk/galleries/bedroom/adult/Relaxed_country_bedroom_31391.html</a></p>
<p>Thanks</p>
<p>max</p>
| javascript | [3] |
5,212,336 | 5,212,337 | Letting a third party app start my activity directly? | <p>I'm working on an activity which other 3rd parties want to use in their own apps, via intents.</p>
<p>Right now this activity is catching urls via an intent filter, like this:</p>
<pre><code><activity android:name=".MyActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:host="www.mysite.com" android:pathPrefix="/test/" android:scheme="http"></data>
</intent-filter>
</activity>
</code></pre>
<p>The above works, whenever a user clicks a link in my app like:</p>
<p>"mysite.com/test/blah.html"</p>
<p>my app comes up as a choice, along with the browser, to open the link.</p>
<p>Now if a third party wants to use my app, I think they can use the above like this:</p>
<pre><code>Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://mysite.com/test/somedata"));
startActivity(intent);
</code></pre>
<p>While this would work, this probably won't give them the desired effect of jumping directly to my activity from theirs - the android chooser dialog will appear, asking if they want to open the intent data with the browser, or my app.</p>
<p>How can I let 3rd parties call my activity directly without broadcasting the intent like this? I'd like to make them still pass the same exact data scheme to me, but just let them open my activity directly.</p>
<p>Thank you</p>
| android | [4] |
2,783,211 | 2,783,212 | Garbage collector and finalize() method | <p>You people may think that within 15-20 minutes i have asked 4-5 questions on the same topic, so I may need a tutorial on this. But i am getting these questions by reading about GC.</p>
<p>So my question is GC will call a finalize() method on an instance only once of its life cycle even though if the same object is made uneligible to garbage collect in its finalize() method. So i wanted to know that how GC will come to know that it has executed its finalize() method once before while collecting it for the second time</p>
| java | [1] |
5,258,737 | 5,258,738 | Is PHP suitable for downloading large amounts of data? | <p>Is PHP suitable for downloading large amounts of data, usually via cron? Should I worry about the memory footprint when I am using PHP for downloading multiple zip files?</p>
| php | [2] |
3,108,226 | 3,108,227 | How to convert .NET dll to unsigned char array to use it from c++ | <p>I have .net dll, i want to convert its content to char array,
result will be like this</p>
<pre><code>int Length=10;
unsigned char MyArray[Length] =
{
0x4D, 0x5A, 0x90, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00
};
</code></pre>
<p>for dll this Length may be for example 300000. Do You know any software or other way to do this?</p>
| c++ | [6] |
4,070,041 | 4,070,042 | JavaScript Prompt - Is it ok to use? Or does it act strange in some browsers? | <p>I'm interested in using a JavaScript Prompt to have the user enter data. Any concerns on using JS prompt? Will any browsers freak out?</p>
| javascript | [3] |
2,768,795 | 2,768,796 | Viewing the String Value of a Toast and changing it | <pre><code><string name="next_toast">Correct</string>
</code></pre>
<p>I want the value to change to a variable </p>
<p>for example</p>
<pre><code>next_toast = getNextQuestion();
</code></pre>
<p>How do I accomplish this</p>
| android | [4] |
191,292 | 191,293 | Can't launch app from URI | <p>I have already looked at most questions with similar topic and got how intent-filters work, but I cannot make android to launch my app. Here is the relevant part of manifest:</p>
<pre><code> <activity
android:name=".UriHandler" >
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="myapp" />
</intent-filter>
</activity>
</code></pre>
<p>I try clicking the following link from the default browser:</p>
<pre><code><a href="myapp://param1/param2/param3">Test</a>
</code></pre>
<p>Instead of starting my app it just tries to load the URI as an address. What am i missing?</p>
<p><strong>Update:</strong> To make it work you need to add</p>
<pre><code><category android:name="android.intent.category.BROWSABLE" />
</code></pre>
<p>to the intent, also ignore Lint and do not add </p>
<pre><code>android:exported="false"
</code></pre>
<p>in my case it crushed Browser.</p>
| android | [4] |
1,457,497 | 1,457,498 | virtual memory is increased a lot in my application | <p>I am running my application
when i run the <strong>TOP</strong> command it is showing too much virtual memory</p>
<p>Thu Oct 4 18:11:01 IST 2012
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
31248 root 18 0 28.1g 73m 1772 S 12.8 7.3 14:53.12 commandserver </p>
<p>ThreadCount
4
VIRT--->virtual memory 28.1 GB it is very big
how can i free that memory???
If the application runs much more time will it lead to "Out of Memory Exception?"</p>
<p>help me</p>
| c++ | [6] |
5,169,411 | 5,169,412 | Ensure method A is called after every call of B (an abstract implemented method)? | <p>Having this tasteful class </p>
<pre><code> public abstract class CakeSkill
{
//..
boolean cherry=false;
private void finalMandatoryTouch()
{
cherry=true;
}
abstract public void cook();
}
</code></pre>
<p>A class that extends it would be something like</p>
<pre><code> class Cheff extends CakeSkill
{
//..
void cook()
{
//..Secret recipe
}
}
</code></pre>
<p>But of course this won't work, </p>
<p><em>finalMandaroryTouch()</em> hasn't been called, then <strong>no cake will end with a cherry..</strong></p>
<p><strong>[EDIT]</strong></p>
<p>This one <em>could</em> be a solution </p>
<pre><code> class MemoriousCheff extends CakeSkill
{
//..
void cook()
{
//..Secret recipe
finalMandatoryTouch();
}
}
</code></pre>
<p><em>but</em> requires :</p>
<ul>
<li>Cheff to have a perfect memory that don't forget to call finalMandatoryTouch()</li>
<li>Making finalMandatoryTouch() to be <em>protected</em> (at least)</li>
</ul>
<p><strong>[/EDIT]</strong></p>
<p>It would be great! (but no Java) if something like this could be done</p>
<pre><code> abstract public void cook()
{
@implementedMethod
finalMandatoryTouch();
}
</code></pre>
<p>How can be implemented this useful functionality ?</p>
<p>Thank you very much</p>
| java | [1] |
5,748,091 | 5,748,092 | Python, beyond the basics | <p>I've gotten to grips with the basics of Python and I've got a small holiday which I want to use some of to learn a little more Python. The problem is that I have no idea what to learn or where to start. I'm primarily web development but in this case I don't know how much difference it will make.</p>
| python | [7] |
1,495,951 | 1,495,952 | Pagination in a rdlc report | <p>How can I set the pagination or the number of items being displayed in a single page? Suppose there are 1000 items and at each page I want to show 100 and use a next button to navigate to the next page . How can I be able to do that, Please discuss it in c# context .
Thank You.</p>
| c# | [0] |
81,858 | 81,859 | Why Do try ... catch Blocks Require Braces? | <p>While in other statements like if ... else you can avoid braces if there is only one instruction in a block, you cannot do that with try ... catch blocks: the compiler doesn't buy it. For instance:</p>
<pre><code>try
do_something_risky();
catch (...)
std::cerr << "Blast!" << std::endl;
</code></pre>
<p>With the code above, g++ simply says it expects a '{' before do_something_risky(). Why this difference of behavior between try ... catch and, say, if ... else ?</p>
<p>Thanks!</p>
| c++ | [6] |
3,956,027 | 3,956,028 | Keep track of the lifetime of a child process in C# | <p>Part of our job is interfacing with an ERP system. Some of the processes within that system can be automated by calling a specific exe called IMPAUT.exe in the base directory of the ERP system. I pass the ERP sub program ID to IMPAUT and it fires off.</p>
<p>Now, what IMPAUT does is determines if the ERP installation is a client or standalone installation, and then IMPAUT fires off a child process. This child process is either IMPACT.exe or IMPCSC.exe. Once IMPAUT has fired off the child process, IMPAUT dies. The child process continues to live for a while. The child process only dies when it has completed the command and has logged out of the ERP system.</p>
<p>The problem is, that while the child process is still alive, I can't call IMPAUT again, because only one instance of the child program may be logged in to the ERP system. I also can't monitor when IMPAUT dies, because the child process will still be alive long after IMPAUT has died.</p>
<p>I need to determine when the child process has died for the specific IMPAUT process that invoked it. So from the parent, I need to get the child process it invokes, before the parent process has died and monitor that child process' lifetime.</p>
| c# | [0] |
5,340,650 | 5,340,651 | load html text of https (SSL) | <p>Does anyone know how to load the HTML element of https in asp.net?</p>
<p>say.. you have the following url: <a href="https://somesite.com/secure/site.aspx" rel="nofollow">https://somesite.com/secure/site.aspx</a>. How do I programatically load the html content of the this url?</p>
| asp.net | [9] |
4,005,477 | 4,005,478 | How to hide an iframe using a button in the content page? | <p>I am using an iframe for showing a page in my website. i want to hide that frame using a close button in the content page( the page which is showing in the frame)</p>
<p>How to do this? use jQuery
<a href="http://www.freeimagehosting.net/uploads/th.16304cfe1b.png" rel="nofollow">See this image</a></p>
| asp.net | [9] |
4,792,755 | 4,792,756 | In App Billing V2: Item not found, but purchase OK | <p>Have In App Billing V2 incorporated into my code and be able to buy one-time purchase item and yearly subscription item. But when purchasing one-time purchase item, always get the message "Item not found". Is this a Google bug? Any help? Thanks in advance.</p>
<blockquote>
<p>ps:even after the mobile reboot. It occurs on multiple phones (all my
phones and tablets).</p>
</blockquote>
| android | [4] |
4,458,058 | 4,458,059 | How can I convert text into link using Jquery and assign a function using Jquery? | <p>How can I convert text into link using Jquery and assign a funtion? I have a table and I want to convert table’s last row’s first cell text into link and assign onclick function “DisplayDetails()”.</p>
<p>My table name is “ScoreCardDataCurrentTable”.</p>
<p>Thanks</p>
| jquery | [5] |
1,239,742 | 1,239,743 | PHP Strip_tags for div with a specific ID? | <p>Does anybody know if a modified strip_tags function exsists where you can specify the ID of the tags to be stripped, and possbile also specify to remove ALL THE DATA IN THE TAGS. Take for example:</p>
<pre><code><div id="one">
<div id="two">
bla bla bla
</div>
</div>
Running:
new_strip_tags($data, 'two', true);
</code></pre>
<p>Must return:</p>
<pre><code><div id="one">
</div>
</code></pre>
<p>Is there something like this out there?</p>
| php | [2] |
2,232,166 | 2,232,167 | refresh image with jquery asynch | <p>I use the script beneath to refresh a webcam image. It refreshes every 18 seconds and after 8 refresh it stops refreshing. I have a feeling it does not cancel it correctly. Because after some time I see the loading sign going haywire. Is there something wrong with my script?</p>
<pre><code>var count = 0;
function CamRefresh() {
count++;
if(count > 8) clearInterval(timeout);
updatecam();
}
var timeout = setInterval(CamRefresh, 18000);
});
function updatecam() {
$('#loading').show('fast');
$('#activecam').attr('src', 'http://weeg.binaer.no/weeg_com/nesjordet.jpg?time='+Date());
$('#loading').hide('slow');
$('#currentswitch').hide(1500);
$('#dayswitch').show();
}
</code></pre>
| jquery | [5] |
912,042 | 912,043 | How to use javascript to move an object from one list to another on the same page | <p>I have a jsp I'm working on and I was wondering if there is an easy javascript function that can figure out which element in a list is selected and then move that element to another on the same jsp?</p>
<p>here is the screen shot of the jsp:</p>
<p><img src="http://i.stack.imgur.com/opG4W.png" alt="enter image description here"> </p>
<p>this is the code:</p>
<pre><code><% Venue v = (Venue)session.getAttribute("currentVenue"); %>
<% List<Conceptual_Package> cpList = Conceptual_PackageDAO.getInstance().getByVenue(v.getId()); %>
What Packages do you want to see?
<form method="post" action="ttp.actions.Sale3PackAction.action">
<select name="packid" id="packid">
<% for (Conceptual_Package cp: cpList) { %>
<option value="<%=cp.getId()%>"><%=cp.getName1()%></option>
<% } %>
</select>
<input type="button" value=" next " onclick="getSeats();"/>
</form>
<!--new-->
Available Seats:
<select name="eventSeatid" size="10" id="aSeats">
<!-- <option value="aSeats"></option>-->
</select>
<input type="button" value=" Add "/>
Selected Seats:
<form method="post" action="ttp.actions.sale4Action.action">
<select name="eventSeat2id" size="10" id="seat2">
<option value="seat2"></option>
</select>
</form>
</code></pre>
| javascript | [3] |
5,489,372 | 5,489,373 | What's a good way to determine where POST information was sent from | <p>I am writing a Instant Payment Notifications script for paypal in PHP. There are going to be other payment processors down the road, but they're going to be handled by the same function.</p>
<p>So I need to find a good way to detect where the post information came from.</p>
<p>Anyone have any experience handling paypal responses that could offer a suggestion?</p>
| php | [2] |
2,753,690 | 2,753,691 | Listview with image in android,when i click an item it should appear | <p>in listview i like to display one image,but when i click an item it should appear,if i click the same it should disappear,if i click some other item also it should disappear,only cureent item image should appear. </p>
<pre><code>public View getView(int position, View convertView, ViewGroup parent) {
View itemView = super.getView(position, convertView, parent);
return itemView; }
} listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
public void onItemClick(AdapterView<?> listView, View itemView, int position, long id) {
ImageView imageView = (ImageView) itemView.findViewById(R.id.img);
itemToggled[position] = ! itemToggled[position];
imageView.setImageResource(itemToggled[position] ? R.drawable.checked : R.drawable.empty); }}});
</code></pre>
| android | [4] |
297,987 | 297,988 | alias keyword (like typedef) in C#? | <p>I have 2 libs that have different case on different platforms :(. It seems like everything else is the same (method names, param order, etc). How can i create an alias so my current spelling for platform a will work when i compile for platform b (I would really hate to make a wrapper for case difference)</p>
| c# | [0] |
4,186,118 | 4,186,119 | jquery check this has content | <p>How to check this has content in a jquery test? I want to check if each li is not empty, do some stuff.</p>
<p><a href="http://jsfiddle.net/h8UXV/" rel="nofollow">Online demo</a> And code repeart:</p>
<p>HTML</p>
<pre><code><ul>
<li>list1</li>
<li></li>
<li>list3</il>
<li>list4</li>
<li></li>
</ul>
<div> </div>
</code></pre>
<p>javascript</p>
<pre><code>$('ul li').click(function(){
var list = $(this).html();
if($(this':has(*)').length){
$('div').html( list );
}
});
</code></pre>
<p>CSS </p>
<pre><code>ul{
list-style:none;
width:210px;
}
li{
float:left;
background:#ccc;
width:200px;
height:30px;
margin:3px;
display:block;
}
div{
float:left;
display:inline-block;
line-height:30px;
background:#ff0ff0;
width:200px;
}
</code></pre>
| jquery | [5] |
1,158,861 | 1,158,862 | Initialize Object with different parameters | <p>Hello I have code which replaces <code>document.write</code>, makes a buffer and than pushes buffer into the document:</p>
<pre><code> var lazyLoad = (function () {
var counter = 0
var buffer = new Array()
function work(options){
window.d = document
var tmp_buffer
d.write = d.writeln = function(s){ tmp_buffer += s}
d.open = d.close = function(){}
s = d.createElement('script')
s.setAttribute('type','text/javascript')
s.setAttribute('src',options.url)
d.getElementById(options.block).appendChild(s)
s.onload = function () {
buffer[counter] = tmp_buffer
console.log(buffer[1])
window.setTimeout(function() {
d.getElementById(options.block).innerHTML += buffer[counter]
}, 0)
counter++
}
}
return {
init: function (options) {
var CONFIG = {
url: '',
block: ''
}
$.extend(CONFIG, options)
random = $('#'+CONFIG.block).attr('rel')
id = $('#'+CONFIG.block).attr('id').replace(random,'')
id = id.replace('DIV','')
size = id.split('X')
ele_width = size[0] || CONFIG.width
ele_height = size[1] || CONFIG.height
$('#'+CONFIG.block).css({
'width':ele_width+'px',
'height':ele_height+'px'
})
$(window).load(function(){
if(options.adfox) {
random = $('#'+CONFIG.block).attr('id')
AdFox_getCodeScript(1, random, CONFIG.url)
}else{
work(options)
}
})
}
}
})();
</code></pre>
<p>If I init it once:</p>
<pre><code>lazyLoad.init({
'http://test.com/test.js',
div1
})
</code></pre>
<p>But if I call it again with other parameters:</p>
<pre><code>lazyLoad.init({
'http://test2.com/test.js',
div2
})
</code></pre>
<p>First init wont work. <code>buffer</code> will be empty. Where is my mistake? </p>
| javascript | [3] |
4,970,110 | 4,970,111 | Overriding Canvas.drawTextOnPath | <p>In androids before ICS, implementation of Canvas.drawTextOnPath() does not support Right-to-Left. The full support of RTL text is now added in ICS and JB.</p>
<p>I want to know is there a way to extend Canvas class and override drawTextOnPath based on newer versions of android for my app? and if yes, where can I find the native implementation of that method?</p>
<p>Thanks.</p>
| android | [4] |
3,775,930 | 3,775,931 | Private variables in inherited prototypes | <p>I think I have misunderstood how Javascript prototypal inheritance works. Specifically, the prototypes internal variables seem to be shared between multiple different sub-objects. It is easiest to illustrate with code:</p>
<pre><code>var A = function()
{
var internal = 0;
this.Increment = function()
{
return ++internal;
};
};
var B = function() {};
// inherit from A
B.prototype = new A;
x = new B;
y = new B;
$('#hello').text(x.Increment() + " - " + y.Increment());
</code></pre>
<p>This outputs <code>1 - 2</code> (test it on <a href="http://jsbin.com/ateci3/2/edit" rel="nofollow">JSBin</a>), while I fully expected the result to be <code>1 - 1</code>, since I wanted two separate objects.</p>
<p>How can I make sure that the <code>A</code> object isn't shared object between multiple instances of <code>B</code>?</p>
<p><strong>Update</strong>: <a href="http://robertnyman.com/2008/10/21/javascript-inheritance-experimenting-with-syntax-alternatives-and-private-variables/" rel="nofollow">This article</a> highlights some of the issues:</p>
<blockquote>
<p>The problem is that the scope each approach uses to create a private variable, which works fine, is also the closure, in action, that results in if you change a private variable for one object instance, it is being changed for all. I.e. it’s more like a private static property, than an actual private variable.</p>
<p>So, if you want to have something private, more like a non-public constant, any of the above approaches is good, but not for actual private variables. Private variables only work really well with singleton objects in JavaScript.</p>
</blockquote>
<p><strong>Solution</strong>: As per BGerrissen's answer, changing the declaration of <code>B</code> and leaving of the prototype works as intended:</p>
<pre><code>var B = function() { A.apply(this, arguments); };
</code></pre>
| javascript | [3] |
2,206,844 | 2,206,845 | How to change apk file name in android | <p>I need to change the name of apk file for my android application.
I am using Eclipse for the build.
How to achieve this ?</p>
| android | [4] |
2,124,749 | 2,124,750 | javascript function not working correctly | <p>I have the following simple javascript function to slide an object up and down.</p>
<p>When I first click it should slide down which it should do and alerts with true which it should do. However on the second click I want it to slideup however it detects firstclick to be true again. Any ideas</p>
<pre><code><script type="text/javascript">
var firstclick = true;
function slidedown(){
if (firstclick = true){
$( '#rerooftext' ).slideDown(500);
alert(firstclick);
firstclick = false;
}
else {
$('#rerooftext').slideUp(500);
$firstclick = true;
}
}
</script>
</code></pre>
| javascript | [3] |
2,857,938 | 2,857,939 | Can not play video from youtube | <p>Hi I am new to android and I am trying to play youtube video using this code but I am not getting any result even not getting error.</p>
<pre><code>public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Uri uri = Uri.parse("http://www.youtube.com/watch?v=hPUGNCIozp0");
Intent intent = new Intent(Intent.ACTION_VIEW,uri);
startActivity(intent);
}
</code></pre>
<p>my XML file</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/back"
android:weightSum="1">
</LinearLayout>
</code></pre>
<p>my Manifest file</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.vdemo" android:versionCode="1" android:versionName="1.0">
<uses-sdk android:minSdkVersion="9" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".VDemoActivity" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
</code></pre>
| android | [4] |
5,570,161 | 5,570,162 | when i use textview.getid(),why the result comes out is not the the one i defined for textview in the xml | <p>Assuming i got 3 data:i=01,j=02,k=03 and i want to set these 3 data indiviually into 3 textViews that defined with ids:@+id/tv01,@+id/tv02,@+id/tv03. The following is what i have tried: </p>
<pre><code>if (textview.getid().contain(i))
textView.settext(i)
</code></pre>
<p>But when i use textview.getid(), why the result comes out is not the the one i defined for textview in the xml? Any ideas?</p>
<p>Thanks for the help!</p>
| android | [4] |
357,102 | 357,103 | php setting text | <p>I'm working on a site in php. Originally I had a lot of html pages but they were all very similar in that they had a heading, an image, and some text. I was able to consolidate my pages into one php page and pass in the heading and image name as GET variables. I wouldn't want to pass a lot of text this way though. What's the best way to do this? I was thinking of including the text from a text file but then I'd have a text file for every item. I also thought that I could have a database and read the text from there. What do you guys think?</p>
| php | [2] |
2,860,862 | 2,860,863 | Need Jquery Plugin for 2-colomns Vertical tabs | <p>There are lot of plugins available for jquery tabs, but what I am looking for is vertical tabs.</p>
<p>That is, in only two columns where the first column has vertical tabs and second column has content.</p>
| jquery | [5] |
3,447,941 | 3,447,942 | Jquery: Content Rotator / Slider question | <p>I'm looking to overhaul a website for a friend of mine at <a href="http://gaonlinedriversed.com/" rel="nofollow">http://gaonlinedriversed.com/</a></p>
<p>They threw together the current site with Joomla. You might want to turn your sound off before going to the site, it has a pretty annoying video that starts up, with no option to mute or pause it (one thing I'm fixing).</p>
<p>Anyways, my question: I believe the site uses MooTools for the content slider on the home page which I'm not familiar with, but I am familiar with Jquery and love it. I've done various galleries / sliders before, but none of them really recreate the look and usability of the existing site. Namely, I'm looking for a "slider" that does: A few thumnail photos that change the main content which consist of html content (Picture, Header, Paragraph and button to more content).</p>
<p>I've looked at Coda, Gallery View and few others, but none seem to do exactly what I'm trying to recreate. Any direction would be appreciated.</p>
| jquery | [5] |
5,983,184 | 5,983,185 | iOS 5 keyboardWasShown | <p>I add a negative and a period button through the code to the basic numeric keyboard for text fields that accept decimal values. i call this code from the keyboardWasShown method and it seems to add these two keys to the keyboard in iOS 4 series, but does nothing in iOS 5. The code is called and the method is executed but the keys are not added to the keyboard.
any help is appreciated.
thanks.</p>
| iphone | [8] |
3,775,374 | 3,775,375 | How can I code a C# function to accept a variable number of parameters? | <p>I have a C# method that I would like to use to update some data. The method could be passed either a string, a double, an integer</p>
<pre><code>public void Update(string ac, string pr, string fld, Int32 intVal = null, double dblVal = null, string strVal = null)
{
</code></pre>
<p>Depending on the value of fld I would want to update a certain field name in my table. </p>
<p>Is there some way I could code up the function parameters so I would not have to supply a long list of possible value types?</p>
<p>Ideally I would like to be able to call this function like this:</p>
<pre><code>Update("key1", "key2", "location", "London");
Update("key1" , "key2", "beds", 2);
Update("key1" , "key2", "price", 123.45);
</code></pre>
<p>Then inside the function update I would like to have:</p>
<pre><code>public void Update(string ac, string pr, xxx, yyy)
{
try
{
vm.Product = _product.Get(ac, pr);
vm.Product.xxx = yyy;
_product.AddOrUpdate(vm.Product);
}
catch (Exception e) { log(e); }
}
</code></pre>
<p>In the xxx I would like to give the field name and yyy the actual value. Maybe inside the function I could do some kind of casting with a case method based on the field name. I only have a small number of field names so that could be easy. Also maybe there is a way I could find the datatype from reflection of the vm class but that's far beyond my knowledge. </p>
| c# | [0] |
284,195 | 284,196 | 'An exception occurred during a WebClient request" while using C# ASP.NET | <p>So, I have built an auto update program to my program. </p>
<p>The code that is running in here is:</p>
<pre><code>new WebClient().DownloadFile("XXXX", checkingfolder.SelectedPath);
</code></pre>
<p>the XXX is my webserver that is running as a VPS server in verio, with the newest IIS and everything. </p>
<p>When the user clicks on the download button, it says:</p>
<pre><code>'An exception occurred during a WebClient request.
</code></pre>
<p>The thing is, that I dont even know why - i am just doing try catch. </p>
<p>Anyone here have any idea why this happened?</p>
<p>Thanks for any help you will give me, you have no idea how much you are helping me here - thanks again !</p>
| c# | [0] |
3,889,967 | 3,889,968 | Virtual machine with Mac OS X | <p>I would like to develop an iPhone application, but I do not have a Mac. I would like to find out if it is possible to rent a virtual machine with a Mac OS so that I could develop on that machine. Does anyone offer that service? Would it not make sense because I couldn't connect my phone directly to that machine?</p>
<p>Or perhaps I could rent a Mac. </p>
<p>Or option three is to run Mac OS X in a virtual machine on my Windows laptop. Is that possible?</p>
| iphone | [8] |
4,710,174 | 4,710,175 | Chained PHP controls | <p>I'm making a form validation class and it works like this currently.</p>
<pre><code>$validator->setVar($_POST['Username'])
->standardFilter(array('XSS', 'SQL_INJECTION'))
->customRegex()
->replace('This', 'With this')
->getResult();
</code></pre>
<p>While it works perfectly when chained like this, I can't archieve the following result.</p>
<pre><code>$validator->setVar($_POST['Username'])
->isValidEmail()
->isValidPhoneNumber()
->isSet()
->isNull()
->getResult()
</code></pre>
<p>For example, script returns the following values</p>
<pre><code>->isValidEmail() (true)
->isValidPhoneNumber() (true)
->isSet() (false)
</code></pre>
<p>Basically, I'm going to make an array, fill it with true/false depending on the result of each function, and I'll look for a specific value in array (a false). If it exists, the class will return false regardless of the rest of the chains. (or I can just override variables, not important here.)</p>
<p>However, I want $validator to stop chaining once it gets a false from a function. Let's say it received a false from isSet(). It shouldn't execute isNull() and getResult() since we already have a failed check.</p>
<p>How can I archieve this in PHP?</p>
<p><strong>TL;DR:</strong></p>
<pre><code>var_dump($validator->setVar('Test message')->isInteger()->setTrue());
//false //true
Output: false, because once isInteger() failed, rest of the chain isn't executed.
</code></pre>
<p>How can I archieve this in PHP?</p>
| php | [2] |
1,477,306 | 1,477,307 | C# Dynamic size indexers | <p>How to set up indexer that are dynamically grown in size ?Down,i used the fixed size array.
If i use <code>List<Employee></code> ,then there is no point to have indexers.so how can i keep the
array to grow dynamically?</p>
<pre><code>class Department
{
private Employee[] employee = new Employee[6];
public Employee this[int arg]
{
get { return this.employee[arg]; }
set { this.employee[arg] = value; }
}
}
</code></pre>
| c# | [0] |
2,599,346 | 2,599,347 | Career Confusion | <p>For someone who has not worked anywhere in Java Technology except learning just the core concepts in his Masters (MCA) and Graduation (BCA, bachelor degree course):</p>
<ol>
<li><p>Is it possible to get job anywhere in Java technology? Considering he/she has not studied it in regular college and not First Class throughout except BCA, MCA (in case of Indian or international companies).</p></li>
<li><p>How will he/she get his/her dream job (in the Java field) and what are the prospects for his/her career life?</p></li>
<li><p>If the knowledge he received in his grad/univ is not enough, than what more should he do to make this his specialty before getting started for the search job or to increase job offers?</p></li>
</ol>
<p>All kinds of suggestions are welcome. And thanks very much for kind suggestions.</p>
| java | [1] |
3,139,551 | 3,139,552 | How can I conditionally define a function in javascript? | <p>Consider the following script:</p>
<pre><code>if (false) {
function foo() {
alert("FOO");
}
}
foo(); // alerts "FOO"
</code></pre>
<p>As you can see, the function <code>foo</code> is defined and works even though the condition for the <code>if</code> fails.</p>
<p>The reason I want to do this is that I am developing an extension for InDesign and I made a script called utilities.jsx which holds various functions which are used in other scripts. In all the scripts that need these functions, I simply use:</p>
<pre><code>app.doScript(File(scriptsFile.parent.fsName + "/t_utilities.jsx"), ScriptLanguage.JAVASCRIPT);
</code></pre>
<p>which defines all the functions I need and then I can use them. Now, since this script will be called multiple times by various files in an unpredictable order (the user decides), I thought I might only define the functions if they haven't been defined before (if utilities.jsx hasn't run yet). Kind of like <code>require_once</code> in php.</p>
<p>I was thinking of something like the following, but that doesn't work as the functions are defined every time the script is run:`</p>
<pre><code>var utilitiesHasRun;
if (utilitiesHasRun !== true) {
// define all the functions
// ...
utilitiesHasRun = true;
}
</code></pre>
<p>Are there any other options?</p>
| javascript | [3] |
4,851,730 | 4,851,731 | full code from java in c++ | <p>here is full code from algorithm and data structure in java written in c++</p>
<pre><code>#include <iostream>
using namespace std;
class link {
public:
int idata;
double ddata;
link *next;
link ( int id,double dd){
idata=id;
ddata=dd;
}
public :
void display(){
cout<<idata<<"=>";
cout<<ddata;
}
};
class linked_list{
public :
link *first;
public:
linked_list(){
first=NULL;
}
~linked_list(){
while (first!=NULL){
link *ptr=first->next;
delete first;
first=ptr;
}
}
public:
bool isempthy(){
return (first==NULL);
}
void insert(int id,double dd){
link *newlink= new link(id,dd);
newlink->next=first;
first=newlink;
}
public:
link deletefirst(){
link *temp=first;
first=first->next;
return *temp;
}
void displaylist(){
cout<<"List (first-->last";
link *current=first;
while (current!=NULL){
current->next;
current.display();
}
}
}
int main(){
linked_list ll;
ll.insert(22,12);
ll.insert(44,35);
ll.insert(12,46);
ll.insert(100,23.45);
while (!ll.isempthy()){
link alink=ll.deletefirst();
alink.display();
}
return 0;
}
</code></pre>
<p>error is that this fragment</p>
<pre><code>current.display(); does not work please help
</code></pre>
| c++ | [6] |
110,703 | 110,704 | Session object with WCF? | <p>Is it possible to use Session object with WCF to store session related data?
If yes the can you describe how?</p>
<p>Thanks</p>
| c# | [0] |
837,859 | 837,860 | Is it possible to put layout xml's in subdirectories under /res/layout? | <p>My layout files are growing and growing. So I came up with an idea of putting them in subdirectories. Is it possible? Simple code:</p>
<pre><code><include android:id="@+id/mLayout" layout="@layout/subdirectory/blahblah">
</code></pre>
<p>seem not to work.</p>
| android | [4] |
6,028,309 | 6,028,310 | preventing reinserting of data when press browser's refresh button | <p>I developed a web application in asp.net.I have a module for saving values to database after clicking the button event.Thats working successfully.After that when i clicked the browser's refresh button the values reinserted to the table each time.How can i avoid this .Which is the code for this solution?</p>
| asp.net | [9] |
4,582,488 | 4,582,489 | What am I doing wrong? /noob ?Learning to program | <p>I am trying to create a simple calculator in the console for single digit numbers.(Well I actually only care about multiplication)</p>
<p>So, here is my code and if someone could help me.</p>
<pre><code>class multiplythisnumber
{
static void Main()
{
int input, input1, output; //variable decleration
System.Console.WriteLine("This application is meant to multiply two single digit numbers.");
System.Console.WriteLine("You can choose both numbers, however this is only a test.\r I am not sure the read command even does what I think it does.");
System.Console.WriteLine();
System.Console.Write("Please enter the first number: ");
input = System.Console.Read(); //Reads my input + 48(assuming 48 is the value of enter)
input = input - 48;
System.Console.WriteLine();
System.Console.Write("Please enter the second number: ");
input1 = System.Console.Read(); //Doesn't wasit for input and sets input1 = 13
System.Console.WriteLine();
output = input * input1;
System.Console.WriteLine();
System.Console.Write("{0} times {1} equals {2}.", input, input1, output);
System.Console.ReadKey();
}
}
</code></pre>
<p>I added comments to explain what I was doing to everyone else, and just as personal notes. </p>
<p>The last line always ends up as "(0) times 13 equals 0." -Assuming I used zero for input 1.</p>
<p>Edit:
Just to clarify I know 0*13=0 (yes it said 12 earlier what it has really been saying is 13). The problem is that it is not allowing me to set input1 and is just setting it at 13 and continuing executing.</p>
<p>Edit2: I would like to say thanks to Matt, because the changes he made allowed the code to work correctly. So, looks like I have my first code that actually does something other than tell you your own name.</p>
| c# | [0] |
1,774,321 | 1,774,322 | Java - Trouble Accessing ValueMap | <p>I've got a pretty simple script that simply accesses a resources properties via a ValueMap. Except for some reason I keep getting an <strong>unexpected token error</strong> were the if statement starts. This has to be something I'm just overlooking. </p>
<pre><code>public class headerComponent{
ValueMap property = resource.adaptTo(ValueMap.class);
if(property != null) {
pageHeader = property.get("pageHeader", "");
}
}
</code></pre>
<p>Any ideas? Thanks for the help.</p>
| java | [1] |
1,623,897 | 1,623,898 | Storing values from a vector to a string as comma seperated values | <p>how can I store the values returned from a function to a string as comma seperated values. Can anyone help me..?</p>
<pre><code>const myVector &vecList = obj.get_List();
vector<myNumVector *>::const_iterator iter;
for (iter= vecList.begin(); iter!= vecList.end(); iter++)
{
string myNum = (*iter)->get_myNum();
string myNumList = ?
//myNumList should be = drt123,ret34,dfghgd234.... if these are the return values
} //can we achive this by use of some sting functions..?
</code></pre>
| c++ | [6] |
913,874 | 913,875 | Is it a good practice to always define `value_type` when we define a template | <pre><code>template<typename T>
class Point
{
public:
typedef T value_type;
...
};
</code></pre>
<p>I have seen above code in the <a href="http://rads.stackoverflow.com/amzn/click/059600298X">book, pp176</a>.</p>
<p><strong>Question1</strong>> Is it a good practice to always add the definition for <code>value_type</code>?</p>
<p><strong>Question2</strong>> Where this defined <code>value_type</code> will be used?</p>
<p>For example:</p>
<p><code>Point<int>::value_type</code>?</p>
| c++ | [6] |
3,863,472 | 3,863,473 | Controlling the access of method | <p>Is there a way to write a Web program when you would deliberately specify which classes are allowed to invoke this or that method? I am writing Web app in Java and using Spring Web MVC. If it is possible please tell me about the methods or technologies being used for that.
Best regards</p>
| java | [1] |
3,077,245 | 3,077,246 | unexpected T_IF error in PHP | <p>I have a small problem with this code and i cannot understand why is returning <code>unexpected T_IF</code></p>
<p>code:</p>
<pre><code>$get_gender = array($getGender->getMaleGender());
$gender =
if ($gender->getGender()) {
echo "Male";
} else {
echo "Female";
}
</code></pre>
<p>Any help is appreciated.</p>
<p>Solution:</p>
<pre><code>$get_gender = array($getGender->getMaleGender());
if ($getGender->getIsMaleGender()) {
$result = "Male";
} else {
$result = "Female";
}
</code></pre>
| php | [2] |
1,400,311 | 1,400,312 | Android: How to change hue of an Image? | <p>I'm looking to change the hue of my background image (PNG) programmatically. How can this be done on Android?</p>
| android | [4] |
516,963 | 516,964 | Android: getting system services from within a application level library class | <p>Hopefully someone can give me a pointer. I have an application that makes several web service calls. I'm in the middle of a refactor and I've pulled the actual calls out to a new class. The problem is that I can't seem to use:</p>
<p>SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
or
TelephonyManager telephonyManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);</p>
<p>within my class. I'm not extending anything, so I suppose the problem is that I don't have the application context. Is there a good base class that I should be extending to be able to use these or some secret to it?</p>
| android | [4] |
5,554,670 | 5,554,671 | Out Of Memory Exception while uploading video to facebook in android | <p>while uploading the video to facebook i am getting the Out Of memory exception log cat showing the following exception:</p>
<pre><code>java.lang.OutOfMemoryError: (Heap Size=19783KB, Allocated=13705KB, BitmaSize=0KB)
at java.io.ByteArrayOutputStream.expand(ByteArrayOutputStream.java:91)
at java.io.ByteArrayOutputStream.write(ByteArrayOutputStream.java:216)
</code></pre>
<p>Please some one help me Thanks in advance.</p>
| android | [4] |
4,146,320 | 4,146,321 | Benefits of using "const" with scalar type? (e.g. "const double" or "const int") | <pre><code>///////////////////////////////////////
class A {
...
const double funA(void)
{...}
};
A a;
double x = a.funA();
// although the intention is to
// enforce the return value to be const and cannot be
// modified, it has little effect in the real world.
class A2 {
...
double funB(void)
{...}
};
///////////////////////////////////////
class A {
void setA(const double d)
{ // now you cannot change the value of d, so what?
// From my point of view, it is NOT a good practice to change the pass-in parameter
// in this case, unless you want the caller to receive that change
// instead, you can do
// const double dPassIn = d;
/ /then use dPassIn instead.
...
}
};
class A2 {
void setB(double d)
{...}
};
//////////////////////////////////////
</code></pre>
<p>From my understanding, we should prefer to
using <code>A2::funB</code> and <code>A2::setB</code> because the <strong>const</strong> used in
both <code>A::funA</code> and <code>A::setA</code> has little meaning.</p>
<p>// Update //</p>
<pre><code> FMOD_RESULT F_API EventSystem::getReverbPresetByIndex(const int index,
FMOD_REVERB_PROPERTIES *props, char **name = 0);
</code></pre>
<p>I consider FMOD is a well-designed package and it does use <code>const int</code> inside function parameter list.
Now, I agree that the <code>A::setA(const double d)</code> has its edge.</p>
| c++ | [6] |
4,663,665 | 4,663,666 | C++ programing code counts[s[i] - '0'] ++; | <pre><code>for (int i = 0; i < s.length(); i++)
{
if (isdigit(s[i]))
counts[s[i] - '0'] ++;
}
</code></pre>
<p>what does this code means, any one can able to explain this code " counts[s[i] - '0'] ++;" exact opertion </p>
| c++ | [6] |
4,572,171 | 4,572,172 | Adding camera effects in android and save | <p>I am working on a new android application.In my app i have to add show effects on image preview [like sepia,pinch, mirror, etc] and capture and save image in that particular effect.eg: I f user select pinch effect then he can capture and store the image with pinch effect.
I had read some faq's. But they are telling about some ndk's.But i don't have any idea about ndk's. Please help me friends.</p>
| android | [4] |
259,697 | 259,698 | algorithm to compare numbers within a certain distance from each other | <p>So I have an array of numbers that look something like</p>
<pre><code>1,708,234
2,802,532
11,083,432
5,098,123
5,777,111
</code></pre>
<p>I want to find out when two numbers are within a certain distance from each other (say 1,500,000) so I can group them into the same location and have just one UI element represent both for the level of zoom I am looking at. How would one go about doing this smartly or efficiently. I'm thinking I would just start with the first entry, loop through all the elements, and if one was close to another, flag those two and put it in a dictionary of some sort. That would be my brute force method, but I'm thinking there has to be a better way.</p>
<p>I'm coding in obj-c btw if that makes or breaks any design decisions.</p>
| iphone | [8] |
4,625,021 | 4,625,022 | How to compare two files based on datetime? | <p>I need to compare two files based on datetime..I need to check whether these two files were created or modified with same datetime..I have used this code to read the datetime of files...</p>
<pre><code> string fileName = txtfile1.Text;
var ftime = File.GetLastWriteTime(fileName).ToString();
string fileName2 = txtfile2.Text;
var ftime2 = File.GetLastWriteTime(fileName2).ToString();
</code></pre>
<p>Any Suggestion??</p>
| c# | [0] |
1,010,476 | 1,010,477 | How can I switch between 2 characters? | <p>I am using python 2.7 and i'm trying to find a solution to this problem,
when i get a string from a certain function
i need to switch between the first and the last character.
for example if the string is "hello" it should return as "oellh"
slicing won't work and i cant just replace the characters like i will normally do because i dont know what the string is going to be or how long it would be. I thought about replacing between the character in position 0 with the character in position -1
but i cant find something that will enable me to do it.
Does anyone have any suggestions?</p>
| python | [7] |
2,748,987 | 2,748,988 | Get index of unordered list and scroll position (up and down) on click | <p>I have a schedule of events, the ul has a fixed height and overflow hidden, the li's also have a fixed height. Only four are visible at a time. I need to figure out how to scroll through the list, both up and down on click of the appropriate button. </p>
<p>I'm sure there are plug ins out there that can do this, but for a better understanding of jQuery/JS I want to do this on my own - but need some help. HTML/CSS is here <a href="http://jsfiddle.net/DirtyBirdDesign/BJdJ7/" rel="nofollow">http://jsfiddle.net/DirtyBirdDesign/BJdJ7/</a></p>
<p>I have broken this down into the following needs:</p>
<ol>
<li>Loop through and index the number of list items</li>
<li>Get the current position</li>
<li>on each click of the 'down' button, move the position -41px</li>
<li>on each click of the 'up' button, move the position +41px</li>
<li>animate the transition</li>
<li>Loop continuously - go from last to first when last is visible</li>
</ol>
<p>Am I missing anything on the above? How do I go about this?
thanks for the knowledge!</p>
| jquery | [5] |
4,813,008 | 4,813,009 | How to create a new php file from template | <p>I am certainly not an expert in PHP, and have surfed SO thoroughly but didn't find anything related to this. Might mean that the question is stupid, but I was trying to create a new php file on sign up (so to provide rss feeds for each person who signs up) and I've managed so far to create a beatifully empty file. Here's the code of a test file I have written in the end, with GET function:</p>
<pre><code>$USR = $_GET['usr'];
$FILE=$USR.'.rss.php';
$file1 = 'rssdemo.php';
$handle = fopen($file1, 'a');
$contents = fread($handle, filesize($file1));
fclose($handle);
$file2 =$FILE;
$handle = fopen($file2, 'wb');
fwrite($handle, $contents); //this should write something but does nothing
fclose($handle);
</code></pre>
<p>As you can see, the file I am trying to copy from is a PHP file (that should in its turn generate the XML file).
Is there a way to create a new php file, open an old one, copy the content of it and paste it into the newly created file? Or maybe fwrite () can be used for text only? Some help please! Thanks in advance.</p>
| php | [2] |
473,953 | 473,954 | What are the latitude and longitude of a circle? | <p>In Android, if I have a circle's radius and center value, how could I measure the latitude and longitude of about 1 km periphery of that circle?</p>
| android | [4] |
1,192,909 | 1,192,910 | Which sensors used for Sensor.TYPE_ROTATION_VECTOR | <p>I'm developing for Honeycomb Gingerbread and I was wondering, which physical sensors are used when I use the Sensor.TYPE_ROTATION_VECTOR?</p>
<p>Does it use a combination of compass and accelerometers? Or gyro + accel? Or all three? Or something else?
The reason I'm asking is that my app behaves differently on two different pieces of hardware, and they should actually have the same type of sensors.</p>
<p>Thanks,
Mark</p>
| android | [4] |
4,671,494 | 4,671,495 | When JavaScript is called input text is deleted? | <p>Im using the following to update the Latitude and Longitude of a delivery postcode.</p>
<p>Code works perfectly except when the script is called it deletes the postcode from the input box.</p>
<p>Can someone tell me why this is?</p>
<pre><code><script type="text/javascript">
//<![CDATA[
var geo = new GClientGeocoder();
function getAddress(search) {
geo.getLocations(search, function (result)
{
if (result.Status.code == G_GEO_SUCCESS) {
var p = result.Placemark[0].Point.coordinates;
var lat=p[1];
var lng=p[0];
var dcMessage = '<span style="color:#990000">Post Code Successfully GeoCoded</span>'
var dcHiddenOutput = '<input type="hidden" name="lat" value="' +lat+ '"><input type="hidden" name="lng" value="' +lng+ '">';
document.getElementById("ConfirmOrder").innerHTML += dcMessage;
document.getElementById("UpdateGeo").innerHTML += dcHiddenOutput;
}
}
);
}
function theNext() {
var addresses = document.getElementById("myInput").value;
getAddress(addresses);
}
//]]>
</script>
<form id="UpdateGeo" method="get" action="updateGeocode.asp">
<input id="myInput" name="PostCode" style="text-transform:uppercase" />&nbsp;
<input type="checkbox" onClick="theNext()">&nbsp;
<input type="submit" value="Update Database">
</form>
</code></pre>
| javascript | [3] |
2,382,458 | 2,382,459 | What is the jQuery method to detect when audio has stopped playing? | <p>I want to toggle a function when the audio is done being played.</p>
<p>Here's the code I tried(without luck):</p>
<pre><code>$(function(){
if ($('#audio').get(0).stopped == true) {
$('div#switch').toggle();
}
});
</code></pre>
| jquery | [5] |
5,903,318 | 5,903,319 | calling python module dynamically using exec | <p>I have 2 modules</p>
<p>mexec1.py</p>
<pre><code>def exec1func():
print 'exec1'
exec 'c:/python27/exec2.py'
if __name__ == '__main__':
exec1func()
</code></pre>
<p>exec2.py</p>
<pre><code>def exec2func(parm=''):
print 'exec2 parm',parm
if __name__ == '__main__':
exec2func(parm='')
</code></pre>
<p>From exec1.py I want to call exec2func of the exec2.py using only exec or execfile...I don't want subprocess.Popen..</p>
| python | [7] |
2,992,214 | 2,992,215 | pass values between two different pages using Jquery | <p>can any one tell me how to do this in JQuery?</p>
<p>i have two .aspx pages named default1.aspx and default2.aspx. default1.aspx has one textbox named as textbox1 and default2.aspx has one textbox named as textbox2. default1.aspx opens the default2.aspx by using window.showmodaldialog(). Issue is that While i am changing the text of textbox2, the textbox1 text also gets changed.</p>
<p>Thank you in advacne</p>
| jquery | [5] |
2,775,825 | 2,775,826 | create header files in c++ | <p>I have the following question whether there is the possibility in c++ to create header files using the following rules. Let's take the header </p>
<pre><code>#include "sum.h"
</code></pre>
<p>where in sum.h i will declare functions or procedures and then use it in .cpp files?</p>
| c++ | [6] |
4,703,404 | 4,703,405 | Convert a Collection<String> into comma sepearted values | <blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/205555/the-most-sophisticated-way-for-creating-comma-separated-strings-from-a-collection">The most sophisticated way for creating comma-separated Strings from a Collection/Array/List?</a> </p>
</blockquote>
<p>I have a Collection </p>
<p>I wanted to have a String object from the Collection Object with elements as Comma seperated. </p>
<p>For eg </p>
<pre><code> Collection<String> = [1,2,3..]
String temp = "1,2,3,4....";
</code></pre>
| java | [1] |
2,723,889 | 2,723,890 | Watermark 2000+ images at once? | <p>I have a image hosting service and people upload offline (they upload to another computer like a station without internet access) and then we sync the images (they aren't watermarked at this stage) and they are not approved at this point.</p>
<p>There is an admin area where the user would go to approve an image, and we will apply the watermark at this stage.</p>
<p>I am wondering what method would be best to watermark 2000ish images using PHP (at a time). Would creating a system daemon and waiting for a response a good idea or?</p>
| php | [2] |
1,807,512 | 1,807,513 | Jquery render different data according to body id value | <p>I would like to load data according to the body id value, here is the code:</p>
<pre><code><body id="CN">
....
<body>
</code></pre>
<p>and the Jquery will take the value "CN" and load content,
the format of the content is below:</p>
<pre><code> <div class="menu">
<div class="links">
{module_menu,1032883}
</div>
</div>
</code></pre>
<p>the {module_menu,1032883} is the part I want to change, value "1032883" means "CN" and I have the below array:</p>
<pre><code>{module_menu,14623} for "AU"
{module_menu,1022165} for "CA"
{module_menu,1032883} for "CN"
{module_menu,1014746} for "US"
</code></pre>
<p>Thank you very much.</p>
| jquery | [5] |
Subsets and Splits