PostId int64 13 11.8M | PostCreationDate stringlengths 19 19 | OwnerUserId int64 3 1.57M | OwnerCreationDate stringlengths 10 19 | ReputationAtPostCreation int64 -33 210k | OwnerUndeletedAnswerCountAtPostTime int64 0 5.77k | Title stringlengths 10 250 | BodyMarkdown stringlengths 12 30k | Tag1 stringlengths 1 25 ⌀ | Tag2 stringlengths 1 25 ⌀ | Tag3 stringlengths 1 25 ⌀ | Tag4 stringlengths 1 25 ⌀ | Tag5 stringlengths 1 25 ⌀ | PostClosedDate stringlengths 19 19 ⌀ | OpenStatus stringclasses 5
values | unified_texts stringlengths 47 30.1k | OpenStatus_id int64 0 4 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
7,923,565 | 10/27/2011 23:19:13 | 229,326 | 12/11/2009 03:17:40 | 71 | 7 | HTML error message recurs too quickly | From the submit button's onClick, I am displaying a validation error in a DIV with:
msgStr = validate(...);
document.getElementById("msgArea").innerHTML = msgStr;
But if the user clicks submit again (possibly changing the data but getting the same validation error), there is no feedback to them that the ... | javascript | dhtml | user-experience | null | null | null | open | HTML error message recurs too quickly
===
From the submit button's onClick, I am displaying a validation error in a DIV with:
msgStr = validate(...);
document.getElementById("msgArea").innerHTML = msgStr;
But if the user clicks submit again (possibly changing the data but getting the same validation err... | 0 |
9,710,666 | 03/14/2012 21:37:55 | 737,195 | 05/03/2011 19:43:54 | 56 | 2 | URL Regex Matcher (Idea) | Would it be a lot easier to make a simple regex for finding urls, then have another script to see if that page give a 404 or not? I've always wondered if this would be a faster, and easier solution than taking years to develop the "perfect" url detector. | regex | url | solution | null | null | 03/17/2012 22:22:45 | not a real question | URL Regex Matcher (Idea)
===
Would it be a lot easier to make a simple regex for finding urls, then have another script to see if that page give a 404 or not? I've always wondered if this would be a faster, and easier solution than taking years to develop the "perfect" url detector. | 1 |
10,704,833 | 05/22/2012 15:11:02 | 648,026 | 03/07/2011 11:00:57 | 171 | 5 | Tomcat and multiple domains/applications | Currently I run single tomcat with single WAR application on port 80
<BR/>The domain name *www.foo.org* is pointed to this server ip
<BR/>What is the procedure of adding *www.bar.org* domain for a diffarent client on port 80?
<BR/>Thank you
| tomcat | null | null | null | null | null | open | Tomcat and multiple domains/applications
===
Currently I run single tomcat with single WAR application on port 80
<BR/>The domain name *www.foo.org* is pointed to this server ip
<BR/>What is the procedure of adding *www.bar.org* domain for a diffarent client on port 80?
<BR/>Thank you
| 0 |
4,683,778 | 01/13/2011 18:31:45 | 407,943 | 08/01/2010 13:28:31 | 165 | 17 | jQuery slider from top like the one on Stackoverflow | I want to implement a similar slider as SO are using for when a user get's a badge.
Can anyone show me an example please?
Thanks. | jquery | null | null | null | null | null | open | jQuery slider from top like the one on Stackoverflow
===
I want to implement a similar slider as SO are using for when a user get's a badge.
Can anyone show me an example please?
Thanks. | 0 |
8,009,357 | 11/04/2011 12:45:28 | 1,029,658 | 11/04/2011 12:25:38 | 1 | 0 | Performance and networking of Eclipse-run applet vs web applet | I have made a fairly simple turn-based multiplayer web game in an applet. My question is about the performance. I was noticing that there was a really long gap between a player taking his turn and the rest of the players seeing all the updates. It could be as long as 10 seconds for a single move/action.
The game ... | java | eclipse | swing | applet | null | null | open | Performance and networking of Eclipse-run applet vs web applet
===
I have made a fairly simple turn-based multiplayer web game in an applet. My question is about the performance. I was noticing that there was a really long gap between a player taking his turn and the rest of the players seeing all the updates. It c... | 0 |
11,489,562 | 07/15/2012 05:01:35 | 1,502,224 | 07/04/2012 17:59:12 | 1 | 0 | I can't get my Thread or loop functioning properly | So I have been working on this project all day because I am trying to learn about the timePicker and dealing with time in java and with the android sdk. So right now I have the following set up:
package com.dicamillo.alarm;
import java.util.Calendar;
import android.app.Activity;
import... | java | android | sdk | null | null | null | open | I can't get my Thread or loop functioning properly
===
So I have been working on this project all day because I am trying to learn about the timePicker and dealing with time in java and with the android sdk. So right now I have the following set up:
package com.dicamillo.alarm;
import java.util.Calen... | 0 |
8,025,232 | 11/06/2011 04:34:22 | 1,031,835 | 11/06/2011 03:59:56 | 1 | 0 | move sprite by SneakyJoystick | Sneakyjoystick i used to operate sprite, how to ensure that the spirit moves i set the minimum distance?thanks
my code
-(int)applyJoystick:(SneakyJoystick *)Joystick forTimeDelta:(float)deltaTime
{
...
CGPoint newPosition = ccp(oldPosition.x + scaledVelocity.x*deltaTime,oldPosition.y + scaledVe... | objective-c | sprite | null | null | null | 11/11/2011 10:54:30 | not a real question | move sprite by SneakyJoystick
===
Sneakyjoystick i used to operate sprite, how to ensure that the spirit moves i set the minimum distance?thanks
my code
-(int)applyJoystick:(SneakyJoystick *)Joystick forTimeDelta:(float)deltaTime
{
...
CGPoint newPosition = ccp(oldPosition.x + scaledVelocity.x... | 1 |
5,398,972 | 03/22/2011 23:07:59 | 441,634 | 09/07/2010 16:30:01 | 86 | 0 | How much should an application know about its database ? | I'm building a message service for an application. Users are identified by an email address and uid. Uid is also used as the primary key for the user table. I find it faster and simpler to allow my application to see and use that UID than to work with the user's email address.
Does it matter that my application kno... | untagged | null | null | null | null | 11/24/2011 22:21:26 | off topic | How much should an application know about its database ?
===
I'm building a message service for an application. Users are identified by an email address and uid. Uid is also used as the primary key for the user table. I find it faster and simpler to allow my application to see and use that UID than to work with the us... | 2 |
7,143,526 | 08/22/2011 05:32:41 | 326,597 | 04/27/2010 06:09:39 | 137 | 19 | How to develop online app distribution platform (eg. alternative to iPhone App Store) | I want to develop an app store from where anybody can download the app for apple, android or for blackberry (definitely I am not asking that one single app will run in all platform; there will be separate list of app platforms). For example, I want to develop web application similar as [Amazon Appstore for Android][1] ... | iphone | android | blackberry | mobile | app-store | 08/22/2011 12:12:01 | not constructive | How to develop online app distribution platform (eg. alternative to iPhone App Store)
===
I want to develop an app store from where anybody can download the app for apple, android or for blackberry (definitely I am not asking that one single app will run in all platform; there will be separate list of app platforms). ... | 4 |
6,146,059 | 05/26/2011 22:58:41 | 206,617 | 11/09/2009 05:06:28 | 1 | 0 | How can I detect the number of cores in x86 assembly? | I am writing a very simple operating system as a learning tool for myself. My current task is detecting as much about the hardware as possible.
I have so far been able to find a lot of information about the CPU using the CPUID instruction. The one thing I can't seem to find is the number or physical and/or logical... | assembly | operating-system | x86 | null | null | null | open | How can I detect the number of cores in x86 assembly?
===
I am writing a very simple operating system as a learning tool for myself. My current task is detecting as much about the hardware as possible.
I have so far been able to find a lot of information about the CPU using the CPUID instruction. The one thing I ... | 0 |
7,134,750 | 08/20/2011 21:17:41 | 904,078 | 08/20/2011 20:49:44 | 1 | 0 | saving a movieClip to disk as swf in air, then reading it again | i have seen almost all relevant threads on almost whole internet. and i m still confused..
i m working on a drawing app ( flex / air ),
1- where user loads image file,(bitmapdata > bitmap > movieclip base layer)
2- add layer ( new sprite > movieclip "second object in display list")
3- draw on this sp... | flex | actionscript-3 | air | bytearray | null | null | open | saving a movieClip to disk as swf in air, then reading it again
===
i have seen almost all relevant threads on almost whole internet. and i m still confused..
i m working on a drawing app ( flex / air ),
1- where user loads image file,(bitmapdata > bitmap > movieclip base layer)
2- add layer ( new sprite... | 0 |
11,580,644 | 07/20/2012 13:45:24 | 1,534,779 | 07/18/2012 12:27:28 | 1 | 0 | Assistance required with a test class | I have the following code and I need to create a new testprogram that creates two objects
Person1 and Person2 and you have to manually add the namn, personnumer , adress etc to these two objects.
Print these two objects data
Change the adress on Person1
Let Person2 have a birthday
How do I do that, all ass... | java | null | null | null | null | 07/20/2012 15:46:38 | not a real question | Assistance required with a test class
===
I have the following code and I need to create a new testprogram that creates two objects
Person1 and Person2 and you have to manually add the namn, personnumer , adress etc to these two objects.
Print these two objects data
Change the adress on Person1
Let Person2 hav... | 1 |
11,465,588 | 07/13/2012 06:58:02 | 792,629 | 06/10/2011 10:59:42 | 26 | 1 | Telerik mvc grid client template incorrect output with a placeholder | I have the following client template...
.ClientTemplate("<a href='javascript:showQuestionChoiceWindow('<#= QuestionId #>') class='t-button t-grid-edit'>Choices</a>").Title("");
When the above is rendered, I get the following output:
<a class="t-button t-grid-edit" 971405d2-a08a-436a-ab79-7e45961c5ffb')=""href=... | mvc | telerik | grid | null | null | null | open | Telerik mvc grid client template incorrect output with a placeholder
===
I have the following client template...
.ClientTemplate("<a href='javascript:showQuestionChoiceWindow('<#= QuestionId #>') class='t-button t-grid-edit'>Choices</a>").Title("");
When the above is rendered, I get the following output:
<a c... | 0 |
8,828,931 | 01/12/2012 01:12:32 | 1,144,444 | 01/12/2012 01:00:03 | 1 | 0 | How to communicate windows phone7.1 emulator like silverlight spy tool? | We want to create windows phone7 application GUI testing tool.
but Do not access windows phone7 emulator.
Please let us know how to approach or tip
| windows-phone-7 | testing | null | null | null | 01/12/2012 16:49:34 | not a real question | How to communicate windows phone7.1 emulator like silverlight spy tool?
===
We want to create windows phone7 application GUI testing tool.
but Do not access windows phone7 emulator.
Please let us know how to approach or tip
| 1 |
3,830,747 | 09/30/2010 13:06:56 | 267,153 | 11/20/2009 19:20:29 | 594 | 37 | About NHibernate's ISession | In [this][1] question, the user asks the better way to close sessions because he was having some errors.
The most voted answer is Ayende's answer that says:
>You should always use session.Dispose(); The other are for very strange occurances
Should I really always call `session.Dispose()`? Isn't enough to cal... | nhibernate | isession | null | null | null | null | open | About NHibernate's ISession
===
In [this][1] question, the user asks the better way to close sessions because he was having some errors.
The most voted answer is Ayende's answer that says:
>You should always use session.Dispose(); The other are for very strange occurances
Should I really always call `sessio... | 0 |
1,997,795 | 01/04/2010 06:21:17 | 234,322 | 12/18/2009 05:05:53 | 237 | 0 | what is the 'a' mean in my code. | import decimal # Decimals
a=decimal.getcontext().copy()
print a
thanks.
what is the useful of a. | python | null | null | null | null | 01/26/2012 13:11:21 | not a real question | what is the 'a' mean in my code.
===
import decimal # Decimals
a=decimal.getcontext().copy()
print a
thanks.
what is the useful of a. | 1 |
10,025,657 | 04/05/2012 09:02:34 | 820,750 | 06/29/2011 09:24:16 | 444 | 16 | WPF Frame, How to communicate with frame page.xaml |
- I'm coding a windows form using WPF, XAML, C#.
- I have a Frame object created in MainWindow.xaml, and the frame
points to Login.xaml.
- Login.xaml handles a login operation for a user and the logic for
this is stored in Login.xaml.cs.
How can I get Login.xaml to communicate with the code in Mai... | c# | .net | wpf | xaml | null | null | open | WPF Frame, How to communicate with frame page.xaml
===
- I'm coding a windows form using WPF, XAML, C#.
- I have a Frame object created in MainWindow.xaml, and the frame
points to Login.xaml.
- Login.xaml handles a login operation for a user and the logic for
this is stored in Login.xaml.cs.
How ... | 0 |
7,387,204 | 09/12/2011 11:33:10 | 898,366 | 08/17/2011 09:41:49 | 3 | 0 | Why does the file can be opened while it was downloaded in sd and not in data/data/packagename? | Intent intent = new Intent("android.intent.action.VIEW");
intent.addCategory("android.intent.category.DEFAULT");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Uri uri = Uri.fromFile(new File(path));
intent.setDataAndType(uri, "image/*");
startActivity(intent);
the same code when the path is /m... | java | android | application | null | null | null | open | Why does the file can be opened while it was downloaded in sd and not in data/data/packagename?
===
Intent intent = new Intent("android.intent.action.VIEW");
intent.addCategory("android.intent.category.DEFAULT");
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
Uri uri = Uri.fromFile(new File(path));
... | 0 |
1,009,110 | 06/17/2009 19:37:35 | 64,334 | 02/09/2009 21:08:32 | 638 | 21 | Learning NHibernate | I am interested in learning NHibernate.
So, I found this:
[http://www.summerofnhibernate.com/][1]
I would like to watch these, but I am afraid that the videos are for a previous version of NHibernate. Is this true and if so should I still watch them? Is there a current video series?
Any other suggestions for ... | nhibernate | orm | .net | null | null | 09/18/2011 12:49:18 | not constructive | Learning NHibernate
===
I am interested in learning NHibernate.
So, I found this:
[http://www.summerofnhibernate.com/][1]
I would like to watch these, but I am afraid that the videos are for a previous version of NHibernate. Is this true and if so should I still watch them? Is there a current video series?
A... | 4 |
9,976,931 | 04/02/2012 12:58:43 | 1,279,040 | 03/19/2012 16:21:52 | 3 | 0 | JQuery Mobile - Number of Rows in ListView | there is a way to know how many rows a Jquery ListView has?
thanks | jquery | listview | null | null | null | 04/29/2012 09:32:56 | not a real question | JQuery Mobile - Number of Rows in ListView
===
there is a way to know how many rows a Jquery ListView has?
thanks | 1 |
2,638,410 | 04/14/2010 14:55:35 | 304,392 | 03/29/2010 16:20:32 | 3 | 0 | EXC_BAD_ACCESS error when my view controller tries to access a singleton variable a second time | I have an app i building which is a simple naviagtion app. I do not want to load the data from my xml multiple times so I am using a singleton to load and hold the data. My first table pushes the view of the second table. This table calls the singleton and the get the array of data from there to display in the table.
... | iphone | singleton | exc-bad-access | null | null | null | open | EXC_BAD_ACCESS error when my view controller tries to access a singleton variable a second time
===
I have an app i building which is a simple naviagtion app. I do not want to load the data from my xml multiple times so I am using a singleton to load and hold the data. My first table pushes the view of the second tabl... | 0 |
8,768,895 | 01/07/2012 10:10:08 | 1,135,762 | 01/07/2012 09:16:33 | 1 | 0 | real time file publishing and sharing service without any plug-in for all types | I am looking to develop an application (java) which has below features:
1. Real time File publishing and Sharing service: When i am uploading a file, i will give an url (ex: www.dnsname/fg56g8Gk, fg56g8Gk is unique hash). Now others should be able to download or view the uploading/uploaded file from... | java | file-upload | null | null | null | 01/07/2012 16:45:53 | not a real question | real time file publishing and sharing service without any plug-in for all types
===
I am looking to develop an application (java) which has below features:
1. Real time File publishing and Sharing service: When i am uploading a file, i will give an url (ex: www.dnsname/fg56g8Gk, fg56g8Gk is unique ... | 1 |
8,609,521 | 12/22/2011 20:44:22 | 1,110,983 | 12/22/2011 02:57:57 | 11 | 0 | Extracting data from pdb file in Perl | The task is to create a program that reads and collects data from a pdb file, then display data when the user requests. The program should have 1 command line argument which is the pdb file, it should read the file and display the number of atoms in the file. Then it should prompt for a command from the user, the user ... | perl | pdb | null | null | null | 12/22/2011 23:17:09 | not a real question | Extracting data from pdb file in Perl
===
The task is to create a program that reads and collects data from a pdb file, then display data when the user requests. The program should have 1 command line argument which is the pdb file, it should read the file and display the number of atoms in the file. Then it should pr... | 1 |
9,043,108 | 01/28/2012 05:13:29 | 1,174,682 | 01/28/2012 01:31:37 | 1 | 0 | C# How do I find an IndexOf and delete a non-primitive item from a list? | C#
Have: List of items with properties
Need: Delete specific item inside of a list where the property matches my criteria.
I've been trying to do this with properties and IndexOf, etc.
I get errors with a mismatched type of 'string' instead of the non-primitive value.
I've been trying every which way for... | c# | delete | indexof | null | null | 01/28/2012 05:48:59 | not a real question | C# How do I find an IndexOf and delete a non-primitive item from a list?
===
C#
Have: List of items with properties
Need: Delete specific item inside of a list where the property matches my criteria.
I've been trying to do this with properties and IndexOf, etc.
I get errors with a mismatched type of 'strin... | 1 |
1,420,432 | 09/14/2009 09:00:01 | 122,963 | 06/15/2009 07:53:43 | 8 | 0 | Data between executables (ANSI C, MFC 4.1) | I have a structure and a member of it is char* * (2d pointer). I allocate space from EXE1 and call EXE2 with the data. I use memcpy to get all data on EXE2. The memory address on both EXE is the same (lets say 0x013740b0), though the data of char** on EXE2 are not present. How can I retrieve the data on EXE2?
Thank... | c++ | null | null | null | null | null | open | Data between executables (ANSI C, MFC 4.1)
===
I have a structure and a member of it is char* * (2d pointer). I allocate space from EXE1 and call EXE2 with the data. I use memcpy to get all data on EXE2. The memory address on both EXE is the same (lets say 0x013740b0), though the data of char** on EXE2 are not presen... | 0 |
6,922,899 | 08/03/2011 07:15:04 | 806,647 | 06/20/2011 12:46:56 | 27 | 0 | How to create app like iBooks | Is it possible to create app like iBooks?
I want to create app like iBooks. I want to know how i can curl the page of pdf.
Please share your ideas to create this app.
Thanks | iphone | null | null | null | null | 08/03/2011 10:22:12 | not a real question | How to create app like iBooks
===
Is it possible to create app like iBooks?
I want to create app like iBooks. I want to know how i can curl the page of pdf.
Please share your ideas to create this app.
Thanks | 1 |
147,864 | 09/29/2008 08:01:42 | 15,209 | 09/17/2008 07:16:37 | 26 | 7 | Tools for ensuring C code quality | What tools do you use to check your C code ?
That is, a tool that helps you determine if you don't have unwanted infinite loop, if you silently cast enum to int, etc. (like a C lint)
Please, precise if it is opensource and on which OS is runs.
**Edit** : telll also which C standard it supports | c | quality | null | null | null | null | open | Tools for ensuring C code quality
===
What tools do you use to check your C code ?
That is, a tool that helps you determine if you don't have unwanted infinite loop, if you silently cast enum to int, etc. (like a C lint)
Please, precise if it is opensource and on which OS is runs.
**Edit** : telll also which ... | 0 |
7,174,555 | 08/24/2011 11:16:15 | 256,196 | 01/21/2010 21:16:54 | 15,169 | 934 | Java favorite refactoring techniques | There are some common code patterns I find in other people's java code that can benefit from some simple refactoring.
What are your pet code pattern hates and their fixes (and the reason if it isn't obvious)?
I have taken to liberty of answering with a couple of my own pet hates. | java | refactoring | null | null | null | 08/24/2011 12:32:31 | not constructive | Java favorite refactoring techniques
===
There are some common code patterns I find in other people's java code that can benefit from some simple refactoring.
What are your pet code pattern hates and their fixes (and the reason if it isn't obvious)?
I have taken to liberty of answering with a couple of my own pe... | 4 |
5,768,699 | 04/24/2011 04:49:15 | 722,354 | 04/24/2011 04:49:15 | 1 | 0 | CSS Tab issue in Mozilla | I'm trying to figure out why my tabs look fine in webkit based browsers, and even IE7+. For some reason, they look wonky in Mozilla. Can anyone give me some tips to fix this?
Here is an example: http://jsbin.com/icomo4
Here is the css:
<style type="text/css">
ul#activity-tabs {
... | html | css | firefox | tabs | mozilla | null | open | CSS Tab issue in Mozilla
===
I'm trying to figure out why my tabs look fine in webkit based browsers, and even IE7+. For some reason, they look wonky in Mozilla. Can anyone give me some tips to fix this?
Here is an example: http://jsbin.com/icomo4
Here is the css:
<style type="text/css">
... | 0 |
8,613,288 | 12/23/2011 07:17:48 | 1,111,502 | 11/18/2011 13:37:25 | 1 | 0 | Which version of Kohana is used in ushahidi? | I have downloaded latest version of ushahidi,it is implemented on kohana framework,is any
one know which version of kohana is followed in developing the ushahidi.
Thanks
Regards
Mahesh.D | php5 | kohana | null | null | null | 12/28/2011 08:03:45 | off topic | Which version of Kohana is used in ushahidi?
===
I have downloaded latest version of ushahidi,it is implemented on kohana framework,is any
one know which version of kohana is followed in developing the ushahidi.
Thanks
Regards
Mahesh.D | 2 |
6,622,721 | 07/08/2011 09:48:58 | 835,135 | 07/08/2011 09:48:58 | 1 | 0 | How verbose/granular should your tests be? | I recently started a new project where I decided to adopt writing unit tests for most functions. Prior to this my testing was limited to sporadically writing test "functions" to ensure something worked as expected, and then never bothering to update the test functions, clearly not good.
Now that I've written a fair ... | c++ | unit-testing | null | null | null | 02/09/2012 17:17:43 | off topic | How verbose/granular should your tests be?
===
I recently started a new project where I decided to adopt writing unit tests for most functions. Prior to this my testing was limited to sporadically writing test "functions" to ensure something worked as expected, and then never bothering to update the test functions, cl... | 2 |
3,939,217 | 10/15/2010 03:07:12 | 469,652 | 10/07/2010 22:00:17 | 39 | 0 | Matplotlib how to draw on figure on PIL image | I've got a new problem here, I wish to inputs a PIL image object, and then draw the figure that generated from matplotlib, and then return the PIL image object. How could I achieve this? | python | matplotlib | pil | null | null | null | open | Matplotlib how to draw on figure on PIL image
===
I've got a new problem here, I wish to inputs a PIL image object, and then draw the figure that generated from matplotlib, and then return the PIL image object. How could I achieve this? | 0 |
6,702,626 | 07/15/2011 04:15:38 | 485,445 | 10/24/2010 04:41:38 | 40 | 2 | c# Windows service restarted occasionally | I have written a windows service in c# that's designed not to stop or restart.
In the constructor, there is a log that writes something like "Starting <ProgramName> Application".
So i left it running for more than a week and I can see that the constructor that writes the log is being executed. This leads me to be... | c# | windows | service | restart | null | null | open | c# Windows service restarted occasionally
===
I have written a windows service in c# that's designed not to stop or restart.
In the constructor, there is a log that writes something like "Starting <ProgramName> Application".
So i left it running for more than a week and I can see that the constructor that writes... | 0 |
2,766,387 | 05/04/2010 14:54:33 | 21,061 | 09/23/2008 11:55:20 | 3,205 | 145 | Databinding to the DataGridView (Enums + Collections) | I'm after a little help with the techniques to use for Databinding. It's been quite a while since I used any proper data binding and want to try and do something with the DataGridView. I'm trying to configure as much as possible so that I can simply designed the DatagridView through the form editor, and then use a cust... | c#-2.0 | datagridview | data-binding | null | null | null | open | Databinding to the DataGridView (Enums + Collections)
===
I'm after a little help with the techniques to use for Databinding. It's been quite a while since I used any proper data binding and want to try and do something with the DataGridView. I'm trying to configure as much as possible so that I can simply designed th... | 0 |
5,321,003 | 03/16/2011 04:19:57 | 450,121 | 09/16/2010 23:56:26 | 113 | 1 | Socket Authentication Server ? | I am currently playing with java to create an authentication server for a desktop app and so far I have been able to make both the client and server communicate like a chat server/client for a start.
I do realise I only got a small portion of it working and there are many things to come and to learn but right now at... | java | authentication | client | communication | null | null | open | Socket Authentication Server ?
===
I am currently playing with java to create an authentication server for a desktop app and so far I have been able to make both the client and server communicate like a chat server/client for a start.
I do realise I only got a small portion of it working and there are many things t... | 0 |
8,105,033 | 11/12/2011 14:24:17 | 1,043,190 | 11/12/2011 14:00:41 | 1 | 0 | Fleet management software/service C# and any SQL software | Good day. I am to implement a simple fleet(taxi) management software/service using C# and mySQL. I have done my readings and research but still I am having a hard time to how and where to start. Below is the qualifications I would like to implement:
1. A GSM modem (simcom 900d) connected to my PC via RS232 to USB ca... | c# | sql | server | null | null | 11/12/2011 20:30:44 | not a real question | Fleet management software/service C# and any SQL software
===
Good day. I am to implement a simple fleet(taxi) management software/service using C# and mySQL. I have done my readings and research but still I am having a hard time to how and where to start. Below is the qualifications I would like to implement:
1. A... | 1 |
2,540,900 | 03/29/2010 20:07:20 | 224,988 | 12/04/2009 18:31:03 | 739 | 42 | When is a device token assigned? | I am trying the Urban Airship APNS development push server. When I run their sample app, I can't seem to get the Device Token. What needs to be done to make sure the token exists?
I've checked the provisioning profile and the bundle id.
Does my server need to push (through UrbanAirship) for the token to be generate... | apns | iphone | iphone-sdk-3.0 | push-notification | null | null | open | When is a device token assigned?
===
I am trying the Urban Airship APNS development push server. When I run their sample app, I can't seem to get the Device Token. What needs to be done to make sure the token exists?
I've checked the provisioning profile and the bundle id.
Does my server need to push (through Urba... | 0 |
8,675,396 | 12/30/2011 01:45:26 | 486,167 | 10/25/2010 07:46:18 | 56 | 2 | Copy colored text from Wikndows command line and Linux shell. | Is there a way to retain color when copying text from a command line in Windows and Linux? | shell | command-line | colors | null | null | 12/30/2011 01:56:56 | off topic | Copy colored text from Wikndows command line and Linux shell.
===
Is there a way to retain color when copying text from a command line in Windows and Linux? | 2 |
11,157,711 | 06/22/2012 14:01:34 | 60,823 | 01/30/2009 21:31:54 | 153 | 6 | Best calendar widget for z3c.form schema.Date? | I have a z3c.form with fields of type zope.schema.Date. I would like to change the widget to something like jqueryui calendar. What package would you recommend me?
They are currently rendered with the default widgets, one text box for day, one select for month and a text box for year.
Thanks in advance. | plone | null | null | null | null | 06/23/2012 15:44:29 | not constructive | Best calendar widget for z3c.form schema.Date?
===
I have a z3c.form with fields of type zope.schema.Date. I would like to change the widget to something like jqueryui calendar. What package would you recommend me?
They are currently rendered with the default widgets, one text box for day, one select for month and ... | 4 |
8,791,846 | 01/09/2012 16:38:19 | 198,004 | 10/28/2009 11:14:10 | 698 | 6 | Too many arguments for open() | I'm in the process of open sourcing some code which was written by myself and a few other individuals. In one of the code segments written by one of the other individuals, I am seeing the following:
open(filePath, O_RDONLY | O_CREAT, O_WRONLY | O_CREAT, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
open(filePath,... | c++ | gcc | open | null | null | null | open | Too many arguments for open()
===
I'm in the process of open sourcing some code which was written by myself and a few other individuals. In one of the code segments written by one of the other individuals, I am seeing the following:
open(filePath, O_RDONLY | O_CREAT, O_WRONLY | O_CREAT, S_IRUSR | S_IWUSR | S_IR... | 0 |
4,335,465 | 12/02/2010 13:25:28 | 528,018 | 12/02/2010 13:23:13 | 1 | 0 | What is the code for implementing sms and mail facilty in an web application? | I m building a web application and i want to add these facility.I m buiding in PHP and the platform is opensuse(Open Source). | php | null | null | null | null | 12/02/2010 16:21:00 | not a real question | What is the code for implementing sms and mail facilty in an web application?
===
I m building a web application and i want to add these facility.I m buiding in PHP and the platform is opensuse(Open Source). | 1 |
6,707,657 | 07/15/2011 13:24:14 | 561,640 | 01/03/2011 19:01:35 | 64 | 5 | Python - detect charset and convert to utf-8 | Is there any universal method to detect string charset? I user IPTC tags and have no known encoding. I need to detect it and then change them to utf-8.
Anybody can help? | python | utf-8 | python-2.x | null | null | null | open | Python - detect charset and convert to utf-8
===
Is there any universal method to detect string charset? I user IPTC tags and have no known encoding. I need to detect it and then change them to utf-8.
Anybody can help? | 0 |
4,672,750 | 01/12/2011 18:51:37 | 565,877 | 01/06/2011 18:19:05 | 15 | 2 | simple dom question | say I have
<div id="searchform">
<div style="float:right">
<a href="~">Advanced Search</a>
</div>
<div id="resultStats">
About 5 trillion results
</div>
</div>
I just need to change the first child to float: bottom instead of float:right. | dom | nodes | selectnodes | google-chrome-devtools | null | null | open | simple dom question
===
say I have
<div id="searchform">
<div style="float:right">
<a href="~">Advanced Search</a>
</div>
<div id="resultStats">
About 5 trillion results
</div>
</div>
I just need to change the first child to float: bottom instead of float:ri... | 0 |
2,983,097 | 06/06/2010 04:35:17 | 359,527 | 06/06/2010 04:30:32 | 1 | 0 | How to work with WordPress | How to work with WordPress | wordpress | null | null | null | null | 06/06/2010 05:00:48 | not a real question | How to work with WordPress
===
How to work with WordPress | 1 |
10,013,459 | 04/04/2012 14:41:31 | 1,226,454 | 02/22/2012 17:08:02 | 3 | 0 | Call a rmi method from the server | I am just asking myself if it's possible to call a method of the Interface (extending Remote) in order to recover a variable of a Remote object I have already created on the client side?
My project is to calculate a MonteCarloStandartOption on several servers. I would like to enter the number of servers on the client ... | java | rmi | null | null | null | 04/05/2012 11:52:21 | not a real question | Call a rmi method from the server
===
I am just asking myself if it's possible to call a method of the Interface (extending Remote) in order to recover a variable of a Remote object I have already created on the client side?
My project is to calculate a MonteCarloStandartOption on several servers. I would like to ent... | 1 |
3,424,399 | 08/06/2010 13:50:49 | 150,062 | 08/04/2009 00:07:17 | 102 | 2 | Insert space between two captalized words? | I have two words combined like
KitnerCoster
And I want to add a space in the middle, is there any sort of trick anyone knows if seperating two words that are both captalized and that is the only difference.
Regards, | php | null | null | null | null | null | open | Insert space between two captalized words?
===
I have two words combined like
KitnerCoster
And I want to add a space in the middle, is there any sort of trick anyone knows if seperating two words that are both captalized and that is the only difference.
Regards, | 0 |
1,327,157 | 08/25/2009 09:38:35 | 15,371 | 09/17/2008 08:45:13 | 1,279 | 30 | What's the C++ version of Guid.NewGuid()? | I need to create a `GUID` in an unmanaged windows C++ project. I'm used to C#, where I'd use `Guid.NewGuid()`. What's the (unmanaged windows) C++ version? | c++ | guid | null | null | null | null | open | What's the C++ version of Guid.NewGuid()?
===
I need to create a `GUID` in an unmanaged windows C++ project. I'm used to C#, where I'd use `Guid.NewGuid()`. What's the (unmanaged windows) C++ version? | 0 |
9,799,444 | 03/21/2012 06:11:21 | 1,280,577 | 03/20/2012 10:09:41 | 4 | 0 | How to fetch data from two tables in pho using php |
I want to get data from two tables i have patient first name and last name in one table and appointment time in other table i am using following way but it gives error
if (!function_exists('json_encode'))
{
function json_encode($a=false)
{
if (is_null($a)) return... | php | null | null | null | null | 06/19/2012 12:44:01 | not a real question | How to fetch data from two tables in pho using php
===
I want to get data from two tables i have patient first name and last name in one table and appointment time in other table i am using following way but it gives error
if (!function_exists('json_encode'))
{
function json_enc... | 1 |
10,225,714 | 04/19/2012 09:59:28 | 1,047,775 | 11/15/2011 14:24:40 | 37 | 1 | securing PHP code | I do quite large project for a client and I would like (somehow) to secure code form event that mid dishonest client was not going to pay me for the work. :)
The contract is written that the project must provide application with a sources.
So far I mostly been writing in .NET where I was protecting myself against suc... | php | null | null | null | null | 04/20/2012 12:14:55 | off topic | securing PHP code
===
I do quite large project for a client and I would like (somehow) to secure code form event that mid dishonest client was not going to pay me for the work. :)
The contract is written that the project must provide application with a sources.
So far I mostly been writing in .NET where I was protec... | 2 |
4,616,019 | 01/06/2011 14:34:38 | 565,579 | 01/06/2011 14:31:23 | 1 | 0 | font size change after orientation screen change to horizontal | i have build application web on iphone, but the font size is change it to large when i rotate my iphone..
anybody know how to keep size the font?
thank you.. | iphone | android | fonts | size | null | null | open | font size change after orientation screen change to horizontal
===
i have build application web on iphone, but the font size is change it to large when i rotate my iphone..
anybody know how to keep size the font?
thank you.. | 0 |
1,541,437 | 10/09/2009 01:46:14 | 91,396 | 04/16/2009 00:31:09 | 77 | 1 | Is the Apple Mac OS X Free? | I am quite new here with Max OS X development. Is the OS X free to download? Cause I am thinking to use this OS X and install into VMWare machine. I assume this ok right?
I am appreciated your feedback.
Thanks
| apple | null | null | null | null | 10/09/2009 01:49:17 | off topic | Is the Apple Mac OS X Free?
===
I am quite new here with Max OS X development. Is the OS X free to download? Cause I am thinking to use this OS X and install into VMWare machine. I assume this ok right?
I am appreciated your feedback.
Thanks
| 2 |
5,987,291 | 05/13/2011 04:39:04 | 699,655 | 01/06/2011 21:18:37 | 167 | 4 | browse photo in Photo Gallery in iphone | I want to upload the photo on server. how can i get the file path of this photo or browse the path. | iphone | objective-c | null | null | null | 05/13/2011 13:41:50 | not a real question | browse photo in Photo Gallery in iphone
===
I want to upload the photo on server. how can i get the file path of this photo or browse the path. | 1 |
11,463,818 | 07/13/2012 03:40:49 | 1,239,203 | 02/29/2012 01:54:05 | 98 | 1 | Some iteration through subreddit threads, then through comments in that thread | how can I iterate through all top posts in specific subreddit, then iterate through all the comments in that reddit, and scan those comments for the text, and if it finds that specific text, to reply, with a specific text. How can I do this all? | python | iterator | iteration | internet | reddit | 07/14/2012 14:19:46 | not a real question | Some iteration through subreddit threads, then through comments in that thread
===
how can I iterate through all top posts in specific subreddit, then iterate through all the comments in that reddit, and scan those comments for the text, and if it finds that specific text, to reply, with a specific text. How can I do ... | 1 |
216,359 | 10/19/2008 12:22:03 | 23,339 | 09/29/2008 04:41:02 | 100 | 2 | Break Statements In the real world | Been having a discussion on whirlpool about using break statements in for loops. I have been tought and also read else where that break statements should only be used with switch statements and with while loops on rare occasions.
My understanding is that you should only use for loops when you know the number of tim... | break | statement | null | null | null | 11/24/2011 17:18:15 | not constructive | Break Statements In the real world
===
Been having a discussion on whirlpool about using break statements in for loops. I have been tought and also read else where that break statements should only be used with switch statements and with while loops on rare occasions.
My understanding is that you should only use f... | 4 |
9,853,803 | 03/24/2012 17:20:46 | 1,290,249 | 03/24/2012 17:03:05 | 1 | 0 | Ideas on How To Create a Web(PHP)-Based Door Access System | Just wanted some ideas/tips as to how I should go about doing a system described in the title.
I thought about creating a PHP-based program that will serve mainly as a Gym Membership Management System, but will also function as a door access system.
What if, for example let's say, my client needs a web-based prog... | php | mysql | system | biometrics | web-based | 03/25/2012 17:27:31 | not a real question | Ideas on How To Create a Web(PHP)-Based Door Access System
===
Just wanted some ideas/tips as to how I should go about doing a system described in the title.
I thought about creating a PHP-based program that will serve mainly as a Gym Membership Management System, but will also function as a door access system.
... | 1 |
6,840,852 | 07/27/2011 07:29:07 | 33,584 | 11/03/2008 07:45:07 | 888 | 24 | Wordpress equivalent for ASP.NET | I do not know anything about PHP or Wordpress. But I was told Wordpress is very cool to use with PHP.
I use ASP.NET and would like to have a CMS for ASP.NET.
What is the best CMS to use for ASP.NET when cost is not an issue? | c# | asp.net | vb.net | content-management-system | null | 07/27/2011 07:37:31 | not constructive | Wordpress equivalent for ASP.NET
===
I do not know anything about PHP or Wordpress. But I was told Wordpress is very cool to use with PHP.
I use ASP.NET and would like to have a CMS for ASP.NET.
What is the best CMS to use for ASP.NET when cost is not an issue? | 4 |
4,304,460 | 11/29/2010 14:00:37 | 501,495 | 01/07/2010 10:15:19 | 8 | 3 | increase browser display time | I am trying to fetch data like Amazon or other sites. The process take time (about one or more hours) to fetch data. But in between the browser get off saying 'Page can not be displayed' in IE and other error in FF and all UI got lost. How to increase browser time to complete the task successfully. | c# | asp.net | webbrowser | null | null | 11/30/2010 13:17:49 | not a real question | increase browser display time
===
I am trying to fetch data like Amazon or other sites. The process take time (about one or more hours) to fetch data. But in between the browser get off saying 'Page can not be displayed' in IE and other error in FF and all UI got lost. How to increase browser time to complete the task... | 1 |
6,366,218 | 06/16/2011 01:35:08 | 800,648 | 06/16/2011 01:35:08 | 1 | 0 | Java Prime Number Algorithm | I am making a prime algorithm in java to calculate the number of primes up to 1 billion. The correct answers are commented below. I am making this program to try to make it run faster than the other one I created. Can someone please help me debug this?
public class PrimeCounter
{
private static int[] alreadyFou... | java | algorithm | primes | prime-factoring | prime-number | 06/16/2011 02:52:40 | not a real question | Java Prime Number Algorithm
===
I am making a prime algorithm in java to calculate the number of primes up to 1 billion. The correct answers are commented below. I am making this program to try to make it run faster than the other one I created. Can someone please help me debug this?
public class PrimeCounter
{
... | 1 |
4,605,113 | 01/05/2011 14:24:30 | 669,824 | 01/05/2011 14:24:30 | 1 | 0 | Deleting latest Wordpress tags from database | Hey guys, i need your help regarding Wordpress mySQL query.
**Situation**
I am using WordPress 3.0.1, installed one "Clever plugin" that automatically tagged my posts with tags. By mistake i marked that this plugin can tag also "related posts". So in the end this plugin not only created good and relevant tags to ... | sql | database | wordpress | delete | tags | null | open | Deleting latest Wordpress tags from database
===
Hey guys, i need your help regarding Wordpress mySQL query.
**Situation**
I am using WordPress 3.0.1, installed one "Clever plugin" that automatically tagged my posts with tags. By mistake i marked that this plugin can tag also "related posts". So in the end this ... | 0 |
11,299,574 | 07/02/2012 18:58:54 | 285,109 | 12/31/2009 19:13:01 | 708 | 0 | Regarding the way to add a directory to the PATH environment under Windows | While installing a third-party software, it asks me to add something to the PATH environment to the operating system. How to do that under Windows 7. | windows | null | null | null | null | 07/02/2012 19:19:59 | off topic | Regarding the way to add a directory to the PATH environment under Windows
===
While installing a third-party software, it asks me to add something to the PATH environment to the operating system. How to do that under Windows 7. | 2 |
10,617,092 | 05/16/2012 10:56:49 | 1,186,689 | 02/03/2012 04:05:17 | 71 | 4 | Send image through iphone | <br/> I want to send mms through iphone. i search a lot but failed<br/>
Please give me a good reference or link<br/>So i can implement mms thing in my iphone or alternative thing to it<br/>
thanks in advance | iphone | ipad | null | null | null | 05/16/2012 20:54:25 | not a real question | Send image through iphone
===
<br/> I want to send mms through iphone. i search a lot but failed<br/>
Please give me a good reference or link<br/>So i can implement mms thing in my iphone or alternative thing to it<br/>
thanks in advance | 1 |
6,061,031 | 05/19/2011 15:25:37 | 761,346 | 05/19/2011 15:19:52 | 1 | 0 | Write a function in c with which we can add more than one singly list... at same time..? | Is it possible to create a function with two arguments like *start1
which is start pointer or head node of first list and *curr1 to traverse or
link the list.
like
void add(struct list *firstx,struct list *currentx);
i have generated a code with it... but not able to store it...
please give me some sugges... | linked-list | null | null | null | null | 05/20/2011 12:54:32 | not a real question | Write a function in c with which we can add more than one singly list... at same time..?
===
Is it possible to create a function with two arguments like *start1
which is start pointer or head node of first list and *curr1 to traverse or
link the list.
like
void add(struct list *firstx,struct list *currentx);... | 1 |
1,920,220 | 12/17/2009 08:22:22 | 233,603 | 12/17/2009 08:18:05 | 1 | 0 | How do I set a backwards selection? | I'm working on a custom tokenfield based on textarea. The idea is to have a textarea with div elements absolutely positioned above, so it *looks* like they are in text area.
It was pain so far, but I managed to do pretty much everything, except one thing.
Is it even possible in javascript to set reverse-selection... | javascript | textarea | selection | null | null | null | open | How do I set a backwards selection?
===
I'm working on a custom tokenfield based on textarea. The idea is to have a textarea with div elements absolutely positioned above, so it *looks* like they are in text area.
It was pain so far, but I managed to do pretty much everything, except one thing.
Is it even possib... | 0 |
9,381,275 | 02/21/2012 16:31:35 | 1,046,445 | 11/14/2011 21:55:38 | 19 | 2 | how does URL other than www work | I don't know how to ask this question, so please bare with me.
Sometimes I have seen URLs like
mail.yahoo.com
image.craislist.com
How does this work?
What keyword should I put on Google to find some tutorial on this? | url | url-rewriting | null | null | null | 02/22/2012 02:06:56 | off topic | how does URL other than www work
===
I don't know how to ask this question, so please bare with me.
Sometimes I have seen URLs like
mail.yahoo.com
image.craislist.com
How does this work?
What keyword should I put on Google to find some tutorial on this? | 2 |
11,328,730 | 07/04/2012 12:03:31 | 1,501,492 | 07/04/2012 11:58:44 | 1 | 0 | How to resume from where it has stopped | Hi im making a website in php in that user has to upload his details in 4 steps if he stops somewhere in the middle and logs out... after some days if he come back he should start from where he has stopped.... Give me an | php | mysql | null | null | null | 07/04/2012 21:34:33 | not a real question | How to resume from where it has stopped
===
Hi im making a website in php in that user has to upload his details in 4 steps if he stops somewhere in the middle and logs out... after some days if he come back he should start from where he has stopped.... Give me an | 1 |
6,760,941 | 07/20/2011 11:07:44 | 541,786 | 12/14/2010 10:27:01 | 1,373 | 105 | Adobe photoshop online tutorials | I have just started using **Adobe photoshop** and was looking for online tutorials highlighting all its features from beginner to advance level. Rather a beginner guide will be really helpful.
Kindly help me for the same.
Nitish | image | design | photoshop | null | null | 07/20/2011 16:24:33 | off topic | Adobe photoshop online tutorials
===
I have just started using **Adobe photoshop** and was looking for online tutorials highlighting all its features from beginner to advance level. Rather a beginner guide will be really helpful.
Kindly help me for the same.
Nitish | 2 |
7,086,654 | 08/17/2011 00:16:57 | 539,490 | 12/12/2010 11:27:01 | 45 | 1 | Installing Postgres on windows for use with Ruby-on-Rails | Currently I get the following error:
> PGError (FATAL: password authentication failed for user "postgres" ):
when my app tries to access the database.
I wanted to test my SQL calls against postgres as my app regular breaks when pushed up to production on Heroku because of the stricter requirements of postgres (... | windows | ruby-on-rails-3 | postgresql | install | null | null | open | Installing Postgres on windows for use with Ruby-on-Rails
===
Currently I get the following error:
> PGError (FATAL: password authentication failed for user "postgres" ):
when my app tries to access the database.
I wanted to test my SQL calls against postgres as my app regular breaks when pushed up to producti... | 0 |
10,594,730 | 05/15/2012 05:39:40 | 1,148,258 | 01/13/2012 18:05:50 | 13 | 0 | Android SQLite DatabaseObjectNotClosedException | <br />
In a PoC Android app I'm building, I'm getting an `android.database.sqlite.DatabaseObjectNotClosedException` when garbage collector is being called on the app on close. This is happening even when I'm invoking the close method on both the `SQLiteDatabase` as well as the `SQLiteOpenHelper` objects that I'm using... | android | sqlite | sqliteopenhelper | null | null | null | open | Android SQLite DatabaseObjectNotClosedException
===
<br />
In a PoC Android app I'm building, I'm getting an `android.database.sqlite.DatabaseObjectNotClosedException` when garbage collector is being called on the app on close. This is happening even when I'm invoking the close method on both the `SQLiteDatabase` as ... | 0 |
11,332,292 | 07/04/2012 15:51:55 | 1,252,068 | 03/06/2012 11:35:36 | 6 | 1 | What happened to EmbeddedEntity? | I'm working my way through the GAE tutorial on datastore (https://developers.google.com/appengine/docs/java/datastore/entities).
I'm working with eclipse. When I try to find 'EmbeddedEntity' it's not found. Yet, it's in the JavaDoc (https://developers.google.com/appengine/docs/java/javadoc/com/google/appengine/api/d... | google-app-engine | gae-datastore | null | null | null | null | open | What happened to EmbeddedEntity?
===
I'm working my way through the GAE tutorial on datastore (https://developers.google.com/appengine/docs/java/datastore/entities).
I'm working with eclipse. When I try to find 'EmbeddedEntity' it's not found. Yet, it's in the JavaDoc (https://developers.google.com/appengine/docs/j... | 0 |
4,205,775 | 11/17/2010 15:10:53 | 510,944 | 11/17/2010 15:10:53 | 1 | 0 | Setting attributes of an EditText added dynamically in Android | I am developping an android app which downloads an xml and displays a layout with a number of edittexts, checkboxes, spinners, etc. added dynamically like this:
LinearLayout ll = new LinearLayout(this);
EditText nameField = new EditText(this);
ll.addView(nameField);
ScrollView sv = new ScrollView(... | android | layout | attributes | edittext | null | null | open | Setting attributes of an EditText added dynamically in Android
===
I am developping an android app which downloads an xml and displays a layout with a number of edittexts, checkboxes, spinners, etc. added dynamically like this:
LinearLayout ll = new LinearLayout(this);
EditText nameField = new EditText(thi... | 0 |
5,500,719 | 03/31/2011 13:35:12 | 339,753 | 05/12/2010 21:26:09 | 25 | 0 | Problems with boost signal2 | Why does this simple example not compile, and how can I get around the problem?
#include <iostream>
#include <boost/signals2/signal.hpp>
struct HelloWorld {
HelloWorld() {
i = 0;
}
void operator()() {
std::cout << "I is: " << i++ << std::... | c++ | boost | boost-signals | boost-signals2 | null | null | open | Problems with boost signal2
===
Why does this simple example not compile, and how can I get around the problem?
#include <iostream>
#include <boost/signals2/signal.hpp>
struct HelloWorld {
HelloWorld() {
i = 0;
}
void operator()() {
std:... | 0 |
5,818,080 | 04/28/2011 11:47:53 | 126,014 | 06/19/2009 22:38:23 | 41,985 | 1,187 | Is it possible to use active federation with the Azure Access Control Service? | The Windows Azure Access Control Service (ACS) enables federated authentication, but all the examples I've seen has been of **passive federation** (browser-based applications authenticating via a sequence of HTTP redirects and scripted HTTP posts).
Does the ACS support **active federation**?
In other words: assum... | azure | federated-identity | federation | accesscontrolservice | null | null | open | Is it possible to use active federation with the Azure Access Control Service?
===
The Windows Azure Access Control Service (ACS) enables federated authentication, but all the examples I've seen has been of **passive federation** (browser-based applications authenticating via a sequence of HTTP redirects and scripted ... | 0 |
8,592,724 | 12/21/2011 16:02:47 | 1,023,375 | 11/01/2011 09:19:35 | 25 | 3 | Multiple viewgroups within a fragment or multiple fragments within a viewgroup | What are the pro's to use fragments compared to viewgroups?
I ask this because..
I created some fragments: one with a grid, one with a list. Now I want to make screen transactions but I do not want to do this with activities (I have a flow component that will handle it). I need to do the transactions with use of f... | android | activity | fragment | viewgroup | disadvantages | null | open | Multiple viewgroups within a fragment or multiple fragments within a viewgroup
===
What are the pro's to use fragments compared to viewgroups?
I ask this because..
I created some fragments: one with a grid, one with a list. Now I want to make screen transactions but I do not want to do this with activities (I hav... | 0 |
9,859,975 | 03/25/2012 12:04:47 | 1,233,321 | 02/26/2012 02:58:48 | 21 | 0 | haml syntax error | I got this error after compiling the following code
Exception on line 2: undefined method `render' for #<Object:0x10de902b0>
Use --trace for backtrace.
Use --trace for backtrace.
the code
%h1 New place
= render 'form'
= link_to 'Back', places_path
how can I fix this I always ge... | haml | null | null | null | null | null | open | haml syntax error
===
I got this error after compiling the following code
Exception on line 2: undefined method `render' for #<Object:0x10de902b0>
Use --trace for backtrace.
Use --trace for backtrace.
the code
%h1 New place
= render 'form'
= link_to 'Back', places_path
how can... | 0 |
7,203,385 | 08/26/2011 10:30:53 | 757,059 | 05/17/2011 09:12:39 | 1 | 0 | Blogger Right section follwers section breaking problem | For the first time when i'm loading the page it was showing followers section perfect nothing breking problem, but when i' was going to show comments against the post that time was showing that follwers section break and no value was showing inside it, the portion under the heading Follwers.
Please suggest me, why i... | blogger | null | null | null | null | 08/26/2011 11:42:22 | too localized | Blogger Right section follwers section breaking problem
===
For the first time when i'm loading the page it was showing followers section perfect nothing breking problem, but when i' was going to show comments against the post that time was showing that follwers section break and no value was showing inside it, the po... | 3 |
9,517,473 | 03/01/2012 13:57:12 | 1,022,043 | 10/31/2011 13:31:42 | 49 | 0 | latex left align sidewaystable | Is it possible to left align a sidewaytable to make use of the extra space at the left of it?
Similar to the \LTleft\fill in longtable? I have not found a way to do this yet.
Thank you in advance | latex | null | null | null | null | 03/01/2012 16:45:57 | off topic | latex left align sidewaystable
===
Is it possible to left align a sidewaytable to make use of the extra space at the left of it?
Similar to the \LTleft\fill in longtable? I have not found a way to do this yet.
Thank you in advance | 2 |
1,866,965 | 12/08/2009 13:26:11 | 227,150 | 12/08/2009 13:26:11 | 1 | 0 | Is there a Database for ALL ENTITIES in the world? or an Object-oriented library? | I do not know why I want to get or make this, a relational database contains all entities in the world, or an object-oriented set of classes, structs, interfaces.. etc for EVERYTHING in the world!
Do you know where I can find something like this? | oop | erd | null | null | null | 12/08/2009 13:31:06 | not a real question | Is there a Database for ALL ENTITIES in the world? or an Object-oriented library?
===
I do not know why I want to get or make this, a relational database contains all entities in the world, or an object-oriented set of classes, structs, interfaces.. etc for EVERYTHING in the world!
Do you know where I can find some... | 1 |
1,077,254 | 07/02/2009 23:48:57 | 130,886 | 06/30/2009 07:27:20 | 26 | 0 | What's your best tip on marketing your programming blog? | I've just started freelancing and with it I have created a blog which I will write about open source projects I'm involved in, tutorials etc.
Why I started the blog market myself as a freelance developer. So I'm sitting down now and thinking about ways to market yourself.
Here's what I have come up with:
Join... | marketing | blogs | tips-and-tricks | null | null | null | open | What's your best tip on marketing your programming blog?
===
I've just started freelancing and with it I have created a blog which I will write about open source projects I'm involved in, tutorials etc.
Why I started the blog market myself as a freelance developer. So I'm sitting down now and thinking about ways t... | 0 |
3,321,592 | 07/23/2010 19:15:33 | 320,942 | 04/20/2010 03:18:34 | 36 | 2 | How do you create a file format? | I've been doing some reading on file formats and I'm very interested in them. I'm wondering what the process is to create a format. For example, a .jpeg, or .gif, or an audio format. What programming language would you use (if you use a programming language at all)?
The site warned me that this question might be cl... | file | formats | null | null | null | null | open | How do you create a file format?
===
I've been doing some reading on file formats and I'm very interested in them. I'm wondering what the process is to create a format. For example, a .jpeg, or .gif, or an audio format. What programming language would you use (if you use a programming language at all)?
The site wa... | 0 |
8,122,856 | 11/14/2011 14:14:49 | 360,646 | 06/07/2010 17:12:22 | 441 | 18 | parse UTF-16 encoded string as xml |
I have a `UTF-16` encoded xmlstring that I want to parse with php.
encoding to `UTF-8` isn't possible because not all the content can be represented in `UTF-8`
The problem is that when I try to use the `xml_parser_create("UTF-16")` and `xml_parse_into_struct` functions I get a message about UTF-16 not being suppo... | php | xml | utf-16 | null | null | null | open | parse UTF-16 encoded string as xml
===
I have a `UTF-16` encoded xmlstring that I want to parse with php.
encoding to `UTF-8` isn't possible because not all the content can be represented in `UTF-8`
The problem is that when I try to use the `xml_parser_create("UTF-16")` and `xml_parse_into_struct` functions I ge... | 0 |
5,417,946 | 03/24/2011 10:45:48 | 611,078 | 02/10/2011 04:11:32 | 79 | 1 | display full screen pdf in uiwebview | I am trying to load pdf in uiwebview but the pdf be displayed with white space on the write hand side
how to let be full screen displayed
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0,0,self.view.bounds.size.width,self.view.bounds.size.height)];
//webView.contentMode = UIViewCon... | iphone | objective-c | xcode | null | null | null | open | display full screen pdf in uiwebview
===
I am trying to load pdf in uiwebview but the pdf be displayed with white space on the write hand side
how to let be full screen displayed
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0,0,self.view.bounds.size.width,self.view.bounds.size.height... | 0 |
96,757 | 09/18/2008 20:45:42 | 92 | 08/01/2008 17:55:41 | 7,499 | 61 | What are the best books for Flex and Adobe AIR? | My team is about to build a new product and we are using Flex as the front end. There are other book posts on stackoverflow, but I couldn't find one that matched my needs.
My manager will be purchasing books for our team to use as a resource so...
What are the best books about Flex (including using a web browser... | books | flex | adobeair | null | null | 08/09/2011 12:05:38 | not constructive | What are the best books for Flex and Adobe AIR?
===
My team is about to build a new product and we are using Flex as the front end. There are other book posts on stackoverflow, but I couldn't find one that matched my needs.
My manager will be purchasing books for our team to use as a resource so...
What are the... | 4 |
10,032,619 | 04/05/2012 16:44:48 | 892,397 | 08/12/2011 19:56:30 | 348 | 18 | How to disable validation before calling UpdateModel in MVC3 Controller | I'm looking to enable "saving" of form data prior to submission.
I want users to be able to save form progress, even when the form is in an invalid state, and then come back to it at a later time.
Now, my only problem is that I want to be able to use `UpdateModel` method to update my model. However, as the form i... | asp.net-mvc-3 | form-validation | updatemodel | null | null | null | open | How to disable validation before calling UpdateModel in MVC3 Controller
===
I'm looking to enable "saving" of form data prior to submission.
I want users to be able to save form progress, even when the form is in an invalid state, and then come back to it at a later time.
Now, my only problem is that I want to b... | 0 |
5,010,160 | 02/15/2011 22:16:39 | 280,454 | 02/24/2010 15:38:51 | 168 | 0 | Eclipse won't show plugins after installation | I had been using eclipse in Ubuntu 9.10 without any problems. Recently I did an upgrade to 10.04, and it seems that my ~/.eclipse folder was overwritten. Now i tried installing my earlier plugins again, but when i restart eclipse, they don't appear. I can see these plugins in the "installed software" section. I can als... | eclipse | ubuntu | eclipse-plugin | null | null | null | open | Eclipse won't show plugins after installation
===
I had been using eclipse in Ubuntu 9.10 without any problems. Recently I did an upgrade to 10.04, and it seems that my ~/.eclipse folder was overwritten. Now i tried installing my earlier plugins again, but when i restart eclipse, they don't appear. I can see these plu... | 0 |
7,825,762 | 10/19/2011 17:53:20 | 954,843 | 09/20/2011 13:19:07 | 13 | 1 | Java Runtime Process Won't "Grep" | I'm executing some commands from the command line in my java program, and it appears that it doesn't allow me to use "grep"? I've tested this by removing the "grep" portion and the command runs just fine!
My code that DOESN'T work:
String serviceL = "someService";
Runtime rt = Runtime.getRuntime();
... | java | linux | process | runtime | grep | null | open | Java Runtime Process Won't "Grep"
===
I'm executing some commands from the command line in my java program, and it appears that it doesn't allow me to use "grep"? I've tested this by removing the "grep" portion and the command runs just fine!
My code that DOESN'T work:
String serviceL = "someService";
... | 0 |
8,268,767 | 11/25/2011 11:54:29 | 230,632 | 12/13/2009 10:43:08 | 793 | 6 | move/copy files under OSX using unix functions | I would like to copy (or move) files under Mac OS X as fast as possible while keeping the control of the copy process:
- If a target file already exists, have a way to ask if (overwrite, skip, rename), even if it is a subdirectory of a copied directory.
- Have progress of the copcy process (remaining time, sizes, ...... | osx | file | unix | copy | null | 11/26/2011 00:58:19 | not a real question | move/copy files under OSX using unix functions
===
I would like to copy (or move) files under Mac OS X as fast as possible while keeping the control of the copy process:
- If a target file already exists, have a way to ask if (overwrite, skip, rename), even if it is a subdirectory of a copied directory.
- Have progr... | 1 |
6,205,025 | 06/01/2011 17:06:48 | 779,864 | 06/01/2011 17:06:48 | 1 | 0 | can you tell me what is the problome in this code: | can you tell me what is the problome in this code:-
<?php
include('config.php');
$name=$_POST['name'];
$sms=$_POST['sms'];
$os=$_POST['os'];
$nop=$_POST['nop'];
$dl=$_POST['dl'];
$tapb=$_POST['tapb'];
$date=$_POST['date'];
$calls=$_POST['calls'];
$ft=$_POST['ft'];
$train=$_POST['train'];
$tds=$_POST['tds... | php | mysql | null | null | null | 04/20/2012 12:30:09 | not a real question | can you tell me what is the problome in this code:
===
can you tell me what is the problome in this code:-
<?php
include('config.php');
$name=$_POST['name'];
$sms=$_POST['sms'];
$os=$_POST['os'];
$nop=$_POST['nop'];
$dl=$_POST['dl'];
$tapb=$_POST['tapb'];
$date=$_POST['date'];
$calls=$_POST['calls'];
$ft=... | 1 |
10,124,380 | 04/12/2012 13:16:38 | 1,329,099 | 04/12/2012 12:30:25 | 1 | 0 | Algorithm that gives a permutation of numbers such that the sum of the adjacent differences is less than 2 | This was a homework problem but I missed the lecture where the lecturer explained the solution and I still can't figure it out...
If you are given n real numbers in the interval [0,1] (ie x1, x2, x3, ..., xn) show that there is an algorithm that runs in worst case linear time that gives a permutation of these n num... | algorithm | homework | null | null | null | null | open | Algorithm that gives a permutation of numbers such that the sum of the adjacent differences is less than 2
===
This was a homework problem but I missed the lecture where the lecturer explained the solution and I still can't figure it out...
If you are given n real numbers in the interval [0,1] (ie x1, x2, x3, ...,... | 0 |
9,304,469 | 02/16/2012 02:02:23 | 358,649 | 06/04/2010 16:14:55 | 448 | 3 | How to perform a recursive search? | I have a Task class which can have sub tasks of the same type
public class Task
{
public DateTime Start { get; set;}
public DateTime Finish { get; set;}
public List<Task> Tasks {get; set;}
public DateTime FindTaskStartDate(Task task)
{}
}
How can should i perform a... | c# | linq | design-patterns | recursion | tree | null | open | How to perform a recursive search?
===
I have a Task class which can have sub tasks of the same type
public class Task
{
public DateTime Start { get; set;}
public DateTime Finish { get; set;}
public List<Task> Tasks {get; set;}
public DateTime FindTaskStartDate(Task task)
... | 0 |
10,496,498 | 05/08/2012 10:04:13 | 1,335,574 | 04/16/2012 05:32:53 | 8 | 0 | Simple application using titanium android | I am new in android and working on titanium platform but not getting how & where to write the code for it.I want step by step procedure for 'hello world' application in titanium android and not getting much help from web also.please help. | android | homework | titanium | null | null | 05/09/2012 17:31:09 | not a real question | Simple application using titanium android
===
I am new in android and working on titanium platform but not getting how & where to write the code for it.I want step by step procedure for 'hello world' application in titanium android and not getting much help from web also.please help. | 1 |
5,143,402 | 02/28/2011 14:43:15 | 315,828 | 04/13/2010 19:06:40 | 1,051 | 8 | Checking for #N/A in Excel cell from VBA code | I'm iterating through a range of cells which hold numbers with 2 decimal places. I need to check if the cell holds '#N/A', and if it does, I need to skip it. The problem is, when a cell holds a valid number, my if condition below throws a 'Type mismatch error'. How can I avoid this?
If (ActiveWorkbook.Sheets("Pu... | excel | vba | null | null | null | null | open | Checking for #N/A in Excel cell from VBA code
===
I'm iterating through a range of cells which hold numbers with 2 decimal places. I need to check if the cell holds '#N/A', and if it does, I need to skip it. The problem is, when a cell holds a valid number, my if condition below throws a 'Type mismatch error'. How can... | 0 |
4,439,499 | 12/14/2010 13:10:44 | 419,501 | 08/13/2010 11:41:24 | 347 | 20 | Accessing a method of a bound service from an IntentReceiver on Android | I'm having a service class that I bind from my main activity with a <code>ServiceConnection</code> to call a method within the service as soon as it is bound. I need to explicitly call the method to pass over the context of my main activity.
If I call this service class from within an <code>IntentReceiver</code>, I ... | android | service | android-intent | null | null | null | open | Accessing a method of a bound service from an IntentReceiver on Android
===
I'm having a service class that I bind from my main activity with a <code>ServiceConnection</code> to call a method within the service as soon as it is bound. I need to explicitly call the method to pass over the context of my main activity.
... | 0 |
10,942,848 | 06/08/2012 03:48:48 | 536,607 | 12/09/2010 15:14:36 | 1,035 | 5 | C# checking for binary reader end of file | I was searching for a way to check whether I've reached the end of a file for my binary reader and one suggestion was to use PeekChar as such
while (inFile.PeekChar() > 0)
{
...
}
However, it looks like I've run into an issue
<pre>
Unhandled Exception: System.ArgumentException: The ou... | c# | null | null | null | null | null | open | C# checking for binary reader end of file
===
I was searching for a way to check whether I've reached the end of a file for my binary reader and one suggestion was to use PeekChar as such
while (inFile.PeekChar() > 0)
{
...
}
However, it looks like I've run into an issue
<pre>
Unhand... | 0 |
8,235,630 | 11/23/2011 00:01:20 | 791,018 | 06/09/2011 13:40:53 | 310 | 20 | NSNotificationCenter addObserver not responding | In my app (game) I'm trying to use the NSNotificationCenter to pause and resume the game when either the center/home or lock button is pressed. This is the code I'm using:
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(pauseLayer:)
name:UIApplicationWillResignActiveNo... | ios | nsnotifications | nsnotificationcenter | addobserver | null | null | open | NSNotificationCenter addObserver not responding
===
In my app (game) I'm trying to use the NSNotificationCenter to pause and resume the game when either the center/home or lock button is pressed. This is the code I'm using:
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(pa... | 0 |
6,960,560 | 08/05/2011 17:54:51 | 377,556 | 06/27/2010 20:14:24 | 48 | 0 | Service oriented architecture source document | Hey i have found that SOA trend begins in half of 2004 year (<http://trends.google.com/trends?q=service+oriented+architecture>)
1. My question is what the source documents for SOA is (i have found that it would be OASIS or OpenGroup)?
2. Who the first time use Service Oriented Architecture term, and in with paper/... | soa | null | null | null | null | 08/05/2011 18:13:50 | off topic | Service oriented architecture source document
===
Hey i have found that SOA trend begins in half of 2004 year (<http://trends.google.com/trends?q=service+oriented+architecture>)
1. My question is what the source documents for SOA is (i have found that it would be OASIS or OpenGroup)?
2. Who the first time use Ser... | 2 |
3,253,326 | 07/15/2010 07:24:28 | 38,398 | 11/17/2008 22:58:04 | 213 | 17 | How did CNN get my Facebook login information? | I browsed to CNN and was horrified to see my Facebook picture there with a "post a comment" box. How did CNN get my Facebook login information?
More specifically, how did CNN know I was logged into Facebook? It seems like CNN would have to have access to a cookie set by Facebook to do that.
This is the only sequ... | cookies | facebook | advertising | null | null | 06/29/2012 01:57:59 | off topic | How did CNN get my Facebook login information?
===
I browsed to CNN and was horrified to see my Facebook picture there with a "post a comment" box. How did CNN get my Facebook login information?
More specifically, how did CNN know I was logged into Facebook? It seems like CNN would have to have access to a cookie ... | 2 |
3,206,643 | 07/08/2010 18:10:06 | 357,499 | 06/03/2010 13:02:34 | 122 | 10 | Reusing layout XML and the code behind | I am trying to turn a couple buttons into a reusable component in Android. I have successfully gotten the XML / UI portion working, but I can't figure out how to make code behind it reusable between activities, short of recoding it everywhere. I am new to Android, so I apologize if this is obvious.
I've already re... | android | null | null | null | null | null | open | Reusing layout XML and the code behind
===
I am trying to turn a couple buttons into a reusable component in Android. I have successfully gotten the XML / UI portion working, but I can't figure out how to make code behind it reusable between activities, short of recoding it everywhere. I am new to Android, so I apol... | 0 |
8,223,466 | 11/22/2011 07:40:25 | 427,925 | 08/22/2010 23:35:18 | 33 | 1 | How to make Linux shell command stack store only unique commands | I just reformated my HD and had to overwrite my /home partition. Everything is fine in Linux Mint 11.
Except that the command stack recall with cursor up/down displays repeats of the same command.
Like:
ls
ls
ls
cd ~
should be:
ls
cd ~
Any ideas how to fix this? | linux | shell | stack | null | null | 11/22/2011 22:46:31 | off topic | How to make Linux shell command stack store only unique commands
===
I just reformated my HD and had to overwrite my /home partition. Everything is fine in Linux Mint 11.
Except that the command stack recall with cursor up/down displays repeats of the same command.
Like:
ls
ls
ls
cd ~
... | 2 |
2,063,652 | 01/14/2010 11:13:17 | 133,098 | 07/04/2009 10:50:47 | 147 | 6 | DOTNET Best coding practice to achive compiler best performance? | Most of the time during coding, i found that whether i can write code in less number of line.
I don't know when we write some login in less number of line in c# then whether we achive good performance or not? whether dotnet compiler compile code faster or not?
Is there any source of tutorial/ book/ guideline so t... | asp.net | c# | null | null | null | null | open | DOTNET Best coding practice to achive compiler best performance?
===
Most of the time during coding, i found that whether i can write code in less number of line.
I don't know when we write some login in less number of line in c# then whether we achive good performance or not? whether dotnet compiler compile code f... | 0 |
124,239 | 09/23/2008 22:10:11 | 19,912 | 09/21/2008 10:43:06 | 28 | 6 | fastest c++ file compression library available? | I have a need to find the best library to compress in memory data.
I am currently using zlib but I am wondering if there is a better compression library; better in terms of performance and memory footprint.
It should be able to handle multiple files in the same archive.
I am looking for a C++ library. | c++ | compression | performance | null | null | 01/27/2012 18:40:56 | not constructive | fastest c++ file compression library available?
===
I have a need to find the best library to compress in memory data.
I am currently using zlib but I am wondering if there is a better compression library; better in terms of performance and memory footprint.
It should be able to handle multiple files in the same a... | 4 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.