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 |
---|---|---|---|---|---|
5,270,151 | 5,270,152 | getting images from external sd card folder and displaying them in a list | <p>Im trying to get images from a particular folder inside the external <code>SD card</code> and trying to show them inside a list when im running the app. No error provided, nothing happens. Just a blank page any suggestion.</p>
<p>i'm getting the list of images with the extension but how can i view the images! </p>
<pre><code> @Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
File file = new File("/sdcard/external_sd/folder_name/");
File imageList[] = file.listFiles();
ArrayList<Bitmap> images = new ArrayList<Bitmap>();
for(int i=0;i<imageList.length;i++)
{
Log.e("Image: "+i+": path", imageList[i].getAbsolutePath());
Bitmap b = BitmapFactory.decodeFile(imageList[i].getAbsolutePath());
images.add(b);
}
setListAdapter(new ArrayAdapter(this,
android.R.layout.simple_list_item_1,imageList));
}
</code></pre>
| android | [4] |
5,297,985 | 5,297,986 | Redirect 404 or just 404 header | <p>I'm currently coding a site and I want to know the best alternative.</p>
<p>Should I add <code>header("HTTP/1.0 404 Not Found")</code> without redirecting or should I redirect and add a 404 header?</p>
| php | [2] |
1,056,461 | 1,056,462 | PHP simplexml_load_file() does this need a @ prefix | <p>I am working with a previous developers code and a lot of his code hide errors with the <code>@</code></p>
<p>One example being: </p>
<pre><code>if(!file_exists($filename))
throw new Exception("file '$filename' does not exist.");
$xmlObject = @simplexml_load_file($filename);
if($xmlObject === false)
throw new Exception("Could not load '$filename' check syntax and file has read permission.");
</code></pre>
<p>I understand that using the <code>@</code> hides errors but is this good practice or bad?</p>
| php | [2] |
3,050,247 | 3,050,248 | 404 error page not showing | <p>I've got this in my web.config and it's being hosted by the DiscountASP.net ISP</p>
<pre><code> <customErrors mode="On" defaultRedirect="">
<error statusCode="404" redirect="404.aspx"/>
<error statusCode="500" redirect="404.aspx"/>
</customErrors>
</code></pre>
<p>I am hosting the site on DiscountASP.net and they also tell you to config it this way. I'm using Enterprise Library but I don't think that should make a difference. I don't believe I need to config anythign for a 404 in EL.</p>
<p>When my page loads with an error, my 404.aspx doesn't show and I get the default custom errors off message. I do not know why I don't get my 404.aspx page showing and get this instead:</p>
<p>Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.</p>
<p>Details: To enable the details of this specific error message to be viewable on remote machines, please create a tag within a "web.config" configuration file located in the root directory of the current web application. This tag should then have its "mode" attribute set to "Off".</p>
<p>
</p>
<p>Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's configuration tag to point to a custom error page URL.</p>
<p>
</p>
| asp.net | [9] |
2,109,761 | 2,109,762 | ASP.net: Weird web user control problem | <p>This is weird. I declare a web user control on a asp.net web page like so</p>
<pre><code>print("<%@ Register Src="~/Controls/blah.ascx" TagName="blahCtrl" TagPrefix="cc" %>");
</code></pre>
<p>I don't have problem with it until today in the code behind where it give me name blah is not declared error. does anyone know what cause this?</p>
| asp.net | [9] |
1,143,779 | 1,143,780 | python, psycopg2, and bound parameters | <p>I have this guy:</p>
<pre><code>query = 'DELETE FROM boyd.%s WHERE teamid = %s AND id = %s AND year = %s' % (statstype, '%s', '%s', '%s')
self.executequery(query, values[0:3])
</code></pre>
<p>Which strikes me as ugly. The first %s is actually supplied by the variable, the other three are bound variables: do I really need to go <code>% (statstype, '%s', '%s', '%s')</code>? Is there a more... pythonic approach here?</p>
| python | [7] |
5,815,076 | 5,815,077 | How to import modules from different folders in Python? | <p>How to import modules from different folders? I have the following</p>
<pre><code>cgi-bin
| py
|
__init.py__
http
|
__init.py__
HttpFormParser.py
xml
|
__init.py__
XmlDocumentCreator.py
</code></pre>
<p>I want to import XmlDocumentCreator in HttpFormParser.py. How to do that ?</p>
<p>I'm doing</p>
<pre><code>import py.xml.XmlDocumentCreator
</code></pre>
<p>in HttpFormParser.py and its throwing the following error.</p>
<pre><code>/HttpFormParser.py", line 5, in <module>
import py.xml.XmlDocumentCreator
ImportError: No module named py.xml.XmlDocumentCreator
</code></pre>
| python | [7] |
481,104 | 481,105 | Schedule a single-threaded repeating runnable in java, but skip the current run if previous run is not finished | <p>Sometimes the duration of a repeated task is longer than its period (In my case, this can happen for hours at a time). Think of a repeated task that takes 7 minutes to run and is scheduled to run every 10 minutes, but sometimes takes 15 minutes for each run for a few hours in a row.</p>
<p>The Timer and ScheduledThreadPoolExecutor classes both have a scheduleAtFixedRate method that is usually used for this type of functionality. However, both have the characteristic that they 'try to catch up when they fall behind'. In other words, if a Timer falls behind by a few executions, it builds up a queue of work that will be worked on continuously until it catches back up to the number of runs that would have happened if none of the tasks had taken longer than the specified period. I want to avoid this behavior by skipping the current execution if the previous run is not complete.</p>
<p>I have one solution that involves messing around with the afterExecution method of a pooled executor, recalculating a delay, and rescheduling the runnable with the new delay, but was wondering if there's a simpler way, or if this functionality already exists in a common library somewhere. I know about scheduling with a fixed delay rather than a fixed period, but this will not work for me since it's important to try to execute the tasks at their fixed times. Are there any simpler options than my afterExecution solution?</p>
| java | [1] |
4,822,208 | 4,822,209 | JavaScript Converting string values to hex | <p>I have an array of string-encoded hex values. I need to convert those strings to actual hex values and then be able to compare them (using standard less-than/greater-than/equals). What is the best way to accomplish this?</p>
| javascript | [3] |
3,985,167 | 3,985,168 | parsing and execute lines in C++ | <p>I am having a series of c++ functions to be executed in C++ in one text file</p>
<pre><code>LHAPDF::alphasPDF(pow(1* 0.25471686e+03,0))
LHAPDF::alphasPDF(1*0.18014950e+03)
LHAPDF::xfx(0.86084175E-01,0.17014950e+03,0)
LHAPDF::xfx(0.39435938E-01,0.25471686e+03,0)
LHAPDF::xfx(0.29,1*0.15,0)
</code></pre>
<p>How can I parse them in C++ and execute the line ? my C++ knows what LHAPDF::xfx is, I just want to repeatedly execute the lines parsed from the text file.</p>
| c++ | [6] |
1,954,067 | 1,954,068 | Droid camera screen upside down display | <p>I have this App, which will help tune camera to to zoom in or zoom out and adjust contrast and stuff, but the image that camera focuses on is displayed with swapped vertical and horizontal axis. So when I run this app and focus on vertical text it is displayed as portrait and vice versa. It is not problem with the way we hold camera but the way text is displayed</p>
| android | [4] |
5,476,703 | 5,476,704 | UITextView memory leak | <p>Can somebody can please verify that they can also reproduce that memory leak.</p>
<p>Create a new "Utility Application". Open the FlipsideView.xib and add a UITextview. Using the inspector, uncheck "Editable" and check "Detects Phone Number" and "Detects Links".</p>
<p>Run the app using the Leak instrument on an iPhone. Flip between the MainView and the FlipsideView a few times and observe the leak.</p>
<p>Thanks</p>
<p>I'm using 3.1.2</p>
| iphone | [8] |
2,030,461 | 2,030,462 | How can I retrieve the current error handler? | <p>I'd like to find out what error handler is currently, well, handling errors.</p>
<p>I know that <a href="http://php.net/manual/en/function.set-error-handler.php" rel="nofollow"><code>set_error_handler()</code></a> will return the previous error handler, but is there a way to find out what the current error handler is without setting a new one?</p>
| php | [2] |
1,080,618 | 1,080,619 | jQuery cross domain aAax plugin won't work with facebook.com | <p>I don't know why but when I do:</p>
<pre><code>$('body').load("http://facebook.com/");
</code></pre>
<p>It returns in console log:</p>
<blockquote>
<p>Error: data.results[0] is undefined</p>
</blockquote>
<p>But if I do:</p>
<pre><code>$('body').load("http://google.com/");
</code></pre>
<p>it works fine. Any ideas why?</p>
| jquery | [5] |
196,745 | 196,746 | how to give time gap between two activities in android? | <p>this is my code.I used one one popup message while clicking on button for that i used Toast after that i want to move next screen</p>
<pre><code>Button Replybutton = (Button) findViewById(R.id.Reply);
Replybutton.setOnClickListener(new View.OnClickListener()
{
public void onClick(View v)
{
EditText ReplysubjeditText=(EditText)findViewById(R.id.ReplysubjeditText);
EditText ReplymsgeditText=(EditText)findViewById(R.id.ReplymsgeditText);
String temp_string=ReplysubjeditText.getText().toString();
try
{
ReplysubjeditText.setText("");
ReplymsgeditText.setText("");
}
catch(Exception e)
{
Log.v("Add",e.toString());
}
Toast.makeText(EmailReply.this, "Sending....",
Toast.LENGTH_SHORT).show();
Intent myNewMail = new Intent(EmailReply.this,EmailForm.class);
myNewMail.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(myNewMail);
}
});
</code></pre>
| android | [4] |
5,019,203 | 5,019,204 | How to not delete an already existing SQLite database during a patch update | <p>I have installed my Android application with a blank database during the initial stage. The installation will then create a database with the name Inventory and copy the database already created with different tables using SQLite browser into the newly created database. After some days data will be stored in the SQLite database while running my application.</p>
<p>The problem is that when I'm installing the application for a patch update with some modification for the next release. My already running application database needs to stay there. What can I do to retain the old database while installing with new apk file?</p>
<p>Also what if I need to update the database during the patch update without losing the data?</p>
| android | [4] |
1,969,358 | 1,969,359 | Is there any difference when calling a javascript function onclick="fn1()" and onclick="javascript:fn1()" | <p>What is the difference between calling a function directly onclick="fn1()" and onclick="javascript:fnq()"?</p>
<p>What would be the best approach?</p>
<p>Thanks</p>
| javascript | [3] |
1,179,115 | 1,179,116 | How to add activity within tab root activity in android | <p>I implemented tab layout using activities, I write one root activity In that activity initially I add three tabs in which I add three activities in it.but After I want to also add activity in the same tabs </p>
<p>How I can achieve this please help me.</p>
| android | [4] |
5,545,861 | 5,545,862 | cannot convert from 'System.IO.TextWriter' to 'System.IO.Stream' | <pre><code> var ssh = new SshClient("ip", "user", "pass");
var input = new MemoryStream(Encoding.ASCII.GetBytes("exit\r\n"));
var shell = ssh.CreateShell(input, Console.Out, Console.Out, "xterm", 80, 24, 800, 600, "");
shell.Stopped += delegate(object sender, EventArgs e)
{
Console.WriteLine("\nDisconnected...");
};
shell.Start();
Thread.Sleep(1000 * 1000);
shell.Stop();
</code></pre>
<p>error on this line : </p>
<pre><code>var shell = ssh.CreateShell(input, Console.Out, Console.Out, "xterm", 80, 24, 800, 600, "");
</code></pre>
<p>Errors :
Error 3 Argument 2: cannot convert from 'System.IO.TextWriter' to 'System.IO.Stream' D:\applications area\test\ConsoleApplication1\ConsoleApplication1\Program.cs 19 48 ConsoleApplication1</p>
<p>Error 4 Argument 3: cannot convert from 'System.IO.TextWriter' to 'System.IO.Stream' D:\applications area\test\ConsoleApplication1\ConsoleApplication1\Program.cs 19 61 ConsoleApplication1</p>
<p>any solution ?</p>
| c# | [0] |
5,970,613 | 5,970,614 | Using window object | <p>I've seen lots of people using <code>window.</code> when calling some variable. But aren't all the variables of a same window actually in <code>window</code>?<br>
Example:</p>
<pre><code>window.onorientationchange = function() {
var orientation = window.orientation; // <-- WHY?
switch(orientation) {
/* ... */
}
}
</code></pre>
<p>But the same people use <code>alert()</code>, <code>document</code>, etc. So why?</p>
| javascript | [3] |
4,223,712 | 4,223,713 | How do I know where "Program Files" are? | <p>I'm working on a custom installer / launcher in pure Java. How can I tell the path to "Program Files" or its equivalent?</p>
| java | [1] |
2,580,480 | 2,580,481 | twitter oath authentication android | <p>i am developing app.its having post message on facebook and twitter.i searched on net and got many example but i confused with twitter.</p>
<p>if i am using oath authentication how should i provide login screens for clients.many example </p>
<p>what i found just they are using consumer and secret key where i need to pass uname,pword</p>
<p>can you pl suggest me its very urgent to me</p>
<p>Thanks in advance</p>
<p>Aswan </p>
| android | [4] |
454,554 | 454,555 | realtime collaborative editing: mobwrite on windows7 x64 | <p>I have set up <a href="http://code.google.com/p/google-mobwrite/" rel="nofollow" title="MobWrite">Mobwrite</a> on my Win7 development machine using the daemon and q.py listener. The client test suite passes, but when I run the server test suite, everything fails with this sort of response:</p>
<pre>
Question:
U:user10259538167863824
f:0:unittest10259538167863824
R:0:Hello world
Expected:
u:user10259538167863824
F:0:unittest10259538167863824
D:0:=11
Actual:
u:user10259538167863824
F:0:unittest10259538167863824
D:0:=11
Diff:
u:user10259538167863824
¶
F:0:unittest10259538167863824
¶
D:0:=11¶
¶
¶
</pre>
<p>I am assuming it has something to do with line endings, but I don't know what to do. Can anyone shed some light on this?</p>
<p>Thanks so much!</p>
<p>PS: I'm running Python 2.7</p>
| python | [7] |
5,991,785 | 5,991,786 | Get span contents but ignore H2. JQUERY | <p>I have a <code>span</code> that contains text that I would like to use. But within this <code>span</code> there is a <code>h2</code> that I want to ignore. (This isnt my mark up and I cant change this so moving the <code>h2</code> outside of the <code>span</code> is not an option)</p>
<p>Here is the mark up:</p>
<pre><code><span>
<h2>Joe Bloggs</h2>
Executive Director
</span>
</code></pre>
<p>Here is my current code which is getting the contents of the <code>span</code> including the <code>h2</code></p>
<pre><code>currentLi = $('ul#example2 li.frame3');
position = $(currentLi).find('span').text();
</code></pre>
<p>So my hopeful outcome will be the variable <code>position</code> containing the text "Executive Director"</p>
| jquery | [5] |
2,020,159 | 2,020,160 | Simple Login System Issues | <p>So I'm learning how to make a simple login system for a website I'm making and I'm getting this error.</p>
<p>Notice: Use of undefined constant myusername - assumed 'myusername' in /home/dkitterm/public_html/index.php on line 4</p>
<p>These are lines 3-6.</p>
<pre><code> session_start();
if(!session_is_registered(myusername)){
header("location: main_login.php");
}
</code></pre>
<p>This is my check login page as well.</p>
<pre><code> <?php
$host="localhost";
$username="dkitterm";
$password="";
$db_name="";
$tbl_name="members";
//connect to server and db
mysql_connect("$host", "$username", "$password") or die("Server Down");
mysql_select_db("$db_name") or die("cannot select DB");
//username and password sent from form
$myusername=$_POST['myusername'];
$mypassword=$_POST['mypassword'];
//debunk
$myusername = stripslashes($myusername);
$mypassword = stripslashes($mypassword);
$myusername = mysql_real_escape_string($myusername);
$mypassword = mysql_real_escape_string($mypassword);
//encrypt password
$encrypted_mypassword=md5($mypassword);
$sql="SELECT * FROM members WHERE login='$myusername' and password='$encrypted_mypassword'";
$result=mysql_query($sql);
// Mysql_num_row is counting table row
$count=mysql_num_rows($result);
// If result matched $myusername and $mypassword, table row must be 1 row
if($count==1){
// Register $myusername, $mypassword and redirect to file "login_success.php"
session_register("myusername");
session_register("mypassword");
header("location: index.php");
}
else {
echo "Wrong Username or Password";
}
?>
</code></pre>
| php | [2] |
3,673,049 | 3,673,050 | MediaPlayer cant play audio files from program data folder? | <p>When i record my audio from MIC and store file in /data/data/..... why
MediaPlayer can't play this file ? If i change destination to /
sdcard/..... - all works great. I do something wrong ? I not found
limitation for MediaPlayer. Device - Samsung T959 (Galaxy S)
Thanks, i hope anybody know solution....</p>
| android | [4] |
608,155 | 608,156 | jQuery: When clicking on checkbox, input box below will be visible | <p>I am not very good at jQuery, so I have a question; is there a quick way to code so when you click on a checkbox (equally to 1), there will appear a text box below. </p>
<p>I am currently learning jQuery, so this would be a great example.</p>
<p>Thanks in advance!</p>
| jquery | [5] |
1,063,118 | 1,063,119 | Read file line by line and print if it contains two different strings | <p>So I have a file called 'clears' and I want to see if a line contains two different strings that are in a list and if so to print those lines I cant get it to work.</p>
<pre><code>for pos in positions:
for line in open('clears'):
if pos[0] and pos[3] in line:
print line
</code></pre>
<p>I also tried
f</p>
<pre><code>or pos in positions:
for line in open('clears'):
if pos[0] in line and pos[3] in line:
print line
</code></pre>
<p>Thats what I tried but I get a <code>TypeError: 'in <string>' requires string as left operand</code>
I can get it to print if there is only one condition but I am not sure how to do if there is two.</p>
<p>Thanks</p>
| python | [7] |
4,686,863 | 4,686,864 | Count down timer speeds up | <p>I have a timer that counts down every second. The timer is used for a game: the user has up to 15 seconds
to answer to a question. Let's say the game has 10 questions. The timer works great for the first question
, but then, speeds up more and more with every question. Any suggestion is more then welcome. Thank you!</p>
<p>Code is here:</p>
<pre><code>var timeInSecs;
var ticker;
function startTimer(secs) {
timeInSecs = secs;
ticker = setInterval("tick()", 1000); // every second
}
function tick() {
var seconds = timeInSecs;
if (seconds > 0) {
timeInSecs--;
}
else if (seconds == 0) {
document.getElementById("timeExpired").innerHTML = "Time expired!";
}
document.getElementById("countDown").innerHTML = seconds;
}
function myStopFunction() {
clearInterval(ticker);
}
</code></pre>
| javascript | [3] |
3,925,158 | 3,925,159 | How to validate the excel sheet value so that only correct data type value insert in to mysql database through php | <p>I want to actually import the .csv file to a database, my problem is that when I validate the data of excel sheet, only actual data should get inserted to the database. If one of the row does not match with the actual data type then it should show the message <code>this rows can not be insert in to database</code> using only php.</p>
| php | [2] |
4,747,923 | 4,747,924 | Google map displayed in my Ubuntu machine ,not displayed in Xp machine | <p>I am developed application with google map in android 2.2 version using eclipse in ubuntu machine.In that case I can get the google map as well as the location perfectly.</p>
<p>But now i have to run that same apps in Xp machine,there also am having android 2.2 .The apps run properly but the google map not displayed ,only white screen with boxes displayed.</p>
<p>can any one help me ,what are the changes i need to apply in my apps to get the same output in xp machine too?</p>
<p>Thanks & Regards,
Lakshmanan.</p>
| android | [4] |
3,632,527 | 3,632,528 | PHP: convert date into seconds? | <p>I've a date like <strong>Tue Dec 15 2009</strong>. How can I convert it into seconds?</p>
<p>Update:
How can I convert a date formatted as above to Unix timestamp?</p>
| php | [2] |
144,902 | 144,903 | Explain this loop, please: for i in l: l.remove(i) | <p><strong>Example:</strong></p>
<pre><code>l = [1,2,3,4,5,6,7,8,9,0]
for i in l:
print i,l
l.remove(i)
</code></pre>
<p><strong>Returns:</strong> </p>
<pre><code>1 [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]
3 [2, 3, 4, 5, 6, 7, 8, 9, 0]
5 [2, 4, 5, 6, 7, 8, 9, 0]
7 [2, 4, 6, 7, 8, 9, 0]
9 [2, 4, 6, 8, 9, 0]
</code></pre>
<p>So why is there only 5 spins? I expect it to turn 10 times.
Can someone explain it to me step by step?</p>
| python | [7] |
3,829,614 | 3,829,615 | create .msi or setup file in C# 2010 | <p>How can I create either .msi file or setup file from the application I have created in VC# 2010. Please help me.</p>
| c# | [0] |
865,070 | 865,071 | Get and set value spinner from other activity in android | <p>I have code like this -mainclass-</p>
<pre><code> Spinner pilihtype;
ArrayAdapter<CharSequence> adapter =
ArrayAdapter.createFromResource(this, R.array.typestore, android.R.layout.simple_spinner_item);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
pilihtype=(Spinner)findViewById(R.id.Stype);
pilihtype.setAdapter(adapter);
</code></pre>
<p>it show my spinner value and it works</p>
<p>And now i Have a editclass that have spinner too. I want my spinner in editclass setvalue from selected value in mainclass , Can u give me a solution?? thanks</p>
| android | [4] |
5,198,631 | 5,198,632 | How to get CheckBox or RadioButton textAppearance? | <p>I have some radio buttons and/or check boxes in my layout and I would like that my <code>TextViews</code> that are around have the same text appearance (size, color, etc.).</p>
<p>Basically, I am looking for something like the following:</p>
<pre><code><TextView
android:textAppearance="?android:attr/textAppearanceRadioButton"
...
/>
</code></pre>
<p>Is it possible to achieve this in some other way perhaps?</p>
<p>P.S: I do not want to change the 'default' text appearance that radio buttons and check boxes already have. Also, I am not looking for a run-time solution but the one that utilizes xml layout file.</p>
| android | [4] |
4,355,784 | 4,355,785 | How to test if an element resides in an iFrame using jQuery? | <p>How to test if an element resides in an iFrame using jQuery and if it does, how to select that iFrame?</p>
| jquery | [5] |
2,880,318 | 2,880,319 | change event of html hidden field | <p>I want to check the change of html hidden field using jquery and i tried for this but the change event did not worked.</p>
<p>Somebody has and idea how to handle this? </p>
| jquery | [5] |
2,378,634 | 2,378,635 | FaultException`1: <nativehr>0x80070057</nativehr><nativestack></nativestack> | <p>I create a Issue Tracking list using following code:</p>
<pre><code> var siteUrl = "http://win-2kshuvjl9qh/sites/meroteamsite/blanksite";
var listUrl = "My Issue Tracking List";
var listDescription = "aaa";
int listTemplateId = 1100;
SPWeb web = DEUtilityInternal.CreateSPWebObject(siteUrl);
SPListTemplateType spType = (SPListTemplateType)listTemplateId;
string listName = web.Lists.Add(listUrl, listDescription, spType).ToString("B").ToUpper();
internal static string GetServerRelUrlFromFullUrl(string strUrl)
{
int index = strUrl.IndexOf("//");
if ((index < 0) || (index == (strUrl.Length - 2)))
{
throw new ArgumentException();
}
int startIndex = strUrl.IndexOf('/', index + 2);
if (startIndex < 0)
{
return "/";
}
string str = strUrl.Substring(startIndex);
if ((str.Length > 1) && (str[str.Length - 1] == '/'))
{
return str.Substring(0, str.Length - 1);
}
return str;
}
internal static SPWeb CreateSPWebObject(string strFullUrl, SPUser userToBeImpersonated)
{
SPWeb spWeb = null;
SPSite site = new SPSite(strFullUrl);
site.AllowUnsafeUpdates = true;
spWeb = site.OpenWeb(GetServerRelUrlFromFullUrl(strFullUrl));
return spWeb;
}
</code></pre>
<p>It works but However when i deleted that created list and re try to create the same list with same name, I get some error from
string listName = web.Lists.Add(listUrl, listDescription, </p>
<p>FaultException1: 0x80070057</p>
<p>Why it is so.. ?? </p>
| c# | [0] |
2,062,106 | 2,062,107 | how to read char from a string in c# | <p>I have a string <code>a = "aabbbffdshhh"</code>. I want to write a program which will give me output of <code>"a2b3f2d1s1h3"</code>. I want to return each letter in the alphabet present and it's count.</p>
<p>The code I am currently using is:</p>
<pre><code>int cnta;int cntb; int cntf; int cnth;
for (int i=0;i<a.lenghth;i++)
{
if(a[i]=='a')
{
cnta++;
}
if(a[i]=='b')
{
cntb++;
}
if(a[i]=='h')
{
cnth++;
}
}
</code></pre>
<p>It is giving me the output but this logic not good. What other algorithms or approaches could I use?</p>
| c# | [0] |
1,294,553 | 1,294,554 | javascript property value dependent of other property | <p>I made an object called Fullscreen, and within the object another object called directions. so my code looks like this:</p>
<pre><code>FullScreen = {
directions: {
prev: -1,
next: 1
}
}
</code></pre>
<p>but i want to be able to set FullScreen.directions.prev from outside the object, and change FullScreen.directions.next to the negative value of the prev. any ideas how to do this?</p>
| javascript | [3] |
2,925,579 | 2,925,580 | jQuery Code for click event | <p>I attach a click handler to a button on my page. Is there anyway to find out what code is using jQuery?</p>
<pre><code>$("#dreport").click(function() {
var str = "hello";
});
</code></pre>
<p>Is there a anyway to get the var <code>str = "hello"</code> in the firebug debugger, or anywhere?<br />
I've tried alerting:</p>
<pre><code>$("#dreport").attr("click")
</code></pre>
<p>But I only see [native code] where the body should be.</p>
| jquery | [5] |
1,598,478 | 1,598,479 | Substract array from another array | <p>I have an array with eight values inside it. I have another array with the same amount of values. Can I simply substract these arrays from each other?</p>
<p>Here is an example:</p>
<pre><code>var firstSet =[2,3,4,5,6,7,8,9]
var secondSet =[1,2,3,4,5,6,7,8]
firstSet - secondSet =[1,1,1,1,1,1,1,1] //I was hoping for this to be the result of a substraction, but I'm getting "undefined" instead of 1..
</code></pre>
<p>How should this be done properly?</p>
| javascript | [3] |
3,885,876 | 3,885,877 | How to launch Application without Launcher Icon? | <p>I want to launch an Activity without having an Launchericon. So I removed the </p>
<pre><code><category android:name="android.intent.category.LAUNCHER" />
</code></pre>
<p>from the Manifest. Now my Icon does not show up in the Launcher, but I my App to start for the first time, after this the User does not need to open the App(so therefor no need for a launcher icon).</p>
<p>So my Question is:
Is there a way to not show a launcher Icon, but start the App just for the first time?</p>
<p>Thank you. </p>
| android | [4] |
1,325,866 | 1,325,867 | remove ColorFilter / undo setColorFilter | <p>How can a ColorFilter be removed or setColorFilter on a view be undone?</p>
| android | [4] |
1,438,403 | 1,438,404 | Context in a PreferenceFragment | <p>taken from <a href="http://developer.android.com/guide/topics/ui/settings.html" rel="nofollow">http://developer.android.com/guide/topics/ui/settings.html</a>:</p>
<blockquote>
<p>Note: A PreferenceFragment doesn't have a its own Context object. If
you need a Context object, you can call getActivity(). However, be
careful to call getActivity() only when the fragment is attached to an
activity. When the fragment is not yet attached, or was detached
during the end of its lifecycle, getActivity() will return null.</p>
</blockquote>
<p>If I call getActivity() from within the OnCreate() method of a PreferenceFragment then can I be assured that the fragment is attached to its activity - or is there some other way you should get the Context in this instance?</p>
<p>The reason I need a Context is I'm trying to use a Toast notification from the PreferenceFragment</p>
| android | [4] |
3,844,247 | 3,844,248 | Reading string more efficiently | <p>I'm getting pretty big input string into my method, but what I actually need is just first line of that string. Is it possible to extract just the first line of an already existing string?</p>
| java | [1] |
4,674,783 | 4,674,784 | How to properly handle default variables values being incorrect | <p>This is probably a basic question, better explained through code:</p>
<pre><code> public void checkStatus {
int status = UNKNOWN;
if (somecondition) {
status = STATUS_UP;
} elseif (someothercondition) {
status = STATUS_DOWN;
}
}
</code></pre>
<p>So the problem is, by definition I do not know all the possible conditions that might affect the STATUS, and I didn't want the compiler to throw 'my not be defined' error by not initializing the status local variable.</p>
<p>Bottom line my app won't work with a status set to UNKNOWN, I've just set it to shut up the compiler.</p>
<p>Question: how can I approach this elegantly, I've considered throwing an fatal exception at the end of the method should the status still be set to UNKNOWN, but that feels a bit 'ugly'. </p>
<p>Thank you.</p>
| java | [1] |
5,842,875 | 5,842,876 | Passing a variable to another function in Javascript | <p>I asked a question a while back about how to get the current variable in a loop and I got the solution :</p>
<pre><code> for (i in ...)
{
...
href:"javascript:on_click('+i+');"...}
</code></pre>
<p>When i run this, the loop is sending the on_click function the string 'i' instead of the value of i.
<br /> Am I using the <code>+variable+</code> wrong? Can someone explain in more detail what wrapping a variable in + means and why it is not working in my case?</p>
| javascript | [3] |
2,283,547 | 2,283,548 | Include Javascript / CSS min version on production and full on dev in ASP .NET Web Forms | <p>Is it possible to achieve a goal specified in the question topic in ASP .NET for instance with existing controls like ScriptManager or any other controls? I'm using ASP .NET Web Forms 3.5.</p>
| asp.net | [9] |
3,760,928 | 3,760,929 | A application with password | <p>How can Write and Create Safer Windows Applications with lock key in C#?</p>
| c# | [0] |
3,179,868 | 3,179,869 | what is the equivalent component in android like table view in iphone | <p>can anybody tell what is the equivalent component in android like table view in iphone?</p>
<p>How to implement table view component like iphone in android?</p>
<p>give example</p>
<p>Thanks</p>
| android | [4] |
3,182,548 | 3,182,549 | jQuery adding a function to a link question | <p>I have a dynamically created table which in the last <code><td></code> there is a hidden <code><div></code> which is shown when the user hovers over a link in the <code><td></code>. That all works fine but there are several links in the div that I want to fire a function based on the id of the link concat'd with an string captured from a <code><td></code> from the parent row. I can capture the the variables I need from the id and <code><td></code> but something is wrong with the click function I have created. </p>
<p>I monitored the function in FireBug and the function appears to be firing on all of the links instead of the one that is clicked. Here is my working code:</p>
<pre><code>function fixLink() {
$('a.batchMatchLink').click(
function() {
var r = $(this).parent().parent().parent().parent().parent();
var x = $(this).attr("id");
var a = $(r).find('td:nth-child(6)').text();
var st = x + "." + a;
fireLink(st);
}
);
}
function fireLink(st) {
$.ajax({
type: "POST",
url: "AjaxWcf.svc/MatchBatch",
contentType: "application/json; charset=utf-8",
data: st,
dataType: "json",
success: function(msg) {
alert("Entry has been updated");
},
error: AjaxFailed
});
</code></pre>
<p>Why are all of the links firing?</p>
<p>Thanks!!!</p>
| jquery | [5] |
264,816 | 264,817 | JavaScript onresize event fires multiple times | <p>I'm having some trouble trying running a function only once when onresize event is triggered, I have looked at this questions <a href="http://stackoverflow.com/questions/1500312/javascript-onresize-event">Javascript onresize event</a> but I'm not using jQuery and can't get that function to work without. Any suggestions? </p>
| javascript | [3] |
291,834 | 291,835 | getting a url querystring's values | <p>Using jquery, how do I get the values of each field in a url querystring? (I'm referring to the search= value and offset= value etc.) Sometimes its more than just these three.</p>
<pre><code><a href="search=sony&offset=20&lang=en" class="more_info">Read More</a>
<a href="search=sony&offset=20&lang=en&period=3" class="more_info">Read More</a>
</code></pre>
<p>I tried using <code>$(".more_info").attr("search")</code>, which should have worked, but doesn't.</p>
| jquery | [5] |
2,669,494 | 2,669,495 | Which brand or type of computer should I buy for android development ? | <p>I got lots of driver and kernel development and some HAL\Java .
So I want to buy a laptop to work at home。
Thanks for any suggestions.</p>
| android | [4] |
3,261,482 | 3,261,483 | Why they created a timeout | <p>if u add this to web.config, then if a page have gone through long process, the client will not have a timeout exception.</p>
<pre><code><httpRuntime maxRequestLength="1024000" executionTimeout="36000"/>
</code></pre>
<p>they are timing out things for a purpose, what is it?, I tried to create a website with two pages I make a button in default1.aspx wait for 5 minutes. the other page requesting is not affected by that.</p>
<p>thanks</p>
| asp.net | [9] |
895,402 | 895,403 | List view not rendered on postback | <p>I recently created a Usercontrol which contains a Listview (databound to a LinqDataSource) added the user control to an existing aspx page (loading the usercontrol dynamically).</p>
<p>I'm seeing an unexpected behavior where the usercontrol is being loaded and listview displayed when we initially load the page, but when I try to click the insert button (from the InsertTemplate of the ListView) the postback occurs, the page reloads but there is no sign of my Listview whatsoever, not even the headers, viewing page source confirms it is completetly gone</p>
<p>The problem is not that the usercontrol is not being reloaded, I can see other elements from the same usercontrol rendering ok.</p>
<p>I've gotten to the point where I've taken the usercontrol and loaded it into a new 'test' aspx page and it works fine there. I've slowly been adding items from my existing page to the test page (javascript,jquery validation,recaptcha, other asp.net controls) and it still works fine. None of the existing controls 'know' anything about the Listview so I can't see how it could be being affected.</p>
<p>Any suggestions as to why this might be happening or debugging options welcome. for now I'm just painstakingly recreating the old page into my testpage but it's time I could be much better using elsewhere.</p>
<p>Next step for me is moving a bunch of linked CascadingDropDowns over to the test page.</p>
<p>update:
I've noted another symptom on the postback, the 'ItemInserting' event of the listview is not being triggered.</p>
| asp.net | [9] |
961,578 | 961,579 | how to use horizontalscroll view component? | <p>i want to create a horizontal scroll view just like the one shown in image<img src="http://i.stack.imgur.com/w8ITN.png" alt="horizontal scroll view"></p>
<p>In android widgets i found Horizontal Scroll View widget in composite section but dont know how to use it.Please help</p>
| android | [4] |
2,561,669 | 2,561,670 | Using div background image as link using jQuery | <p>I have put a logo as the background image in a div</p>
<pre><code><div id="logo" style="background-image:url(images/logo.jpg); position:absolute; top:20px; left:18%; width:275px; height:100px; cursor:pointer;"></div>
</code></pre>
<p>I want to use this as div as a link using jquery</p>
<p>//jQuery code</p>
<pre><code>$('#logo').bind('click',function() {
window.location = "index.php"
});
</code></pre>
<p>Neither does the <code>cursor:pointer</code> show up nor does the link work, any ideas.</p>
<p>Thanks
Jean</p>
| jquery | [5] |
2,161,634 | 2,161,635 | Python: Deleting files of a certain age | <p>So at the moment I'm trying to delete files listed in the directory that are 1 minute old, I will change that value once I have the script working.<br>
The code below returns the error: <code>AttributeError: 'str' object has no attribute 'mtime'</code></p>
<pre><code>import time
import os
#from path import path
seven_days_ago = time.time() - 60
folder = '/home/rv/Desktop/test'
for somefile in os.listdir(folder):
if int(somefile.mtime) < seven_days_ago:
somefile.remove()
</code></pre>
| python | [7] |
5,771,752 | 5,771,753 | Free Commercial Mapping Services | <p>Anybody had experience using either of the following;</p>
<p>MapQuest platform: <a href="http://platform.mapquest.com" rel="nofollow">http://platform.mapquest.com</a></p>
<p>OpenLayers: <a href="http://openlayers.org" rel="nofollow">http://openlayers.org</a></p>
<p>Which of the above would you recommend, any feedback from use of the service? </p>
<p>Or do you think it is worth paying for a commercial license from either Virtual Earth or Google Maps, get more available documentation online and more users to get knowledge and help from with the API?</p>
<p>Cost is an obvious issue hence why we are looking at the free commercial options.</p>
<p>Many Thanks</p>
| asp.net | [9] |
3,066,941 | 3,066,942 | Finding index of list item which is assembled by Fraction class | <p>I'm trying to find the index of specifyed element in my list that looks like this for example
Which is generated by xrange with Fractional.</p>
<pre><code>>> print lst
[Fraction(1, 8), Fraction(1, 7), Fraction(1, 6), Fraction(1, 5), Fraction(1, 4), Fraction(2, 7), Fraction(1, 3), Fraction(3, 8), Fraction(2, 5), Fraction(3, 7), Fraction(1, 2), Fraction(4, 7), Fraction(3, 5), Fraction(5, 8), Fraction(2, 3), Fraction(5, 7), Fraction(3, 4), Fraction(4, 5), Fraction(5, 6), Fraction(6, 7), Fraction(7, 8)]
</code></pre>
<p>I have been trying everything.
Why doesn't this work. </p>
<pre><code>lst.index(1,6)
</code></pre>
<p>or </p>
<pre><code>lst.index( Fraction(1,6) )
</code></pre>
<p>and I have tried many more but I always get</p>
<pre><code>print lst.index(Fraction(1,6))
ValueError: Fraction(1, 6) is not in list
</code></pre>
<p>Any advice ?</p>
<p>More on how I created the list : </p>
<pre><code>for d in xrange(1,limit+1):
for n in xrange(1,limit+1):
x = Fraction(n,d)
lst.append(x)
</code></pre>
| python | [7] |
5,974,053 | 5,974,054 | How to get javascript object method name? | <p>I'm currently building a bigger object and need to get faster and more specific with debugging/inspecting values/results/returns.</p>
<p>Now I thought about the following:</p>
<pre><code>var myObject = {
whatever: null,
whereever: null,
debug: false,
someFunction: function( arg ) {
// General - would output *all* logs for all object functions.
// if ( true === myObject.debug )
// console.log( 'FunctionNameHere', arg );
// More specific - would output *only* the log for the currently targeted function
if ( 'FunctionName' === myObject.debug )
console.log( 'FunctionNameHere', arg );
},
};
</code></pre>
<p>This would allow me to simply define the object var <code>debug</code> as one function name and only log this part.</p>
<p>The only problem is: How would I obtain the <code>FunctionName</code>/<code>someFunction</code>?</p>
<p><em>Sidenotes:</em> </p>
<ul>
<li><code>console.log( arguments.callee );</code> gives me the whole function source.</li>
<li><code>console.log( arguments.callee.name );</code> returns empty.</li>
<li><code>console.log( arguments.callee.toString() );</code> returns empty</li>
<li><code>console.log( arguments.caller );</code> returns <code>undefined</code></li>
</ul>
<p>If I take a look into the log of the whole object, I see <code>prototype.name="Empty"</code> and such. So no chance to get it directly out of the object.</p>
<p>Thanks!</p>
| javascript | [3] |
103,921 | 103,922 | re-arranging views | <p>Hi i am developping an android app making my first steps in mobile applications.I have already implemented drag N drop in a listView.So to make it fancier i won't to make perform an action that i have seen on i-phone but also happens in android phones.I need to make my buttons wiggle when they are long-pressed and the user should be able to re-arrange them as he wishes.I know images get dragged and then dropped in the specified drop zones.Can this happen with view?Also i have no idea of how to make them wiggle or something so that the user knows that they can be re-arranged.What i want is some guidance.Hope i don't sound too vague</p>
| android | [4] |
689,822 | 689,823 | Commutative property a[i] == i[a] | <p>For a built in type integer array say</p>
<pre><code>int a[10];
int i = 2;
a[i] = 10;
</code></pre>
<p>alternatively</p>
<pre><code>i[a] = 10;
</code></pre>
<p>because </p>
<p><code>a[i]</code> is a postfix expression that is <code>*(a+i)</code> or <code>*(i+a)</code> because commutative property of addition.</p>
<p>I want to achieve that for a userdefined type say</p>
<pre><code>class Dummy
{
//
};
</code></pre>
<p>Is it possible?
If yes then how?
If no then why?</p>
<p>EDIT :-
I know it is ugly but following code compiles :-
g++ -dumpversion
4.3.3</p>
<pre><code>#include <stdio.h>
#include<iostream>
#include <string.h>
#include <malloc.h>
using namespace std;
int main()
{
string ArrayS[10];
2[ArrayS] = "ADASD" ;
cout << 2[ArrayS] << endl;
return 0;
}
</code></pre>
| c++ | [6] |
1,512,094 | 1,512,095 | Is there a way to test for enum value in a list of candidates? (Java) | <p>This is a simplified example. I have this enum declaration as follows:</p>
<pre><code>public enum ELogLevel {
None,
Debug,
Info,
Error
}
</code></pre>
<p>I have this code in another class:</p>
<pre><code>if ((CLog._logLevel == ELogLevel.Info) || (CLog._logLevel == ELogLevel.Debug) || (CLog._logLevel == ELogLevel.Error)) {
System.out.println(formatMessage(message));
}
</code></pre>
<p>My question is if there is a way to shorten the test. Ideally i would like somethign to the tune of (this is borrowed from Pascal/Delphi):</p>
<pre><code>if (CLog._logLevel in [ELogLevel.Info, ELogLevel.Debug, ELogLevel.Error])
</code></pre>
<p>Instead of the long list of comparisons. Is there such a thing in Java, or maybe a way to achieve it? I am using a trivial example, my intention is to find out if there is a pattern so I can do these types of tests with enum value lists of many more elements.</p>
<p><strong>EDIT:</strong> It looks like EnumSet is the closest thing to what I want. The Naïve way of implementing it is via something like:</p>
<pre><code>if (EnumSet.of(ELogLevel.Info, ELogLevel.Debug, ELogLevel.Error).contains(CLog._logLevel))
</code></pre>
<p>But under benchmarking, this performs two orders of magnitude slower than the long if/then statement, I guess because the EnumSet is being instantiated every time it runs. This is a problem only for code that runs very often, and even then it's a very minor problem, since over 100M iterations we are talking about 7ms vs 450ms on my box; a very minimal amount of time either way.</p>
<p>What I settled on for code that runs very often is to pre-instantiate the EnumSet in a static variable, and use that instance in the loop, which cuts down the runtime back down to a much more palatable 9ms over 100M iterations.</p>
<p>So it looks like we have a winner! Thanks guys for your quick replies. </p>
| java | [1] |
2,818,531 | 2,818,532 | Static class member | <p>What's wrong with the code below? Latest version of g++ and clang both give error. I am sure I am missing something basic here.</p>
<pre><code>#include <iostream>
struct Z
{
static const int mysize = 10;
};
Z f2();
int main()
{
std::cout << f2()::mysize << std::endl;
}
</code></pre>
<p>The motivation here is to be able to find out the size of an array using templates using code such as below. I know there are many ways, but just stumbled upon this idea.</p>
<pre><code>template<int N> struct S
{
enum { mysize = N };
};
template<class T, int N> S<N> f(T (&)[N]);
int main()
{
char buf[10];
std::cout << f(buf)::mysize << std::endl;
}
</code></pre>
| c++ | [6] |
5,471,433 | 5,471,434 | Access another view's content from another view | <p>I have an activity with two view.One view has the buttons and the other is main view.I must disable buttons for some circumstances inside main view.I couldn't figure out how to do that. </p>
| android | [4] |
4,085,928 | 4,085,929 | How to create 3 spliters in windows Form | <p>Now I am develop one project with windows form (C#).
and I want to separate my form into 3 parts.
So, can anyone tell me how to create 3 spliters in window form (C#)?</p>
| c# | [0] |
3,955,737 | 3,955,738 | What's the difference between inline member function and normal member function? | <p>Is there any difference between inline member function (function body inline) and other normal member function (function body in a separate .cpp file)?</p>
<p>for example,</p>
<pre><code>class A
{
void member(){}
};
</code></pre>
<p>and </p>
<pre><code>// Header file (.hpp)
class B
{
void member();
};
// Implementation file (.cpp)
void B::member(){}
</code></pre>
| c++ | [6] |
4,302,848 | 4,302,849 | Assembly Code in C++ | <p>I would like to learn reading the assembly code generated by the compiler. Where and how could I assess the assembly code generated from C++ ?</p>
<p>Thanks</p>
| c++ | [6] |
1,856,633 | 1,856,634 | Setting properties of Button | <p>How to set Button <strong>"Layout below"</strong> properties by <strong>code</strong> in android inside an <strong>Relativelayout</strong>
i have defined relative layout by using findviewby id. </p>
| android | [4] |
718,382 | 718,383 | "_KUTTypeMovie_" Referenced from: Error in xcode | <p>Hey guys I'm trying to create an app in xcode that in long story short records video, and xcode is proclaiming the following: "<em>KUTTypeMovie</em> Referenced from:"</p>
<p>Any help would be awesome, thanks!</p>
<p>Here is my code.</p>
<p>#import < MobileCoreServices/UTCoreTypes.h></p>
<p>@implementation OverlayViewController</p>
<ul>
<li><p>(void) viewDidAppear:(BOOL)animated {
OverlayView *overlay = [[OverlayView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGTH)];</p>
<p>// Create a new image picker instance:
UIImagePickerController *picker = [[UIImagePickerController alloc] init];</p>
<p>// Set the image picker source:
picker.sourceType = UIImagePickerControllerSourceTypeCamera;
picker.mediaTypes = [NSArray arrayWithObject:(NSString *)kUTTypeMovie];</p></li>
</ul>
<p></p>
| iphone | [8] |
1,265,786 | 1,265,787 | how to get the result from a php file into a string | <p>example i have a file template.php with:</p>
<pre><code><table>
<tr>
<td><?php echo $data['nombre'] ?></td>
</tr>
<?php foreach($data['values] as $value): ?>
<tr>
<td><?php echo $value ?> </td>
</tr>
<?php endforeach; ?>
</table>
</code></pre>
<p>and i need the result into a string <code>$result = get_content_process('template.php',$data);</code> for use in other process.</p>
<pre><code>echo $result;
<table>
<tr>
<td>Juan</td>
</tr>
<tr>
<td>Male</td>
</tr>
<tr>
<td>Brown</td>
</tr>
</table>
</code></pre>
| php | [2] |
1,869,928 | 1,869,929 | Java : Can we use DAO as a singleton instance | <p>This is a general question , not specific to my current application .</p>
<p>In a heavy Traffic MultiThreaded application , what is the approach to do </p>
<p>Assume that there is a DAO which containes a method (say UpdateDatainDb) to update Data inside a Database , now my question is </p>
<ol>
<li><p><strong>Is it good to have a Singleton instance of that DAO class and access its method UpdateDatainDb ?</strong></p></li>
<li><p><strong>Or every time create a new Object of that DAO and call the method UpdateDatainDb ?</strong></p></li>
</ol>
| java | [1] |
435,831 | 435,832 | Passing additional arguments to preg_replace_callback using PHP 5.2.6 | <p>I've been researching similar questions, but I'm still a bit unclear if it's possible and/or best way to pass additional arguments in preg_replace_callback using PHP 5.2.6</p>
<p>In this case I'm also looking to pass the $key from the foreach loop along to the if_replace function.</p>
<pre><code>public function output() {
if (!file_exists($this->file)) {
return "Error loading template file ($this->file).<br />";
}
$output = file_get_contents($this->file);
foreach ($this->values as $key => $value) {
$tagToReplace = "[@$key]";
$output = str_replace($tagToReplace, $value, $output);
$dynamic = preg_quote($key);
$pattern = '%\[if @'.$dynamic.'\](.*?)\[/if\]%'; // produces: %\[if @username\](.*?)\[/if\]%
$output = preg_replace_callback($pattern, array($this, 'if_replace'), $output);
}
return $output;
}
public function if_replace($matches) {
$matches[0] = preg_replace("%\[if @username\]%", "", $matches[0]);
$matches[0] = preg_replace("%\[/if]%", "", $matches[0]);
return $matches[0];
}
</code></pre>
<p>Wondering if something like this would work:</p>
<pre><code>class Caller {
public function if_replace($matches) {
$matches[0] = preg_replace("%\[if @username\]%", "", $matches[0]);
$matches[0] = preg_replace("%\[/if]%", "", $matches[0]);
return $matches[0];
}
}
$instance = new Caller;
$output = preg_replace_callback($pattern, array($instance, 'if_replace'), $output);
</code></pre>
| php | [2] |
1,875,174 | 1,875,175 | Multi Threading in c# | <p>In my main thread i have created new Thread i want call this new thread after a some interval until that thread return status true and also pausing my main thread </p>
| c# | [0] |
1,207,740 | 1,207,741 | Java: moving ball with angle? | <p>I have started to learn game physics and I am trying to move a ball with an angle. But it does not change its angle. Java coordinate system is a little different and I think my problem is there. Here is my code.</p>
<p>This is for calculating x and y speed:</p>
<pre><code> scale_X= Math.sin(angle);
scale_Y=Math.cos(angle);
velosity_X=(speed*scale_X);
velosity_Y=(speed*scale_Y);
</code></pre>
<p>This is for moving ball in run() function:</p>
<pre><code> ball.posX =ball.posX+(int)velosity_X;
ball.posY=ball.posY+(int)velosity_Y;
</code></pre>
<p>I used <code>(int)velosity_X</code> and <code>(int)velosity_Y</code> because in <code>ball</code> class I draw object </p>
<pre><code>g.drawOval(posX, posX, width, height);
</code></pre>
<p>and here <code>g.drawOval</code> requires <code>int</code>. I dont know if it is a problem or not. Also if I use angle 30 it goes +X and +Y but if I use angle 35 it goes -X and -Y. I did not figure out how to work coordinate system in Java.</p>
| java | [1] |
16,728 | 16,729 | Matching numbers | <p>I'm trying to finish a homework assignment and I can't find this anywhere. I'm trying to match input numbers with randomly generated numbers and displaying how many of the 5 are correct (also with a win/lose message). This is what I have so far and any help would be appreciated.</p>
<pre><code>#include <iostream>
#include <cstdlib>
using namespace std;
void main()
{
//variables
int lottery[5], user[5];
int count = 0;
int num1, num2, num3, num4, num5;
int winnum;
//generating numbers
for (int i=0; i <5; i++)
{
lottery[i] =1+rand()%9;
}
//input
cout << "Enter a digit between 0-9: ";
cin >> num1;
// ...
cin >> num5;
winnum = rand();
//display
cout << "Winning Lottery Numbers: " << winnum << endl;
cout << "Your ticket Numbers: "
<< num1 << num2 << num3 << num4 << num5 << endl;
//matching the numbers
//HELP!
system("pause");
}
</code></pre>
| c++ | [6] |
1,153,833 | 1,153,834 | Simple Network Programming in C# for Beginners? | <p>I am currently new to C# and I need to understand simple server-client architecture!</p>
<p>I am currently trying to write a simple server/client program where basically a client can send a variable to a server and the server can send it to another client. Problem is that I am really blind to this as I am still very new to C# although I have some experience with Java (But still not with networking). </p>
<p>My question is:</p>
<ol>
<li>How many files will i Have to write?</li>
<li>Can anybody be nice enough to provide me with a framework or example for a program like this? </li>
<li>What is a TCP server? </li>
</ol>
<p>This is intended to be for an online game. One client will roll the dice and the server must show all the other clients that this is the value the first client rolled. </p>
<p>Any help would be greatly appreciated!</p>
| c# | [0] |
316,458 | 316,459 | Jquery session - one time execution of a script? | <p>I have this slider that opens / closes when you click on it, but I also made it so that it opens on page load as well, but now the problem is <strong>it opens on every page</strong> (since it's on every page).</p>
<p>Is it possible to somehow make it start automatically only <strong>once</strong> per session?</p>
| jquery | [5] |
4,579,919 | 4,579,920 | How to play a custom sound after the countdown timer ends? | <p>I am trying to implement the following functionality in my application</p>
<ol>
<li>The user selects a music file in one input field and time duration ( Seconds only ) in the other. </li>
<li>After the user presses ok, the count down timer starts and runs till the entered time duration expires and then the chosen music file should start playing.</li>
</ol>
<p>Can anybody please advise me on the best way to implementing this other than using the alarm manager?</p>
| android | [4] |
1,188,743 | 1,188,744 | Android refresh current activity | <p>I want to refresh my current activity. I have one refresh button on the top. when i click on button my activity should reload again. It should start again and delete all the instances of previous current activity.</p>
<p>Thanks
Vivek</p>
| android | [4] |
2,814,596 | 2,814,597 | Which is better for a background service WakeLock or startForeground | <p>Admittedly I am just kind of hacking here so I would like some knowledge.</p>
<p>I have a service I run in the background connected to another thread that counts down a timer. I was having problems with the count down dying after a while and presumed it was due to garbage collection of the service. I seem to have fixed the issue (and see no real battery use) using startForeground. Now I read about wakelocks, are there any best practices on when to use one or the other?</p>
<p>Thanks!</p>
| android | [4] |
4,501,189 | 4,501,190 | How to connect global server from local server in asp.net? | <p>Any one idea about how to connect the global server from local server?
i mean entering data in local server also be placed into global server database.How to do this?</p>
| asp.net | [9] |
188,296 | 188,297 | explain this java code please | <p>In this program if I enter 10 when it says enter a value what would be the output? <code>num1</code> becomes 10, while <code>num2</code> is 6, I don't understand what <code>num1 = num1</code> mean? <code>10 = 10 + 2 = 12</code>?</p>
<p>I think I understood it, it takes 10 from the user, <code>num1</code> is then assigned the value of <code>num1 + 2</code>, which is 12. <code>num2</code> then becomes <code>num1</code>, <code>12</code> then <code>12/6 = 2</code>.</p>
<p>Output: 2</p>
<pre><code>import java.util.*;
public class Calculate
{
public static void main (String[] args)
{
Scanner sc = new Scanner(system.in);
int num1, num2;
num2 = 6;
System.out.print("Enter value");
num1 = sc.nextInt();
num1 = num1 + 2;
num2 = num1 / num2;
System.out.println("result = " + num2);
}
}
</code></pre>
| java | [1] |
2,298,330 | 2,298,331 | how to set width of an element in jQuery | <p>How do I set the width of the #book to width of #clickme a ? If I say $(this).width() in the callback function it gives me the width of #book.There are more than one anchor tags in #clickme.I need to increase the width at the end of the animation,please have a look at let me know</p>
<pre><code>$('#clickme a').click(function() {
$('#book').animate({
opacity: 0.25,
left: '+=50',
height: 'toggle'
}, 5000, function() {
//set width of #book to width of #clickme a item
});
});
</code></pre>
<p>Thank You</p>
| jquery | [5] |
4,756,106 | 4,756,107 | Android Hidden Process | <p>creating a process in android which must not be listed in the PROCESS LISTING / TASK MANAGER etc ...</p>
<p>Or a method of code injection were i can start a new PROCESS from another APK</p>
<p>Thanks in advance.</p>
| android | [4] |
4,124,876 | 4,124,877 | How to get a substring from string through PHP? | <p>Hi want to change the displayed username like [email protected] to only abcd.
so for this i should clip the part starting from @.</p>
<p>I can do this very easily through variablename.substring() function in Java or C# , but I m not aware with the syntax of PHP.
So help me do that .</p>
<p>Suppose i m having variable like .</p>
<pre><code>$username = "[email protected]";
$username = some
</code></pre>
<p>string manipultion functiona should get called here ;
so that
echo $username;
can results in abcd only.</p>
| php | [2] |
1,974,694 | 1,974,695 | A minor issue while iteration of array in php.Guidance please | <p>I have several files in a directory.I want to display all those filenames with the extension .txt and .jpeg</p>
<pre><code><?php
if ($handle = opendir("/home/work/collections/utils/")) {
while (false !== ($file = readdir($handle))) {
if ($file == '.' || $file == '..') {
continue;
}
$actual_file=pathinfo("/etrade/home/collections/utils");
if (($actual_file["extension"]== "txt") ||
($actual_file["extension"]== "jpg") ||
($actual_file["extension"]== "pdf")) {
//Require changes here.Dont know how to iterate and get the list of files
echo "<td>"."\n"." $actual_file['basename']."</a></td>";
}
}
closedir($handle);
}
</code></pre>
<p>Please help me on how to iterate and get the list of files .For instance I want all files with jpg extension in a seperate column and pdf files in a seperate column(since I am going to display in a table)</p>
| php | [2] |
2,419,278 | 2,419,279 | Image processing 1 bit images | <p>I am trying to understand the basics for image processing an image of a corridor. I have have used PIL to convert find the edges in an image, then I have converted it to a 1 bit image. I know what I want to be able to extract - the longest horizontal and diagonal lines that can be found in the image. Any ideas?</p>
<pre><code>from PIL import *
import Image, ImageFilter
im = im.open("c:\Python26\Lib\site-packages\PIL\corridor.jpg")
imageInfo=list(im.getdata())
im.putdata(imageInfo)
print pic.size
for i in imageInfo2[180:220]:
if i==0:
print "This is a BLACK pixel"
elif i==255:
print "This is a WHITE pixel"
else:
print "ERROR"
</code></pre>
| python | [7] |
5,261,158 | 5,261,159 | ASP.NET: 1.1 to 2.0 upgrade | <p>what are some things i should be aware of before i begin this project? i've notice a few differences between this 1.1 site and our 2.0 sites: i noticed that every code behind file has a "Web Form Designer Generated Code" region which i'm guessing i won't need to transfer over to the 2.0 site.(?) There's also a "sitename".dll file in the bin folder which i was told is also a 1.1 thing and that dll file won't need to be transferred over to the 2.0 site.(?) at this <a href="http://stackoverflow.com/questions/274994/upgrading-asp-net-from-version-1-1-to-2-0-any-gotchas"><strong>-LINK-</strong></a>, the second answer mentions that my new 2.0 site should be created as a Web Application Project and not a Web Site project - does this apply to all 1.1 to 2.0 upgrades and should i consider doing this?</p>
<p>i would appreciate any advice at all on a 1.1 to 2.0 upgrade that you have. i should also mention that i am not allowed to upgrade to either 3.5 or 4.0 - it has to be 2.0. thanks.</p>
| asp.net | [9] |
1,915,345 | 1,915,346 | how to change size of button dynamic in android | <p>I try setWidth() and setheight() method but it not work </p>
| android | [4] |
3,664,049 | 3,664,050 | built-in Java classes/methods to convert between binary, decimal, and octal? | <p>i know of several general formulas for converting between binary, decimal, and octal, but i was wondering if java has any built-in methods or classes that convert between the three. for instance, in the Integer class, there are static methods such as toBinaryString, toOctalString, etc which allow for decimal conversion, but i haven't found any to convert the other way. anyone know of anything?</p>
<p>in particular, i am looking for methods to convert from octal and binary to decimal and between octal and binary</p>
<p>thanks! x</p>
| java | [1] |
5,553,133 | 5,553,134 | java dataoutput stream sending more bytes | <p>I have one server listening on port and ip and a client which will connect to this server.</p>
<pre><code>DataInputStream meterin=new DataInputStream(socket.getInputStream);
DataOutputStream modemds=new DataOutputStream(modems.getOutputStream);
</code></pre>
<p>now server is sending some data here:(CA F0 00 00 00 00 00 00 00 3A).But when I read this as</p>
<pre><code>int c;
byte bt[]=new byte[11]
c=meterin.read(bt,0,11)`
System.out.println("bytes"+c) // it is returning 10 bytes
modemds.write(bt,0,c)
</code></pre>
<p>but at client i am getting.
(CA F0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00).
which is more than 10 bytes even it is reading 10 bytes upwards.</p>
| java | [1] |
1,308,395 | 1,308,396 | how would I reimplement this code to be recursive? | <blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/4367260/creating-a-recursive-method-for-palindrome-in-java">creating a recursive method for Palindrome In java</a> </p>
</blockquote>
<p>This is my code that I have written. </p>
<pre><code>public boolean checkPalindrome(string word){
for(int i=0 ; i < word.length()/2;i++)
{
if(word.charAt(i) ! = word.charAt(word.length()-1-i))
return false;
}
return true;
}
</code></pre>
<p>The purpose of this method to check if a given string is a palindrome.</p>
| java | [1] |
665,965 | 665,966 | Shifting all the values in an array one index higher with the displaced last element placed as the first element | <p>I'm struggling with the below code in JS please help:</p>
<p>Currently trying to get</p>
<p>[20,30,40,50]</p>
<p>to be</p>
<p>[50,20,30,40]</p>
<p>any tips?</p>
<p>Here is the code I have so far below!</p>
<pre><code>// A program to shift all the values in an array one index higher, with the displaced last element being placed as the first element
var test = [20,30,40,50];
for (i=0; i<test.length;i++)
{
alert(test[i] + " is currently index: " + [i]);
}
test[0] = test[test.length-1];
for (i=0; i<test.length;i++)
{
alert(test[i] + " is now index: " + [i+1]);
}
</code></pre>
| javascript | [3] |
1,286,687 | 1,286,688 | Call a Python method by name | <p>If I have an object and a method name in a string, how can I call the method?</p>
<pre><code>class Foo:
def bar1(self):
print 1
def bar2(self):
print 2
def callMethod(o, name):
???
f = Foo()
callMethod(f, "bar1")
</code></pre>
| python | [7] |
1,999,987 | 1,999,988 | Renaming OS files | <p>I am trying to rename files based on their extensions. Below is my code, Somehow my os.rename isn't working. There aren't any errors though. I got no idea what is wrong. Hope you guys could help. Thanks.</p>
<pre><code>import os
import glob
directory = raw_input("directory? ")
ext = raw_input("file extension? ")
r = raw_input("replace name")
pattern = os.path.join(directory, "*" + ext)
matching_files = glob.glob(pattern)
file_number = len(matching_files)
for filename in os.listdir(directory):
if ext in filename:
path = os.path.join(directory, filename)
seperated_names = os.path.splitext(filename)[0]
replace_name = filename.replace(seperated_names, r)
split_new_names = os.path.splitext(replace_name)[0]
for pad_number in range(0, file_number):
padded_numbers = "%04d" % pad_number
padded_names = "%s_%s" % (split_new_names, padded_numbers)
newpath = os.path.join(directory, padded_names)
newpathext = "%s%s" % (newpath, ext)
new_name = os.rename(path, newpathext)
</code></pre>
| python | [7] |
Subsets and Splits