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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
8,321,149 | 11/30/2011 04:26:41 | 478,018 | 10/16/2010 16:21:22 | 53 | 3 | How to increase/decrease the space between the text and play button | Here's a sample code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Yahoo! Media Player</title>
</head>
<body>
<a href="http://www.example.com/song.mp3">Song Title</a>
<script type="text/javascrip... | css | null | null | null | null | 11/30/2011 05:20:24 | too localized | How to increase/decrease the space between the text and play button
===
Here's a sample code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Yahoo! Media Player</title>
</head>
<body>
<a href="http://w... | 3 |
2,406,111 | 03/09/2010 01:46:13 | 289,295 | 03/09/2010 01:46:13 | 1 | 0 | Using .NET C#, I need to create a simple program that responds whenever it picks up any sound from the microphone input. | I am trying to create a program that will sit and wait until it picks up on any sound (i.e. a doorbell), and in response, triggers an event function that I can use to run some code.
My exact goal is to have it run wmplayer playing a sound of a dog barking whenever it picks up something as loud as a doorbell from th... | .net | c# | audio | null | null | 03/11/2010 15:40:10 | not a real question | Using .NET C#, I need to create a simple program that responds whenever it picks up any sound from the microphone input.
===
I am trying to create a program that will sit and wait until it picks up on any sound (i.e. a doorbell), and in response, triggers an event function that I can use to run some code.
My exact... | 1 |
2,709,064 | 04/25/2010 17:05:18 | 325,468 | 04/25/2010 17:05:18 | 1 | 0 | Setting the vim color theme for highlighted braces | How do you change the vim color scheme for highlighted braces? I'm looking to actually edit the .vim theme file to make the change permanent.
Regards,
Craig | python | vim | null | null | null | null | open | Setting the vim color theme for highlighted braces
===
How do you change the vim color scheme for highlighted braces? I'm looking to actually edit the .vim theme file to make the change permanent.
Regards,
Craig | 0 |
3,073,745 | 06/18/2010 23:53:14 | 4,227 | 09/02/2008 13:08:22 | 1,793 | 159 | hierarchical statecharts designer with code generation | What is the best free and the best commercial tool that lets me draw uml hierarchical statechats like in the picture below. It would also be cool if it could generate the c# source code stubs.
![alt text][1]
[1]: http://www.netrino.com/images/articles/IntroHierarchicalStateMachines02UmlStateDiagram.gif | c# | uml | designer | statechart | null | 06/17/2012 14:41:40 | not constructive | hierarchical statecharts designer with code generation
===
What is the best free and the best commercial tool that lets me draw uml hierarchical statechats like in the picture below. It would also be cool if it could generate the c# source code stubs.
![alt text][1]
[1]: http://www.netrino.com/images/article... | 4 |
6,691,363 | 07/14/2011 09:54:32 | 102,588 | 05/07/2009 02:12:20 | 314 | 6 | How to Generate a new GUID from a given GUID in C# or T-Sql? | I want to copy a sqlserver table rows and insert into this table self ,this table have this fields:
Id :uniqueidentifier
ParentId: uniqueidentifier
Name: varchar(50)
Sort: float
UserId: uniqueidentifier
Id and ParentId Existing relationships.
I came up with a solution:
Insert in... | c# | sql | guid | uniqueidentifier | null | 07/14/2011 13:38:38 | not a real question | How to Generate a new GUID from a given GUID in C# or T-Sql?
===
I want to copy a sqlserver table rows and insert into this table self ,this table have this fields:
Id :uniqueidentifier
ParentId: uniqueidentifier
Name: varchar(50)
Sort: float
UserId: uniqueidentifier
Id and ParentId Exis... | 1 |
2,979,603 | 06/05/2010 07:48:53 | 102,441 | 05/06/2009 19:45:03 | 2,337 | 141 | How can I strip line breaks from my XML with XSLT? | I have this XSLT:
<xsl:strip-space elements="*" />
<xsl:template match="math">
<img class="math">
<xsl:attribute name="src">http://latex.codecogs.com/gif.latex?<xsl:value-of
select="text()" /></xsl:attribute>
</img>
</xsl:template>
Which is being applied to this XML (notice the line break):
... | xml | xslt | whitespace | null | null | null | open | How can I strip line breaks from my XML with XSLT?
===
I have this XSLT:
<xsl:strip-space elements="*" />
<xsl:template match="math">
<img class="math">
<xsl:attribute name="src">http://latex.codecogs.com/gif.latex?<xsl:value-of
select="text()" /></xsl:attribute>
</img>
</xsl:template>
Which ... | 0 |
7,206,752 | 08/26/2011 15:06:05 | 839,280 | 07/11/2011 16:29:04 | 135 | 1 | How to use AST in our own C program? | We are about to write dead-code remover in C.
For that we have to use AST.
**We doesn't know**, how
AST parse the C file,and **how to retrieve those tokens in our dead-code remover.**
We came to know **CLANG** library does this but **we need a practical examples in C that implements AST**.
Does we can include... | c | parsing | clang | ast | code-examples | 08/26/2011 18:41:34 | not a real question | How to use AST in our own C program?
===
We are about to write dead-code remover in C.
For that we have to use AST.
**We doesn't know**, how
AST parse the C file,and **how to retrieve those tokens in our dead-code remover.**
We came to know **CLANG** library does this but **we need a practical examples in C that... | 1 |
7,686,494 | 10/07/2011 11:16:03 | 874,647 | 08/02/2011 12:53:48 | 1 | 0 | Software Testing approach | I would like to know what in your opinion should be included in approach and recommendation on testing for existing issues and planned activities ( as a part of the software strategy ). Thank You | unit-testing | testing | functional-testing | null | null | 10/07/2011 15:05:24 | not a real question | Software Testing approach
===
I would like to know what in your opinion should be included in approach and recommendation on testing for existing issues and planned activities ( as a part of the software strategy ). Thank You | 1 |
3,919,903 | 10/12/2010 23:54:27 | 371,077 | 06/19/2010 15:51:42 | 3 | 2 | Android Listview Items not redrawn when they scroll off the screen in Froyo | I have a listview that when scrolled and the items go off of the screen they are not redrawn when I scroll back to them (the text and checkbox). In fact, items that are off the bottom of the screen in the listview never get drawn when scrolling to them. This only happens in Froyo. Any other version it works just fin... | android | listview | froyo | null | null | null | open | Android Listview Items not redrawn when they scroll off the screen in Froyo
===
I have a listview that when scrolled and the items go off of the screen they are not redrawn when I scroll back to them (the text and checkbox). In fact, items that are off the bottom of the screen in the listview never get drawn when scr... | 0 |
9,061,140 | 01/30/2012 08:27:38 | 992,947 | 10/13/2011 07:43:55 | 56 | 0 | image and video brouwser for local intranet? | Hi I would like to make my own browser application for a home intranet which allows me to search the local network for media like photos or videos and displays thumbnails of the image on a results page (just like Googel only I want to have the feature in a browser I’m building to suit my situation).
I use VB.NET to ... | vb.net | image | browser | intranet | null | 01/31/2012 15:35:03 | not a real question | image and video brouwser for local intranet?
===
Hi I would like to make my own browser application for a home intranet which allows me to search the local network for media like photos or videos and displays thumbnails of the image on a results page (just like Googel only I want to have the feature in a browser I’m b... | 1 |
11,691,963 | 07/27/2012 16:32:50 | 1,433,900 | 06/03/2012 18:51:19 | 23 | 0 | Having trouble in removing extra or special chars from a string using javascript | I have a function for removing extra or special chars:
function escapeHtml(unsafe) {
return unsafe
.replace(/\r?\n|\r/g, "")
.replace(/(\r\n|\n|\r)/gm," ")
.replace(/\s+/g," ")
.replace(/&/g, "&")
.replace(/</g, "<")
.replace(/>/g, ">")
.replace(/"/g,... | javascript | jquery | json | string | eval | 07/27/2012 16:54:23 | too localized | Having trouble in removing extra or special chars from a string using javascript
===
I have a function for removing extra or special chars:
function escapeHtml(unsafe) {
return unsafe
.replace(/\r?\n|\r/g, "")
.replace(/(\r\n|\n|\r)/gm," ")
.replace(/\s+/g," ")
.replace(/&/g, "&")
... | 3 |
8,060,469 | 11/09/2011 04:50:30 | 834,764 | 07/08/2011 05:03:33 | 128 | 1 | Who should own wordpress/drupal files on my webserver? | I have a Centos server running apache, php, and pure-ftp.
I have 2 sites (domains) through apache, one of them wordpress and one of them drupal. I uploaded them using my ftp account as user "ftpuser" and group "ftpgroup". Apache is running as user "apache" and php the same (apache).
I have not changes the fil... | wordpress | drupal | file-permissions | null | null | 11/09/2011 09:51:16 | off topic | Who should own wordpress/drupal files on my webserver?
===
I have a Centos server running apache, php, and pure-ftp.
I have 2 sites (domains) through apache, one of them wordpress and one of them drupal. I uploaded them using my ftp account as user "ftpuser" and group "ftpgroup". Apache is running as user "apac... | 2 |
7,648,320 | 10/04/2011 13:02:59 | 815,395 | 06/25/2011 14:15:58 | 1 | 0 | VIM, recognize .pyp as a python file | I'm doing some plugin programming for cinema 4d in python and decided to man up and start using a *real* code editor, VIM. followed the instructions on this page:
http://sontek.net/turning-vim-into-a-modern-python-ide
my question is what changes do i have to make to the .vimrc file to get vim to recognize cinema ... | python | vim | cinema-4d | null | null | null | open | VIM, recognize .pyp as a python file
===
I'm doing some plugin programming for cinema 4d in python and decided to man up and start using a *real* code editor, VIM. followed the instructions on this page:
http://sontek.net/turning-vim-into-a-modern-python-ide
my question is what changes do i have to make to the .... | 0 |
7,012,071 | 08/10/2011 14:03:18 | 888,034 | 08/10/2011 13:59:25 | 1 | 0 | Synchronisation issue between different processes? | Hey there I'm doing my homework and I've already found out some things about synchronisation issues but if anyone could tell me in a little more detail why synchronisation between different processes belonging to the same or different programs is an important task in parallel computing?
Thanks in advance.
| image-processing | synchronization | parallel-processing | issues | null | 08/10/2011 15:06:15 | not a real question | Synchronisation issue between different processes?
===
Hey there I'm doing my homework and I've already found out some things about synchronisation issues but if anyone could tell me in a little more detail why synchronisation between different processes belonging to the same or different programs is an important task... | 1 |
7,282,065 | 09/02/2011 10:17:58 | 602,488 | 02/04/2011 01:08:22 | 131 | 12 | Hiding products behind a form | I’m building a webshop that sells tires. I think it would be best user-friendly-wise to hide my products behind a search form, where you can select tire dimension, price range etc.
I’ve been told that Google will never submit a form, when crawling a site, so if I “hide” the products by using a form, does Google ever... | seo | indexing | e-commerce | crawling | null | null | open | Hiding products behind a form
===
I’m building a webshop that sells tires. I think it would be best user-friendly-wise to hide my products behind a search form, where you can select tire dimension, price range etc.
I’ve been told that Google will never submit a form, when crawling a site, so if I “hide” the product... | 0 |
8,565,271 | 12/19/2011 17:48:06 | 1,106,437 | 12/19/2011 17:44:17 | 1 | 0 | How to change an UIImage using an UISlider | i would like to know if i can load different images using an UISlider.
The best will be to have the same slider ( let say it is a slider... ) as the application photo of the ipad ( the mini photo slider at the bottom ).
Do you think i can do the same as the application photo and how ?
Thanks you !
| ipad | uiimage | slider | photo | uislider | null | open | How to change an UIImage using an UISlider
===
i would like to know if i can load different images using an UISlider.
The best will be to have the same slider ( let say it is a slider... ) as the application photo of the ipad ( the mini photo slider at the bottom ).
Do you think i can do the same as the applica... | 0 |
1,120,117 | 07/13/2009 15:20:57 | 135,020 | 07/08/2009 15:09:22 | 553 | 51 | Not object although var_dump() says otherwise? | When I create controller, I load model (AccountModel) to class variable "Model" and check if user is logged in:
function __construct()
{
parent::__construct();
$this->loadModel("AccountModel", "Model");
$account = $this->getUserAccount();
...
}
Fata... | php | var-dump | null | null | null | null | open | Not object although var_dump() says otherwise?
===
When I create controller, I load model (AccountModel) to class variable "Model" and check if user is logged in:
function __construct()
{
parent::__construct();
$this->loadModel("AccountModel", "Model");
$account = $th... | 0 |
3,334,250 | 07/26/2010 11:07:43 | 290,535 | 03/10/2010 13:22:51 | 119 | 0 | javascript dialogbox without opening page | I have to display dialog box from servlet but without opening new window.
Below is code
PrintWriter printWriter =response.getWriter();
String s ="<HTML><HEAD><TITLE>JavaScript Example</TITLE>"+
"<SCRIPT LANGUAGE=JavaScript>"+
"alert('File Uploaded');"+
"</SCRIPT>"+
"</HEAD>"+
... | javascript | servlets | null | null | null | null | open | javascript dialogbox without opening page
===
I have to display dialog box from servlet but without opening new window.
Below is code
PrintWriter printWriter =response.getWriter();
String s ="<HTML><HEAD><TITLE>JavaScript Example</TITLE>"+
"<SCRIPT LANGUAGE=JavaScript>"+
"alert('File Upload... | 0 |
6,155,126 | 05/27/2011 16:25:25 | 760,095 | 05/18/2011 22:55:10 | 88 | 1 | Choosing a Development Process | I am a student in the terminal and I have to present a project graduation. I maked a RESTful web service and an iphone application who use the web service . I finished the développment and here I must write a report (normally i should do the report in the same time) .And now i don't know what development process choose... | iphone | web-services | development-process | null | null | 05/27/2011 16:57:44 | not a real question | Choosing a Development Process
===
I am a student in the terminal and I have to present a project graduation. I maked a RESTful web service and an iphone application who use the web service . I finished the développment and here I must write a report (normally i should do the report in the same time) .And now i don't ... | 1 |
5,154,663 | 03/01/2011 12:43:49 | 159,118 | 08/19/2009 09:58:54 | 1,184 | 3 | Silverlight - Expander Control with ListBox, 100% Height | Im trying to put 4 expander controls inside a Grid with 4 rows, the expander control contains a Grid and a ListBox (Currently holding some sample data).
Ideally when an expander is expanded I want it to fill all the available space without pushing the remaining expanders off the screen or the list box going off the ... | silverlight | xaml | expression-blend | blend | null | null | open | Silverlight - Expander Control with ListBox, 100% Height
===
Im trying to put 4 expander controls inside a Grid with 4 rows, the expander control contains a Grid and a ListBox (Currently holding some sample data).
Ideally when an expander is expanded I want it to fill all the available space without pushing the rem... | 0 |
9,653,971 | 03/11/2012 09:56:42 | 997,392 | 10/16/2011 00:18:17 | 16 | 0 | Scanning two separate barcodes in one action? | How to Scanning two separate barcodes (in one line near together) in one action?
Thanks. | barcode | null | null | null | null | 03/14/2012 17:34:12 | not a real question | Scanning two separate barcodes in one action?
===
How to Scanning two separate barcodes (in one line near together) in one action?
Thanks. | 1 |
6,462,423 | 06/24/2011 01:33:12 | 530,041 | 12/04/2010 00:18:54 | 1 | 1 | Selective AppWidgets | I have a app which has 2 widgets, lets call them SimpleWidget and ListWidget.
ListWidget makes use of android 3.1 (api level 12) features.
What I would like to do is register both widgets if the device is 3.1 or above.
If it is not than I would only want to register SimpleWidget.
As the code stands now the wi... | android | null | null | null | null | null | open | Selective AppWidgets
===
I have a app which has 2 widgets, lets call them SimpleWidget and ListWidget.
ListWidget makes use of android 3.1 (api level 12) features.
What I would like to do is register both widgets if the device is 3.1 or above.
If it is not than I would only want to register SimpleWidget.
As ... | 0 |
6,357,909 | 06/15/2011 12:51:00 | 797,643 | 06/14/2011 12:26:03 | 3 | 0 | LocatonManager and telephonyManager | I am currently working on an app which enhances the mobile security. I am using location Manager to determine the location of the phone using GPS. Also i am using telephony manager to detect the change of sim. These two things i have done in two separate .java files as two activities. Here is my code
one activity:
... | android | null | null | null | null | 06/15/2011 15:57:15 | too localized | LocatonManager and telephonyManager
===
I am currently working on an app which enhances the mobile security. I am using location Manager to determine the location of the phone using GPS. Also i am using telephony manager to detect the change of sim. These two things i have done in two separate .java files as two activ... | 3 |
363,209 | 12/12/2008 16:14:45 | 1,246,613 | 03/03/2012 09:25:03 | 31 | 3 | bash scripting..copying files without overwriting | I would like to know if it is possible to copy/move files to a destination based on the origin name.
Basically, I have a /mail folder, which has several subfolders such as cur and new etc. I then have an extracted backup in /mail/home/username that is a duplicate. mv -f will not work, as I do not have permission to ... | bash | null | null | null | null | 12/15/2008 10:46:51 | off topic | bash scripting..copying files without overwriting
===
I would like to know if it is possible to copy/move files to a destination based on the origin name.
Basically, I have a /mail folder, which has several subfolders such as cur and new etc. I then have an extracted backup in /mail/home/username that is a duplicat... | 2 |
2,094,635 | 01/19/2010 15:37:50 | 68,591 | 02/19/2009 19:55:45 | 617 | 28 | How to profile JQuery/JQGrid |
I am using JQGrid component for displaying ajax tree grid.
With some quantity of data (tree with 200 branches, 2-3 items in each) - the grid begins to freeze in FireFox. Then I get a window asking whether to stop the script or continue.
What is the prescription to debug and resolve this?
I can debug my code, but... | jquery | jqgrid | javascript | debugging | null | null | open | How to profile JQuery/JQGrid
===
I am using JQGrid component for displaying ajax tree grid.
With some quantity of data (tree with 200 branches, 2-3 items in each) - the grid begins to freeze in FireFox. Then I get a window asking whether to stop the script or continue.
What is the prescription to debug and resol... | 0 |
6,245,793 | 06/05/2011 20:55:22 | 768,767 | 05/25/2011 01:57:34 | 26 | 1 | Using strtoul in C | In C, why does
`strtoul(argv[1])`
just doesn't work? It looks like more parameters are needed but I can't prevent how long the number will be.
Thanks!
p.s. (argv[1] is properly setted). | c | strtol | null | null | null | 06/06/2011 05:42:52 | not a real question | Using strtoul in C
===
In C, why does
`strtoul(argv[1])`
just doesn't work? It looks like more parameters are needed but I can't prevent how long the number will be.
Thanks!
p.s. (argv[1] is properly setted). | 1 |
9,807,327 | 03/21/2012 15:07:53 | 1,118,143 | 12/27/2011 19:00:51 | 52 | 8 | Using static methods in objects PHP - is it advantage? | I was reading some articles and discussions on the use of `static methods` on objects and it struck me how much the views differ.
Someone say that using static methods is an **advantage**. Someone says that use is a big **mistake**.
I wonder how is it?
My question is **when** to use static methods and when not?
... | php | null | null | null | null | 03/22/2012 14:54:03 | not constructive | Using static methods in objects PHP - is it advantage?
===
I was reading some articles and discussions on the use of `static methods` on objects and it struck me how much the views differ.
Someone say that using static methods is an **advantage**. Someone says that use is a big **mistake**.
I wonder how is it?
... | 4 |
5,793,927 | 04/26/2011 17:13:10 | 245,926 | 01/07/2010 20:59:05 | 464 | 8 | Do I need a splash screen for an app to be submitted to app store | Is a splash screen required to submit your app into the app store? | iphone | iphone-sdk-4.0 | null | null | null | 04/28/2011 05:01:19 | off topic | Do I need a splash screen for an app to be submitted to app store
===
Is a splash screen required to submit your app into the app store? | 2 |
1,149,945 | 07/19/2009 13:54:08 | 42,749 | 12/03/2008 08:44:10 | 1,072 | 88 | How to make a WCF service support multiple callback? | I have a nettcp WCF service that supports single callback method.
I want to add new callback methods by adding new interface that contains the new methods
I tried to add new interface that inherits from the old one but the gerenated proxy in the the client application does not contain the old callback interface.
... | wcf | c# | null | null | null | null | open | How to make a WCF service support multiple callback?
===
I have a nettcp WCF service that supports single callback method.
I want to add new callback methods by adding new interface that contains the new methods
I tried to add new interface that inherits from the old one but the gerenated proxy in the the client... | 0 |
7,836,545 | 10/20/2011 13:19:51 | 939,937 | 09/12/2011 05:51:25 | 63 | 20 | can we manipulate the scroll view , Navigation in iPad to Android? | Is it possible that in Android we can implement the scroll view ,navigation as in iPad | android | iphone | null | null | null | 10/20/2011 18:04:54 | not a real question | can we manipulate the scroll view , Navigation in iPad to Android?
===
Is it possible that in Android we can implement the scroll view ,navigation as in iPad | 1 |
8,423,613 | 12/07/2011 22:36:29 | 1,086,610 | 12/07/2011 22:11:19 | 1 | 0 | How to call a javascript function that's in a separate file, from within a drupal form | I am a javascript newbie, as well as a php newbie. I have been working on this thing for weeks, and just can't figure out how to get my javascript fuction to be called within a form.
A form that is will eventually be filled in with the javascript form below.
function input_more_form($form, &$form_state... | javascript | forms | drupal-7 | null | null | 12/11/2011 14:35:24 | not a real question | How to call a javascript function that's in a separate file, from within a drupal form
===
I am a javascript newbie, as well as a php newbie. I have been working on this thing for weeks, and just can't figure out how to get my javascript fuction to be called within a form.
A form that is will eventually be fil... | 1 |
10,484,780 | 05/07/2012 15:29:43 | 627,969 | 02/22/2011 08:41:26 | 27 | 1 | Filter the results using n-hibernate via matching with another Db table | I have already written Hbn & code to fetch the users from db.
with following info
userid, name,email,phone
now we have new requirement in which new table has been created with following fields
Table 1
- userid -- foreign key to above user table
- workinglocation
- WorkingStatusId
table 2
- ... | nhibernate | linq-to-nhibernate | nhibernate-criteria | null | null | null | open | Filter the results using n-hibernate via matching with another Db table
===
I have already written Hbn & code to fetch the users from db.
with following info
userid, name,email,phone
now we have new requirement in which new table has been created with following fields
Table 1
- userid -- foreign key ... | 0 |
327,274 | 11/29/2008 06:43:23 | 41,757 | 11/29/2008 06:30:56 | 1 | 0 | MySQL Prepared statements with a variable size variable list | How would you write a prepared MySQL statement in PHP that takes a differing number of arguments each time. An example such query is:
<code>SELECT `age`, `name` FROM `people` WHERE id IN (12, 45, 65, 33)</code>
The IN CLAUSE will have a different number of id's each time it is run.
I have two possible solution... | php | mysql | prepared-statement | null | null | null | open | MySQL Prepared statements with a variable size variable list
===
How would you write a prepared MySQL statement in PHP that takes a differing number of arguments each time. An example such query is:
<code>SELECT `age`, `name` FROM `people` WHERE id IN (12, 45, 65, 33)</code>
The IN CLAUSE will have a different n... | 0 |
7,469,544 | 09/19/2011 10:32:41 | 911,423 | 08/25/2011 07:17:44 | 52 | 0 | How to process large PHP code or How to design Cron Job? | I'm working on a MLM project where there are around 15500+ registered users.
As I'm very first in MLM project, I'm getting some problem while trying to run a script (**updatedata.php**).
My Script works for:
1. Updating Total Downline of member (script need to run through 15500+ users)
2. Updating daily Payout ... | php | cron | null | null | null | 09/20/2011 11:36:51 | not a real question | How to process large PHP code or How to design Cron Job?
===
I'm working on a MLM project where there are around 15500+ registered users.
As I'm very first in MLM project, I'm getting some problem while trying to run a script (**updatedata.php**).
My Script works for:
1. Updating Total Downline of member (script... | 1 |
6,146,406 | 05/26/2011 23:59:26 | 772,247 | 05/26/2011 23:59:26 | 1 | 0 | python read/write csv file by lookup changes needed from other csv file | I'm new to Python. How can I read changes needed from rename.csv file, then change naming and value accordingly in my.csv file. If no new value in rename.csv file, default value will be remain. My csv files as below:
rename.csv
OLD NAME,NEW NAME,NEW VALUE
AA,BB,22
CC,DD
XX,K... | python | csv | null | null | null | 07/16/2012 01:53:47 | not a real question | python read/write csv file by lookup changes needed from other csv file
===
I'm new to Python. How can I read changes needed from rename.csv file, then change naming and value accordingly in my.csv file. If no new value in rename.csv file, default value will be remain. My csv files as below:
rename.csv
... | 1 |
10,323,783 | 04/25/2012 21:05:13 | 591,035 | 01/26/2011 17:39:25 | 64 | 0 | Google Analytics not tracking directories correctly | I have an issue with setting up Google Analytics for a domain with several directories. Here is what I have:
www.mydomain.com
www.mydomain.com/site-one/
www.mydomain.com/site-two/
www.mydomain.com/site-three/
www.mydomain.com/site-four/
www.mydomain.com/site-five/
Each of these direct... | google-analytics | google-analytics-api | web-analytics | null | null | null | open | Google Analytics not tracking directories correctly
===
I have an issue with setting up Google Analytics for a domain with several directories. Here is what I have:
www.mydomain.com
www.mydomain.com/site-one/
www.mydomain.com/site-two/
www.mydomain.com/site-three/
www.mydomain.com/site-four/... | 0 |
6,345,739 | 06/14/2011 15:06:59 | 615,503 | 02/13/2011 22:47:16 | 1 | 0 | Symfony components backend | I have a problem with components in the backend application.
I want to include a component, I followed step by step the jobeet tutorial, but I have an error:
"The component "language lang" does not exist.
I have a module language in which I have a components.class.php in actions/ and a partial _lang.php in languag... | symfony | null | null | null | null | null | open | Symfony components backend
===
I have a problem with components in the backend application.
I want to include a component, I followed step by step the jobeet tutorial, but I have an error:
"The component "language lang" does not exist.
I have a module language in which I have a components.class.php in actions/ an... | 0 |
9,971,505 | 04/02/2012 05:56:40 | 1,307,242 | 04/02/2012 04:53:31 | 1 | 0 | Background Images in HTML Email | I just want to add background image and want to write text over it. I have tried everything. Please give me full proof method for this.
Thank You | html | null | null | null | null | 04/02/2012 12:11:59 | not a real question | Background Images in HTML Email
===
I just want to add background image and want to write text over it. I have tried everything. Please give me full proof method for this.
Thank You | 1 |
8,148,715 | 11/16/2011 08:32:27 | 710,818 | 02/10/2010 09:50:08 | 818 | 14 | How to set limit on directory size in Linux? | I have read about limiting size of directory - like creating big files, formatting,mount,.. etc.
But this all very complicated. Does exist utility or something else to set limit on already existing directory?
| linux | directory | size | limit | null | 11/16/2011 09:01:03 | off topic | How to set limit on directory size in Linux?
===
I have read about limiting size of directory - like creating big files, formatting,mount,.. etc.
But this all very complicated. Does exist utility or something else to set limit on already existing directory?
| 2 |
10,533,046 | 05/10/2012 11:28:33 | 1,386,924 | 05/10/2012 11:17:41 | 1 | 0 | PreviousPage is null on one machine, not on the other | I have a website with a page that does a crosspage postback using an ASP:Button with a PostBackUrl as such:
<asp:Button ID="FindButton" runat="server" Text="Find" CssClass="button" PostBackUrl="~/TGS/BusinessResults.aspx" meta:resourcekey="FindButtonResource1" />
I do not need information about the previous ... | asp.net | null | previouspagetype | null | null | null | open | PreviousPage is null on one machine, not on the other
===
I have a website with a page that does a crosspage postback using an ASP:Button with a PostBackUrl as such:
<asp:Button ID="FindButton" runat="server" Text="Find" CssClass="button" PostBackUrl="~/TGS/BusinessResults.aspx" meta:resourcekey="FindButtonRes... | 0 |
5,084,341 | 02/22/2011 21:43:56 | 471,512 | 10/10/2010 12:24:38 | 18 | 0 | Resource file cannot be found | I'm new in Java. I use Eclipse IDE. I have such structure of packages :
Java src:
-1)org.pdfbox;
-2)org.pdfbox.util;
-3)org.pdfbox.pdmodel.interactive.documentnavigation.outline
- .....
-4)org.pdfbox.util;
-4.1)ResourceLoader.java - loads data... | java | resources | properties | null | null | null | open | Resource file cannot be found
===
I'm new in Java. I use Eclipse IDE. I have such structure of packages :
Java src:
-1)org.pdfbox;
-2)org.pdfbox.util;
-3)org.pdfbox.pdmodel.interactive.documentnavigation.outline
- .....
-4)org.pdfbox.util;
-4... | 0 |
7,641,545 | 10/03/2011 22:47:52 | 977,165 | 10/03/2011 17:50:35 | 1 | 0 | Force SD-Card rescan using activity manager? | I am trying to scan the sd-card after adding some files using the activity manager but it doesn't seem to work. Is there an alternative intent action that can trigger the scan?
user#am broadcast -a android.intent.action.MEDIA_MOUNTED --ez read-only false -d file:///sdcard
| android | null | null | null | null | 10/06/2011 13:30:52 | off topic | Force SD-Card rescan using activity manager?
===
I am trying to scan the sd-card after adding some files using the activity manager but it doesn't seem to work. Is there an alternative intent action that can trigger the scan?
user#am broadcast -a android.intent.action.MEDIA_MOUNTED --ez read-only false -d file:///s... | 2 |
11,098,755 | 06/19/2012 10:04:55 | 274,677 | 02/16/2010 19:47:54 | 489 | 9 | IDE for JBoss JSF development | I am planning to develop a medium to large size web application using JSF (plus PrimeFaces or other) for the view layer and EJB3 for business logic. The reason we've chosen EJB3 over more lightweight JSF beans that might only require a Servlet container (as opposed to an EJB3 container) is for additional EJB3 features ... | eclipse | jsf | netbeans | jboss | null | null | open | IDE for JBoss JSF development
===
I am planning to develop a medium to large size web application using JSF (plus PrimeFaces or other) for the view layer and EJB3 for business logic. The reason we've chosen EJB3 over more lightweight JSF beans that might only require a Servlet container (as opposed to an EJB3 containe... | 0 |
11,710,045 | 07/29/2012 14:32:57 | 1,435,785 | 06/04/2012 18:28:24 | 23 | 1 | jQuery working really bad in IE8 | I've tried for numerous hours to fix my _[site][1]_ for IE8 now, with little luck. If you open it it any other browser (IE9, FF, Chrome, ...) it works fine, but in IE8 it's complete chaos. I can only check it in IETester and it gives me "Invalid procedure call or argument" at char 23853 line 4 in jquery.min.js when I v... | jquery | internet-explorer-8 | null | null | null | 07/30/2012 05:24:59 | not a real question | jQuery working really bad in IE8
===
I've tried for numerous hours to fix my _[site][1]_ for IE8 now, with little luck. If you open it it any other browser (IE9, FF, Chrome, ...) it works fine, but in IE8 it's complete chaos. I can only check it in IETester and it gives me "Invalid procedure call or argument" at char ... | 1 |
8,231,321 | 11/22/2011 17:50:10 | 1,060,337 | 11/22/2011 17:39:48 | 1 | 0 | Android App: Python or Java? | I am new to android and was seeking for an app (email client) which have a nice filter system, but after a lot of Googling and Android market browsing, its seems none of the email client available for Android provide such features. (at least the free ones dont). So, finally I concluded to develop myself. Now the proble... | java | android | python | performance | application | 11/22/2011 20:23:54 | not constructive | Android App: Python or Java?
===
I am new to android and was seeking for an app (email client) which have a nice filter system, but after a lot of Googling and Android market browsing, its seems none of the email client available for Android provide such features. (at least the free ones dont). So, finally I concluded... | 4 |
3,316,061 | 07/23/2010 07:18:35 | 369,161 | 06/17/2010 09:29:38 | 35 | 1 | How do I use this source on my application? | Here Is Source Of a game that a saw in internet.
i was copy that in my Application.
But it does not work.
Any button is not made.
how can i fix it?
Here Is link of source : http://www.dreamincode.net/forums/topic/61017-backgammon-game-mouse-events-in-c%23/page__p__402781&#entry402781
| c# | source-code | copy-paste | null | null | 07/24/2010 00:51:20 | not a real question | How do I use this source on my application?
===
Here Is Source Of a game that a saw in internet.
i was copy that in my Application.
But it does not work.
Any button is not made.
how can i fix it?
Here Is link of source : http://www.dreamincode.net/forums/topic/61017-backgammon-game-mouse-events-in-c%23/page__p... | 1 |
3,551,977 | 08/23/2010 21:49:07 | 428,870 | 08/23/2010 21:36:58 | 1 | 0 | Google's username policies vs Facebook, Twitter and others... | I have a question I've been trying to understand for awhile now. Google has terrible username policies for accounts and services. You are unable to change your username, recover a deleted account or link usernames to various accounts. It's not possible to do anything. These issues have comes up numerous times with acco... | database | facebook | google | twitter | username | 08/24/2010 02:18:37 | off topic | Google's username policies vs Facebook, Twitter and others...
===
I have a question I've been trying to understand for awhile now. Google has terrible username policies for accounts and services. You are unable to change your username, recover a deleted account or link usernames to various accounts. It's not possible ... | 2 |
7,004,986 | 08/10/2011 01:35:39 | 861,578 | 07/25/2011 12:39:07 | 1 | 0 | Is there something html "for" attribute event flag? | How to I know event occured by "for" attribute??
Is there something like flag??
| javascript | html | javascript-events | null | null | 08/10/2011 02:32:51 | not a real question | Is there something html "for" attribute event flag?
===
How to I know event occured by "for" attribute??
Is there something like flag??
| 1 |
8,284,118 | 11/27/2011 06:55:02 | 273,656 | 02/15/2010 16:39:02 | 3 | 1 | Why is this variable is listed as unassigned local variable in C# through Mono | I am unable to determine why the code here will not compile in MonoDevelop 2.8.2 on Win32 using Mono 2.10.6. Monodevelop indicates that found_image_paths is an unassigned local variable?
Am I missing something here? I am new to C#
string path = this.DirectoryChooser.CurrentFolder;
Console.WriteLine (... | c# | monodevelop | null | null | null | 11/27/2011 21:50:28 | too localized | Why is this variable is listed as unassigned local variable in C# through Mono
===
I am unable to determine why the code here will not compile in MonoDevelop 2.8.2 on Win32 using Mono 2.10.6. Monodevelop indicates that found_image_paths is an unassigned local variable?
Am I missing something here? I am new to C#... | 3 |
1,617,364 | 10/24/2009 08:31:46 | 179,364 | 09/26/2009 02:25:54 | 170 | 1 | What does the head of smarty cache files mean? | 132
a:4:{s:8:"template";a:1:{s:10:"index.html";b:1;}s:9:"timestamp";i:1256373019;s:7:"expires";i:1256373079;s:13:"cache_serials";a:0:{}}<body>
php<br >
java<br >
c++<br >
</body>
Can someone explain this part:
132
a:4:{s:8:"template";a:1:{s:10:"index.html";b:1... | smarty | caching | null | null | null | null | open | What does the head of smarty cache files mean?
===
132
a:4:{s:8:"template";a:1:{s:10:"index.html";b:1;}s:9:"timestamp";i:1256373019;s:7:"expires";i:1256373079;s:13:"cache_serials";a:0:{}}<body>
php<br >
java<br >
c++<br >
</body>
Can someone explain this part:
132
... | 0 |
9,508,533 | 02/29/2012 23:48:00 | 783,353 | 06/03/2011 20:41:42 | 379 | 8 | Opensource project based on Symfony 2 or Zend Framework 2 | I am looking for repositories with open project that are good examples for learning.
I will be grateful if somebody share any links here.
Regards | git | zend-framework | open-source | symfony-2.0 | null | 03/05/2012 04:42:55 | off topic | Opensource project based on Symfony 2 or Zend Framework 2
===
I am looking for repositories with open project that are good examples for learning.
I will be grateful if somebody share any links here.
Regards | 2 |
10,407,819 | 05/02/2012 04:40:06 | 1,235,988 | 02/27/2012 16:11:43 | 11 | 0 | Loading the dojo toolbar before page content loads | In my application i have toolbar/menubar created using dojo toolbar component and i have the code for it in dojo.ready() method. but this toolbar is getting loaded at the end after the page content loads. this behaviour is because iam using dojo.ready() method which waits until the dom is ready. i tried placing the too... | javascript | dojo | null | null | null | null | open | Loading the dojo toolbar before page content loads
===
In my application i have toolbar/menubar created using dojo toolbar component and i have the code for it in dojo.ready() method. but this toolbar is getting loaded at the end after the page content loads. this behaviour is because iam using dojo.ready() method whi... | 0 |
11,733,443 | 07/31/2012 05:07:22 | 1,564,640 | 07/31/2012 03:58:40 | 1 | 0 | Need suggestions on thesis (Android) | I'm new here
Well, long story short, I'm making an Android application for my thesis but still cant decide between two topics (initially three) that I've discussed with my adviser.
- Kids tracker
There are two modes here; Parents mode (Register a kid, Track now) and Kids mode (will make the app to work in backgr... | android | tracker | id3v2 | null | null | 08/01/2012 02:49:02 | too localized | Need suggestions on thesis (Android)
===
I'm new here
Well, long story short, I'm making an Android application for my thesis but still cant decide between two topics (initially three) that I've discussed with my adviser.
- Kids tracker
There are two modes here; Parents mode (Register a kid, Track now) and Kids... | 3 |
9,778,541 | 03/19/2012 21:55:02 | 1,279,322 | 03/19/2012 18:53:58 | 1 | 0 | Converting from Structured English to Python | It is easy, yes. But I'm stuck on a line which doesn't seem to work for what it should do. The structured English line is:
FOR NoOfGamesPlayed <- 1 TO NoOfGamesInMatch Do
I know this should be a for loop but can't seem to make a valid one. Any help? | python | null | null | null | null | 03/19/2012 22:02:28 | not a real question | Converting from Structured English to Python
===
It is easy, yes. But I'm stuck on a line which doesn't seem to work for what it should do. The structured English line is:
FOR NoOfGamesPlayed <- 1 TO NoOfGamesInMatch Do
I know this should be a for loop but can't seem to make a valid one. Any help? | 1 |
7,199,396 | 08/26/2011 02:21:27 | 873,839 | 08/02/2011 04:18:24 | 6 | 0 | A good Lua editor for Mac? | Whats a good Lua text editor for the Mac? All I need is just to edit the code. Not a Compiler or anything. | text | ide | editor | lua | null | 08/28/2011 12:15:30 | not constructive | A good Lua editor for Mac?
===
Whats a good Lua text editor for the Mac? All I need is just to edit the code. Not a Compiler or anything. | 4 |
4,826,619 | 01/28/2011 09:28:02 | 555,763 | 12/28/2010 08:03:51 | 5 | 0 | how to execute a javascript or render html on after_filter | or perhaps a work around?
Basically, my goal is, once the action has been completed, on my ApplicationController after_filter method, I want to modify/show something on the template with a javascript call that gets sent to the user's browser.
I'm okay with other solutions, need not be using the after_filter if t... | ruby-on-rails | ruby | null | null | null | null | open | how to execute a javascript or render html on after_filter
===
or perhaps a work around?
Basically, my goal is, once the action has been completed, on my ApplicationController after_filter method, I want to modify/show something on the template with a javascript call that gets sent to the user's browser.
I'm ok... | 0 |
5,331,464 | 03/16/2011 20:40:59 | 71,830 | 02/24/2009 14:59:51 | 720 | 67 | IE6 and box model with padding | I have a box that is width:600px
i like to have text left, with padding of 20px
that box is flot with another at it side (sidebar/content)
in other browser it play fine, content-sidebar with define
in ie6 it see the content to be 600 + 20, witch push the sidebat to the bottom...
How do you use padding, that wo... | css | internet-explorer-6 | box | null | null | null | open | IE6 and box model with padding
===
I have a box that is width:600px
i like to have text left, with padding of 20px
that box is flot with another at it side (sidebar/content)
in other browser it play fine, content-sidebar with define
in ie6 it see the content to be 600 + 20, witch push the sidebat to the bottom..... | 0 |
9,157,696 | 02/06/2012 09:01:03 | 1,190,937 | 02/05/2012 17:46:35 | 7 | 0 | Javascript code to get the html code of a webpage | Can u please tell me the javascript code to get the html code of a webpage? | javascript | html | null | null | null | 02/06/2012 09:04:32 | not a real question | Javascript code to get the html code of a webpage
===
Can u please tell me the javascript code to get the html code of a webpage? | 1 |
7,580,959 | 09/28/2011 09:18:58 | 717,058 | 04/20/2011 11:44:54 | 182 | 4 | CQRS and service bus | CQRS is about separating commmands and queries. We can add it easily several patterns & technologies like Event Sourcing, DDD, NoSQL, etc... but is serviceBus a mandatory ?
For example: I develop an application with the following project
- UI
- Commands
- Query
- BLL (simple methods with logics)
- Repository
... | cqrs | null | null | null | null | null | open | CQRS and service bus
===
CQRS is about separating commmands and queries. We can add it easily several patterns & technologies like Event Sourcing, DDD, NoSQL, etc... but is serviceBus a mandatory ?
For example: I develop an application with the following project
- UI
- Commands
- Query
- BLL (simple methods w... | 0 |
6,466,644 | 06/24/2011 10:39:20 | 804,128 | 06/18/2011 00:46:58 | 26 | 0 | Running php script after page loaded | Everytime a user visits a wordpress single-post page, the script update_comments.php is executed. It works the way it should, but the user won't see the wordpress post, or anything for that matter, until the script has finished executing. I simply want to initiate the script without the user noticing a single thing. **... | php | wordpress | null | null | null | 06/25/2011 10:15:44 | off topic | Running php script after page loaded
===
Everytime a user visits a wordpress single-post page, the script update_comments.php is executed. It works the way it should, but the user won't see the wordpress post, or anything for that matter, until the script has finished executing. I simply want to initiate the script wi... | 2 |
7,446,962 | 09/16/2011 15:27:40 | 458,742 | 09/26/2010 14:45:11 | 3,983 | 242 | Generate a coredump from crashed process attached to ddd/dbx | I'm running dbx in ddd on Solaris. The attached process has crashed and I can examine the stack in the debugger.
I want to save this core dump to disk for later.
Google shows me several ways to create a core dump but none of them are ddd/dbx commands. `gcore` can't grab the process because dbx is already holding ... | unix | solaris | coredump | dbx | ddd-debugger | null | open | Generate a coredump from crashed process attached to ddd/dbx
===
I'm running dbx in ddd on Solaris. The attached process has crashed and I can examine the stack in the debugger.
I want to save this core dump to disk for later.
Google shows me several ways to create a core dump but none of them are ddd/dbx comman... | 0 |
11,614,004 | 07/23/2012 13:57:48 | 1,545,823 | 07/23/2012 12:23:47 | 1 | 0 | How can I switch between views programmatically? | I have the following problem. I want to go from a view to another view, not with a button, but writing code. I have a view in which there are, among other things, some buttons. When I press one of them runs an if - else. From else I want to go to another view.
I have tried this
GameOverViewController *gOv... | iphone | objective-c | uiviewcontroller | null | null | null | open | How can I switch between views programmatically?
===
I have the following problem. I want to go from a view to another view, not with a button, but writing code. I have a view in which there are, among other things, some buttons. When I press one of them runs an if - else. From else I want to go to another view.
I ... | 0 |
8,812,195 | 01/10/2012 23:42:12 | 339,946 | 05/13/2010 04:57:26 | 87 | 0 | How to achieve continuous drag drop menu effect? | I'm trying to achieve a Drag and Drop menu affect. I'm not sure how to go about this, perhaps someone has experience with this exact effect.
Quite simply, when a user touches down on a menu item, I want a graphic to appear at their touch location. Their touch will now control the panning of the graphic. Upon releasi... | iphone | ios | xcode | ipad | null | null | open | How to achieve continuous drag drop menu effect?
===
I'm trying to achieve a Drag and Drop menu affect. I'm not sure how to go about this, perhaps someone has experience with this exact effect.
Quite simply, when a user touches down on a menu item, I want a graphic to appear at their touch location. Their touch wil... | 0 |
4,704,079 | 01/16/2011 05:58:40 | 236,924 | 12/22/2009 14:50:13 | 544 | 2 | Rails 3 jquery autocomplete | So I followed this tutorial:
https://github.com/crowdint/rails3-jquery-autocomplete-app
However I am only getting a textbox and no autocomplete help when I type. Does anyone know what can be the problem? | ruby-on-rails-3 | null | null | null | null | null | open | Rails 3 jquery autocomplete
===
So I followed this tutorial:
https://github.com/crowdint/rails3-jquery-autocomplete-app
However I am only getting a textbox and no autocomplete help when I type. Does anyone know what can be the problem? | 0 |
6,300,750 | 06/10/2011 00:25:22 | 648,566 | 03/07/2011 17:29:44 | 79 | 0 | Straight poker hand logic | I need some help implementing a straight hand poker in my program, so basically we have 2,3,4,5,6,7,8,9 and 0 is ten and J,Q,K,A. I'm using a array of 5 elements. How do I write a function that when a user enter a hand, lets say 23456 or 67890, or 42315, it will know it's a straight hand. I'm not required to check the ... | c | program | null | null | null | 06/10/2011 19:52:44 | not a real question | Straight poker hand logic
===
I need some help implementing a straight hand poker in my program, so basically we have 2,3,4,5,6,7,8,9 and 0 is ten and J,Q,K,A. I'm using a array of 5 elements. How do I write a function that when a user enter a hand, lets say 23456 or 67890, or 42315, it will know it's a straight hand.... | 1 |
4,584,974 | 01/03/2011 13:50:59 | 469,110 | 10/07/2010 13:03:33 | 10 | 1 | Simple: replace div with ajax content (jquery) | I followed [this thread][1]. I now have:
<a href="#" onclick="$('#gc').load('test');">reload</a>... </span>
<div id="gc">
empty
</div>
This is what I am getting:
Uncaught exception: TypeError: Cannot convert '$('#gc')' to object
Error thrown at line 1, column 0 in <anonymous functi... | javascript | jquery | ajax | null | null | null | open | Simple: replace div with ajax content (jquery)
===
I followed [this thread][1]. I now have:
<a href="#" onclick="$('#gc').load('test');">reload</a>... </span>
<div id="gc">
empty
</div>
This is what I am getting:
Uncaught exception: TypeError: Cannot convert '$('#gc')' to object
E... | 0 |
6,312,125 | 06/10/2011 21:13:26 | 793,401 | 06/10/2011 21:13:26 | 1 | 0 | C# set Event From string | I have a form,a button in form,and a dll file.dll file have a method like
mybuttonclick(object sender,eventargs e)
{
//some code
}
and myform code like that
public static Formk : System.Windows.Forms.form
{
public void load
{
... | c# | null | null | null | null | 06/11/2011 10:02:47 | not a real question | C# set Event From string
===
I have a form,a button in form,and a dll file.dll file have a method like
mybuttonclick(object sender,eventargs e)
{
//some code
}
and myform code like that
public static Formk : System.Windows.Forms.form
{
public void load
... | 1 |
5,812,113 | 04/28/2011 00:00:06 | 479,478 | 10/18/2010 15:47:25 | 8 | 0 | Pygtk: Change a widget's border color | I have looked everywhere but couldn't seem to find a way to change the color of the border.
For example I need a button like this:
gb = gtk.Button("Hi")
gb.set_border_width(50)
Now I wish to color the border red (this is a non-existent call):
gb.set_border_color('red')
I tried gb.modify_bg(...... | colors | width | pygtk | border | shadow | null | open | Pygtk: Change a widget's border color
===
I have looked everywhere but couldn't seem to find a way to change the color of the border.
For example I need a button like this:
gb = gtk.Button("Hi")
gb.set_border_width(50)
Now I wish to color the border red (this is a non-existent call):
gb.set_bord... | 0 |
11,274,036 | 06/30/2012 12:22:09 | 1,115,102 | 12/25/2011 06:00:11 | 6 | 0 | Track GPS Device | I am about to develop gps tracking system. Please give me some information how to monitor gps device install on my car in my desktop application on real time basis.
Thnaks | java | null | null | null | null | 06/30/2012 22:28:44 | not a real question | Track GPS Device
===
I am about to develop gps tracking system. Please give me some information how to monitor gps device install on my car in my desktop application on real time basis.
Thnaks | 1 |
5,324,985 | 03/16/2011 12:06:00 | 168,796 | 09/04/2009 21:44:45 | 228 | 6 | Using a view as a join table with Hibernate | I've got two entities which I want to join via a common String.
I've created a view which I want to use as the join table. This all works fine except for when I try to delete an entity. Hibernate then tries to delete from that view which of course fails. The database used is MySQL.
So I've got
@Entity
... | java | mysql | hibernate | java-ee | view | null | open | Using a view as a join table with Hibernate
===
I've got two entities which I want to join via a common String.
I've created a view which I want to use as the join table. This all works fine except for when I try to delete an entity. Hibernate then tries to delete from that view which of course fails. The database us... | 0 |
11,407,063 | 07/10/2012 05:22:02 | 1,438,364 | 06/05/2012 21:02:56 | 3 | 0 | jCarousel scroll | Now the selector (the red border) is moving on the small images. How can I do it so the selector to not hiding? I need it in that way so when it (the selector) comes to the end of the small images they should be scrolling too.
My other question is how to make the small image’s scroller to moving in both directions? ... | javascript | jquery | jcarousel | null | null | 07/13/2012 11:56:29 | too localized | jCarousel scroll
===
Now the selector (the red border) is moving on the small images. How can I do it so the selector to not hiding? I need it in that way so when it (the selector) comes to the end of the small images they should be scrolling too.
My other question is how to make the small image’s scroller to movin... | 3 |
369,519 | 12/15/2008 20:00:35 | 38,695 | 11/18/2008 20:52:12 | 21 | 5 | Is it better to use NOT or <> when comparing values ? | Is it better to use NOT or to use <> when comparing values in VBScript?<br>
is this:
<pre><code>
If NOT value1 = value2 Then
</code></pre>
or this:
<pre><code>
If value1 <> value2 Then
</code></pre>
better? | vbscript | null | null | null | null | null | open | Is it better to use NOT or <> when comparing values ?
===
Is it better to use NOT or to use <> when comparing values in VBScript?<br>
is this:
<pre><code>
If NOT value1 = value2 Then
</code></pre>
or this:
<pre><code>
If value1 <> value2 Then
</code></pre>
better? | 0 |
7,664,400 | 10/05/2011 16:14:05 | 933,074 | 09/07/2011 15:30:34 | 8 | 0 | Don't apply style to my button | I want to put a button without style inside a big page that use several CSS. So, I don't want to apply these styles to my button.
Thanks! | css | null | null | null | null | 10/05/2011 18:55:11 | not a real question | Don't apply style to my button
===
I want to put a button without style inside a big page that use several CSS. So, I don't want to apply these styles to my button.
Thanks! | 1 |
9,057,681 | 01/29/2012 23:16:11 | 1,177,058 | 01/29/2012 23:13:59 | 1 | 0 | simple programming? | void square(double* x)
i dont understand the (double * x) part of it
if it was without the * i would understand it, because it just like declaring a variable, but now i dont get it. I read that its a pointer but how does it work, can someone please give an example.
is it instead of declaring a variable "... | java | c++ | null | null | null | 01/29/2012 23:19:28 | not a real question | simple programming?
===
void square(double* x)
i dont understand the (double * x) part of it
if it was without the * i would understand it, because it just like declaring a variable, but now i dont get it. I read that its a pointer but how does it work, can someone please give an example.
is it instead ... | 1 |
7,937,667 | 10/29/2011 07:53:40 | 630,908 | 02/23/2011 19:09:04 | 400 | 2 | The directive #pragma, why it is called as such? | I would ask about the directive `#pragma`, it is stand fot what? And why it is called as such? | c++ | null | null | null | null | 10/29/2011 11:11:33 | not constructive | The directive #pragma, why it is called as such?
===
I would ask about the directive `#pragma`, it is stand fot what? And why it is called as such? | 4 |
10,837,081 | 05/31/2012 15:55:49 | 1,414,745 | 05/24/2012 10:19:42 | 8 | 0 | function defined in .cpp, but used in .h | I have an inline function defined in a header file. The inline function makes a call to another function, which is defined later in the .cpp file. My compiler gives an error. Which is the best way to fix that?
thanks! | c++ | header | null | null | null | 06/11/2012 15:11:58 | not a real question | function defined in .cpp, but used in .h
===
I have an inline function defined in a header file. The inline function makes a call to another function, which is defined later in the .cpp file. My compiler gives an error. Which is the best way to fix that?
thanks! | 1 |
3,087,377 | 06/21/2010 18:31:10 | 39,677 | 11/03/2008 21:48:03 | 4,747 | 3 | grails has some strange syntax, how is that java? | grails has some strange syntax, how is that java?
is it a custom templating language that then gets compiled down to java? | java | grails | null | null | null | 05/14/2012 17:06:49 | not constructive | grails has some strange syntax, how is that java?
===
grails has some strange syntax, how is that java?
is it a custom templating language that then gets compiled down to java? | 4 |
11,275,785 | 06/30/2012 16:37:12 | 1,493,263 | 06/30/2012 16:32:53 | 1 | 0 | Azure login issue for Turkish users | (Turkce bilgi asagida)
As of June 2012 the old Windows Azure management portal have some issues with Turkish.
You might get the following error
Sorry, Windows Azure was unable to complete your request. Please refer to theWindows Azure forum where current issues and topics are discussed.
Until this is res... | azure | turkish | null | null | null | 07/01/2012 21:12:59 | not a real question | Azure login issue for Turkish users
===
(Turkce bilgi asagida)
As of June 2012 the old Windows Azure management portal have some issues with Turkish.
You might get the following error
Sorry, Windows Azure was unable to complete your request. Please refer to theWindows Azure forum where current issues and to... | 1 |
4,163,343 | 11/12/2010 09:47:06 | 266,908 | 02/05/2010 09:03:06 | 30 | 2 | put method in the json object adds value to the first of the jsonobject; | Consider following piece of code:
JSONObject json=new JSONObject();
json.put("one"1);
json.put("two"2);
json.put("three"3);
If i print the jsonobject it prints like this
{"three":"1","two":"2","one":"1"}
But i want like this.
{"one":"1","two":"2","three":"1"}
Please help. Thanks in advan... | json | null | null | null | null | null | open | put method in the json object adds value to the first of the jsonobject;
===
Consider following piece of code:
JSONObject json=new JSONObject();
json.put("one"1);
json.put("two"2);
json.put("three"3);
If i print the jsonobject it prints like this
{"three":"1","two":"2","one":"1"}
But i want lik... | 0 |
8,024,411 | 11/06/2011 00:37:06 | 27,305 | 10/13/2008 03:41:50 | 2,464 | 27 | How to mimic the user experience of native application while building for cross mobile? | I'm building an application which I intend to deploy to iphone, android and blackberry. There's a unique characteristic I've noticed about my blackberry bold 9700, which uses an optical track pad for maneuvering around the screen. As an experiment, I deployed a simple phone gap application to my blackberry. I used ... | mobile | phonegap | null | null | null | null | open | How to mimic the user experience of native application while building for cross mobile?
===
I'm building an application which I intend to deploy to iphone, android and blackberry. There's a unique characteristic I've noticed about my blackberry bold 9700, which uses an optical track pad for maneuvering around the sc... | 0 |
4,730,405 | 01/18/2011 23:55:53 | 241,654 | 12/31/2009 17:56:43 | 211 | 2 | How to extract apple's 1 billion countdown? | I've been trying to figure it out for hours and i didn't success, This count *up* [counter][1] from apple 1 billion downloads prize. doesn't use flash at all, only javascript and 0-9 images, which makes it really cool. Now after stackoverflow successed to extract google's pacman, can we do that?
P.S I can't even kno... | javascript | null | null | null | null | 01/19/2011 00:33:08 | not a real question | How to extract apple's 1 billion countdown?
===
I've been trying to figure it out for hours and i didn't success, This count *up* [counter][1] from apple 1 billion downloads prize. doesn't use flash at all, only javascript and 0-9 images, which makes it really cool. Now after stackoverflow successed to extract google'... | 1 |
11,475,314 | 07/13/2012 17:20:14 | 1,507,213 | 07/06/2012 15:37:04 | 59 | 0 | If statement with two condition and file header? | So my goal here is to use an if statement with two conditions to test before writing a header of a file. However for some reason, my if statement with two testing conditions didn't even go though some at some point in the run something should have pass the if statement test.
Here is my code below: Thanks in advance.
... | python | testing | if-statement | header | null | 07/14/2012 05:02:37 | too localized | If statement with two condition and file header?
===
So my goal here is to use an if statement with two conditions to test before writing a header of a file. However for some reason, my if statement with two testing conditions didn't even go though some at some point in the run something should have pass the if statem... | 3 |
5,483,546 | 03/30/2011 08:01:18 | 683,426 | 03/30/2011 06:54:18 | 1 | 0 | Why do only 2 apps on 1 PC fail to connect to my SQL Server? All else will connect. | There are numerous relevant details here, so read carefully.
I'm helping a video rental store switch to a new POS (cash register) software. Their previous software came pre-installed on 3 PCs which were purchased from the software publisher. Computer #1 contains SQL Server which serves the POS software on all 3 comp... | sql-server | null | null | null | null | 11/30/2011 03:34:36 | off topic | Why do only 2 apps on 1 PC fail to connect to my SQL Server? All else will connect.
===
There are numerous relevant details here, so read carefully.
I'm helping a video rental store switch to a new POS (cash register) software. Their previous software came pre-installed on 3 PCs which were purchased from the softwa... | 2 |
10,709,484 | 05/22/2012 20:13:50 | 781,332 | 06/02/2011 14:43:33 | 710 | 22 | How to configure AppWrench tools in Eclipse to work with maven-ized GAE project? | Before maven-izing a GAE application, I was able to use the AppWrench tools from OnPositive to view the datastore inside Eclipse.
After maven-izing, I can't get things working again. Here's what I've done so far:
I installed the auth.jar and baseViewerImpl.jar files into my local maven repository with associated... | google-app-engine | maven | null | null | null | null | open | How to configure AppWrench tools in Eclipse to work with maven-ized GAE project?
===
Before maven-izing a GAE application, I was able to use the AppWrench tools from OnPositive to view the datastore inside Eclipse.
After maven-izing, I can't get things working again. Here's what I've done so far:
I installed th... | 0 |
3,099,134 | 06/23/2010 05:29:57 | 291,772 | 03/11/2010 18:38:45 | 812 | 24 | Getting class value. | I have an image, onclick on wich i make some `ajax` requests.
i need to pass a variable from `$_GET[]` to my onclick function, so i deside to do the following
<img id="img1" class="<?=$_GET['value']"?> />
and jquery
$("#img").click(function()
{
how can i get the class value here???
});
... | javascript | jquery | null | null | null | null | open | Getting class value.
===
I have an image, onclick on wich i make some `ajax` requests.
i need to pass a variable from `$_GET[]` to my onclick function, so i deside to do the following
<img id="img1" class="<?=$_GET['value']"?> />
and jquery
$("#img").click(function()
{
how can i get the cla... | 0 |
6,436,753 | 06/22/2011 08:05:00 | 784,606 | 06/05/2011 09:23:31 | 31 | 0 | Is there a way to refactor this javascript/jquery? |
switch (options.effect) {
case 'h-blinds-fadein':
$('.child').each(function (i) {
$(this).stop().css({opacity:0}).delay(100 * i).animate({
'opacity': 1
}, {
duration: options.speed,
complete: (i !== r * c - 1) ||
function () {
$(this).parent().repl... | javascript | jquery | refactoring | case | switch | 06/22/2011 09:47:52 | too localized | Is there a way to refactor this javascript/jquery?
===
switch (options.effect) {
case 'h-blinds-fadein':
$('.child').each(function (i) {
$(this).stop().css({opacity:0}).delay(100 * i).animate({
'opacity': 1
}, {
duration: options.speed,
complete: (i !== r * c - 1... | 3 |
2,423,772 | 03/11/2010 09:24:39 | 61,096 | 02/01/2009 00:53:05 | 37 | 0 | Validation in ASP.net | I want only letters and special symbols only / and - in my textbox
HOw should be the expression like to give in custom validator?
Thanks In Advance | asp.net | null | null | null | null | null | open | Validation in ASP.net
===
I want only letters and special symbols only / and - in my textbox
HOw should be the expression like to give in custom validator?
Thanks In Advance | 0 |
127,156 | 09/24/2008 13:35:13 | 5,446 | 09/09/2008 16:05:23 | 33 | 8 | How do I check if index exists on a table field in mysql | I've needed to Google this a couple times, so I'm sharing my Q/A. | mysql | indexing | null | null | null | null | open | How do I check if index exists on a table field in mysql
===
I've needed to Google this a couple times, so I'm sharing my Q/A. | 0 |
5,339,627 | 03/17/2011 13:25:53 | 664,393 | 03/17/2011 13:25:53 | 1 | 0 | Where can I download this engine? | Is there a way where I can download this enginen in order to install it on my own server? | download | install | null | null | null | 03/19/2011 02:55:54 | not a real question | Where can I download this engine?
===
Is there a way where I can download this enginen in order to install it on my own server? | 1 |
9,419,298 | 02/23/2012 18:51:17 | 1,222,089 | 02/20/2012 21:42:57 | 16 | 1 | Is this class Right ? Hope you'd help :) | I've been wondering if the following class is right :
This class should make a mysql connection after gathering data of course , it also does mysql's different manipulations such as 'select', 'insert', 'update','delete' ...etc
class MySQL {
var $hostname;
var $username;
var $password;
var $da... | php | class | null | null | null | 02/24/2012 14:36:07 | too localized | Is this class Right ? Hope you'd help :)
===
I've been wondering if the following class is right :
This class should make a mysql connection after gathering data of course , it also does mysql's different manipulations such as 'select', 'insert', 'update','delete' ...etc
class MySQL {
var $hostname;
... | 3 |
11,644,141 | 07/25/2012 06:50:33 | 1,531,001 | 07/17/2012 07:32:59 | 1 | 0 | What is mean by PHP accelerator (APC) ? How to use that ? What is its need | My Client has been asked to use the **PHP Accelerator** in my project. I dont know What it is. Can anyone describe me.
It will be helpful to complete the project | php | null | null | null | null | 07/25/2012 11:55:43 | not a real question | What is mean by PHP accelerator (APC) ? How to use that ? What is its need
===
My Client has been asked to use the **PHP Accelerator** in my project. I dont know What it is. Can anyone describe me.
It will be helpful to complete the project | 1 |
11,008,518 | 06/13/2012 05:09:02 | 569,711 | 01/10/2011 10:49:42 | 8 | 0 | LINQ: How to return all child elements? | For an application I am working on, I have to display data from an XML File. There's a few transformations being done, but eventually the end result will be displayed in a treeview. When a user then clicks on a node, I want to pop up the details in a listview.
When no node has been selected, I basically use LINQ to ... | xml | linq | null | null | null | null | open | LINQ: How to return all child elements?
===
For an application I am working on, I have to display data from an XML File. There's a few transformations being done, but eventually the end result will be displayed in a treeview. When a user then clicks on a node, I want to pop up the details in a listview.
When no nod... | 0 |
11,362,004 | 07/06/2012 12:14:05 | 1,506,699 | 07/06/2012 12:05:30 | 1 | 0 | How to set up email notification in SVN server(Windows) | I am using a windows SVN server, can anyone please help me to configure the email notification in the svn server.
Plz drop me to geroget@gmail.com
Thanks,
GeorgeKutty Thomas | svn | tortoisesvn | null | null | null | 07/07/2012 07:12:49 | off topic | How to set up email notification in SVN server(Windows)
===
I am using a windows SVN server, can anyone please help me to configure the email notification in the svn server.
Plz drop me to geroget@gmail.com
Thanks,
GeorgeKutty Thomas | 2 |
8,352,269 | 12/02/2011 05:49:40 | 1,063,372 | 11/24/2011 06:48:28 | 1 | 0 | error in loading as well as running the test project | Error loading c:\users\xyz\documents\visual studio 2010\Projects\TestProject1\TestProject1\bin\Debug\TestProject1.dll: Method not found: 'Microsoft.VisualStudio.TestTools.Resources.EqtMessage Microsoft.VisualStudio.TestTools.Resources.Messages.get_VSIP_TestProjectRetargetNeedConfigUpdate()'. | asp.net | null | null | null | null | 12/02/2011 14:49:37 | not a real question | error in loading as well as running the test project
===
Error loading c:\users\xyz\documents\visual studio 2010\Projects\TestProject1\TestProject1\bin\Debug\TestProject1.dll: Method not found: 'Microsoft.VisualStudio.TestTools.Resources.EqtMessage Microsoft.VisualStudio.TestTools.Resources.Messages.get_VSIP_TestProje... | 1 |
6,671,236 | 07/12/2011 21:15:49 | 771,517 | 05/26/2011 14:44:03 | 18 | 1 | margin-right: auto but I want it would be maximal value. | I have a container about a width equals 70% of my page. In the container I put four boxes about a width equals 22%, and set the margin-right parameter to divide those boxes each other. However, those boxes don't cover all width of the parent element - the margin-right parameter which I set to "auto" is small, and it wo... | html | css | null | null | null | null | open | margin-right: auto but I want it would be maximal value.
===
I have a container about a width equals 70% of my page. In the container I put four boxes about a width equals 22%, and set the margin-right parameter to divide those boxes each other. However, those boxes don't cover all width of the parent element - the ma... | 0 |
11,090,129 | 06/18/2012 19:58:07 | 1,450,236 | 06/12/2012 02:55:46 | 18 | 0 | Coding Paradigm: Should I Return 0 if Function is Successful? | When I'm writing a user define function, should I return 0 if the function is successful or a non null value?
I personally like to return 0 if my function is successful, but I always see error handling more like `(!var)` and less like `(var != NULL)`. So would it be better to return some value like `1`, as known as... | c | paradigms | null | null | null | 06/18/2012 20:14:01 | not constructive | Coding Paradigm: Should I Return 0 if Function is Successful?
===
When I'm writing a user define function, should I return 0 if the function is successful or a non null value?
I personally like to return 0 if my function is successful, but I always see error handling more like `(!var)` and less like `(var != NULL)`... | 4 |
10,096,670 | 04/10/2012 21:22:25 | 480,870 | 10/17/2010 14:15:36 | 51 | 2 | Uploading and tagging photos disabled by Facebook on my application | I am very disappointed with Facebook. They do not have the slightest respect for the developers.
I had an application setted up on facebook, for I think over an year or close to this.
It was only used to allow my website users, to upload their photos to Facebook.
Last month for example, the App had 80.828 acti... | facebook | facebook-graph-api | upload | photos | image-uploading | 04/13/2012 03:25:35 | not a real question | Uploading and tagging photos disabled by Facebook on my application
===
I am very disappointed with Facebook. They do not have the slightest respect for the developers.
I had an application setted up on facebook, for I think over an year or close to this.
It was only used to allow my website users, to upload the... | 1 |
6,471,196 | 06/24/2011 17:00:28 | 231,181 | 12/14/2009 10:56:13 | 1,613 | 108 | I ordered, downloaded and installed Delphi XE Prof today - do I have the latest version automatically ? | Today being: 24th of June, 2011
The about says : Embarcadero® Delphi® XE Version 15.0.3953.35171
Without having looked at every possible option, I don't immediately see a check for upgrade option. | delphi-xe | null | null | null | null | 06/24/2011 22:04:00 | too localized | I ordered, downloaded and installed Delphi XE Prof today - do I have the latest version automatically ?
===
Today being: 24th of June, 2011
The about says : Embarcadero® Delphi® XE Version 15.0.3953.35171
Without having looked at every possible option, I don't immediately see a check for upgrade option. | 3 |
11,164,787 | 06/22/2012 22:11:33 | 229,998 | 12/11/2009 22:08:20 | 4,700 | 296 | How to convert a PDF to Bitmap (rasterized) in C++ (*NO .NET*) | I've seen a lot of libraries for rasterizing PDF files, but all of them seem to require .NET. I need this to run on Mac as well as windows and I don't have the option of forcing all users to install the .NET framework. I'm willing to do a platform specific solution if I can't find a better option, but I'd much prefer t... | c++ | pdf | bitmap | resterize | null | 06/24/2012 16:29:38 | not constructive | How to convert a PDF to Bitmap (rasterized) in C++ (*NO .NET*)
===
I've seen a lot of libraries for rasterizing PDF files, but all of them seem to require .NET. I need this to run on Mac as well as windows and I don't have the option of forcing all users to install the .NET framework. I'm willing to do a platform spec... | 4 |
11,287,413 | 07/02/2012 03:11:33 | 1,287,219 | 03/23/2012 00:23:48 | 18 | 2 | Advance for each loop in Velocity | I am trying to insert a symbol between each item in the foreach loop, so there is no symbol at the beginning of 1st item and end of last item.
I got the info as http://wiki.ablecommerce.com/index.php/NVelocity#Looping, I know we should user #between, but how is the correct sytax?
#foreach($item in $items)${ite... | c# | templates | foreach | velocity | template-engine | null | open | Advance for each loop in Velocity
===
I am trying to insert a symbol between each item in the foreach loop, so there is no symbol at the beginning of 1st item and end of last item.
I got the info as http://wiki.ablecommerce.com/index.php/NVelocity#Looping, I know we should user #between, but how is the correct sytax?... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.