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,671,484 | 10/06/2011 07:46:49 | 809,565 | 06/22/2011 02:37:24 | 111 | 1 | Crontab not working | I use crontab -e to add the following:
36 * * * * /root/Backup/backup.sh
But it does not work!
I find this in syslog, but it actually does not run...
Oct 6 15:36:01 ubuntu CRON[7685]: (root) CMD (/root/Backup/backup.sh)
I sure my script work as I run it successfully if I run it directly | linux | ubuntu | crontab | null | null | 10/07/2011 06:54:26 | off topic | Crontab not working
===
I use crontab -e to add the following:
36 * * * * /root/Backup/backup.sh
But it does not work!
I find this in syslog, but it actually does not run...
Oct 6 15:36:01 ubuntu CRON[7685]: (root) CMD (/root/Backup/backup.sh)
I sure my script work as I run it successfully if I run it dir... | 2 |
9,745,746 | 03/16/2012 23:24:38 | 1,275,105 | 03/16/2012 23:14:06 | 1 | 0 | Twitter Bootstrap 2 carousel - display a set of thumbnails at a time like jcarousel | I would appreciate it if anyone can advice on how to modify Twitter Bootstrap 2 carousel in order to display a set of thumbnails at a time similar to this jquery plugin (jcarousel)
http://sorgalla.com/projects/jcarousel/examples/static_simple.html
Thanks | jquery | twitter-bootstrap | jcarousel | null | null | null | open | Twitter Bootstrap 2 carousel - display a set of thumbnails at a time like jcarousel
===
I would appreciate it if anyone can advice on how to modify Twitter Bootstrap 2 carousel in order to display a set of thumbnails at a time similar to this jquery plugin (jcarousel)
http://sorgalla.com/projects/jcarousel/examples... | 0 |
8,591,532 | 12/21/2011 14:37:56 | 492,767 | 05/05/2010 13:13:03 | 903 | 35 | Dangerous or common username in for user vanity url | I'm changing my app to allow vanity user url:
http://domain.com/username
I am trying to find out what are the common names that should be prevented from the user to register, such as: phpmyadmin, password, username, about, contact, support, etc.
Best if there is a list available, but I haven't been able to... | security | null | null | null | null | 12/22/2011 13:06:45 | not constructive | Dangerous or common username in for user vanity url
===
I'm changing my app to allow vanity user url:
http://domain.com/username
I am trying to find out what are the common names that should be prevented from the user to register, such as: phpmyadmin, password, username, about, contact, support, etc.
Best... | 4 |
4,099,958 | 11/04/2010 18:30:30 | 105,570 | 05/12/2009 18:49:17 | 22,095 | 627 | Scrolling PAST the bottom row of a DataGridView | Is there some property or method to set the vertical scroll position of a `DataGridView` **past** the bottom row?
What I mean is, say I have a `DataGridView` with enough rows to fill its client area. Then (by default, at least) I cannot scroll down past this point:
![DataGridView scrolled to bottom row][1]
I w... | .net | winforms | datagridview | scrolling | null | null | open | Scrolling PAST the bottom row of a DataGridView
===
Is there some property or method to set the vertical scroll position of a `DataGridView` **past** the bottom row?
What I mean is, say I have a `DataGridView` with enough rows to fill its client area. Then (by default, at least) I cannot scroll down past this point... | 0 |
9,151,257 | 02/05/2012 17:22:03 | 571,874 | 01/11/2011 20:58:01 | 43 | 0 | javascript onDeleted event after deleting row from telerik grid | my telerik grid fill via ajax. My delete method:
[HttpPost]
[GridAction]
public ActionResult _AjaxModelDelete(CarModel obj)
{
Model m = dm.GetModelById(obj.Id);
dm.DeleteModel(m);
List<Model> res = dm.GetModelsByVendorId(m.VendorId).ToList();
... | .net | asp.net-mvc | asp.net-mvc-3 | telerik-grid | null | null | open | javascript onDeleted event after deleting row from telerik grid
===
my telerik grid fill via ajax. My delete method:
[HttpPost]
[GridAction]
public ActionResult _AjaxModelDelete(CarModel obj)
{
Model m = dm.GetModelById(obj.Id);
dm.DeleteModel(m);
... | 0 |
7,385,403 | 09/12/2011 08:55:52 | 441,343 | 09/07/2010 10:34:49 | 533 | 16 | Code formatting visual studio and sql server | What is the equivalent of Ctrl + K + D (Visual Studio) in Sql Server Management Studio which is use to format the code ? | sql-server-2008 | code-formatting | null | null | null | null | open | Code formatting visual studio and sql server
===
What is the equivalent of Ctrl + K + D (Visual Studio) in Sql Server Management Studio which is use to format the code ? | 0 |
5,884,272 | 05/04/2011 13:37:26 | 351,980 | 05/27/2010 13:01:05 | 878 | 32 | C# datatable, duplicate data | For testing I would like to expand my result set. I have a DataTable dt that has 7 or so results. I would like to do something like:
dt.Rows.Add(dt); a few times, just to make the data set larger.
I also tried dt.Rows.Add(dt.Rows[0]).
The first gave an error about the type, the second said the row already exis... | c# | null | null | null | null | null | open | C# datatable, duplicate data
===
For testing I would like to expand my result set. I have a DataTable dt that has 7 or so results. I would like to do something like:
dt.Rows.Add(dt); a few times, just to make the data set larger.
I also tried dt.Rows.Add(dt.Rows[0]).
The first gave an error about the type, th... | 0 |
11,647,411 | 07/25/2012 10:09:38 | 1,551,036 | 07/25/2012 08:48:30 | 1 | 0 | jQuery auto increment for class name | I'm trying to make a drop down menu with click event. I have this html structure:
<ul id="menubar">
<li class="menu1">
<a href="#">Menu 1</a>
<ul class="submenubar">
<li class="submenu1"><a href="#">Submenu 1</a></li>
<li cl... | auto-increment | null | null | null | null | 07/25/2012 12:26:30 | off topic | jQuery auto increment for class name
===
I'm trying to make a drop down menu with click event. I have this html structure:
<ul id="menubar">
<li class="menu1">
<a href="#">Menu 1</a>
<ul class="submenubar">
<li class="submenu1"><a href="#">Subm... | 2 |
9,063,065 | 01/30/2012 11:23:15 | 1,076,965 | 12/02/2011 08:15:49 | 22 | 0 | Finished Software Upload on Web | I have finished a software application which i have made using Python only. I have used py2exe and created .exe format for distribution . Now I am stuck . I have no idea where can I upload my software for people to download it for free . This is a windows GUI App . I want to provide the software for free (but not the s... | python | null | null | null | null | 01/30/2012 11:32:21 | off topic | Finished Software Upload on Web
===
I have finished a software application which i have made using Python only. I have used py2exe and created .exe format for distribution . Now I am stuck . I have no idea where can I upload my software for people to download it for free . This is a windows GUI App . I want to provide... | 2 |
4,005,381 | 10/23/2010 18:12:12 | 401,705 | 07/25/2010 19:11:34 | 47 | 0 | mysqli php extend | i was wondering if you could point me in the right direction. Im extending the mysqli class but cant seem to call the error function..
<?php
class mysqli_ls extends mysqli
{
private $activeConnection = 0;
private $linkArr = array();
private $queryArr = array();
p... | php | mysqli | null | null | null | null | open | mysqli php extend
===
i was wondering if you could point me in the right direction. Im extending the mysqli class but cant seem to call the error function..
<?php
class mysqli_ls extends mysqli
{
private $activeConnection = 0;
private $linkArr = array();
private $queryA... | 0 |
7,608,027 | 09/30/2011 08:49:18 | 965,884 | 09/26/2011 21:39:24 | 1 | 0 | Hidden field in spring MVC | I wanted to use spring hidden tag in below code. Is this possible in below code, what I have to write in my controller to do that or what I am doing is correct.
<c:forEach var="record" items="${records}">
<tr>
<td>
<form:form id="myForm" action="list.html" method="post">
<input type="hidde... | spring | spring-mvc | null | null | null | null | open | Hidden field in spring MVC
===
I wanted to use spring hidden tag in below code. Is this possible in below code, what I have to write in my controller to do that or what I am doing is correct.
<c:forEach var="record" items="${records}">
<tr>
<td>
<form:form id="myForm" action="list.html" method="po... | 0 |
10,300,866 | 04/24/2012 15:16:22 | 1,354,069 | 04/24/2012 15:10:09 | 1 | 0 | Comments cache: how to delete with wordpress preview post? | In my website i use facebook comments plugin, and if i want a post preview with wordpress, facebook run cache page. In this way when post is published facebook cache don't see post title, description, image etc. and it fix only if a go here: https://developers.facebook.com/tools/debug
There is a solution to prevent ... | facebook | wordpress | comments | null | null | null | open | Comments cache: how to delete with wordpress preview post?
===
In my website i use facebook comments plugin, and if i want a post preview with wordpress, facebook run cache page. In this way when post is published facebook cache don't see post title, description, image etc. and it fix only if a go here: https://develo... | 0 |
11,319,272 | 07/03/2012 21:13:01 | 1,426,522 | 05/30/2012 16:18:54 | 13 | 1 | Mathematica Combining graphs and "delete x-achses" | I have two plots f1(x) and f2(x). I want to combine them in the way that in the plot there should by f1 on the axis of ordinates and f2 on the axis of abscissae.
Any ideas?
Thanks,
Andreas | graph | mathematica | plot | show | combine | 07/03/2012 22:31:50 | off topic | Mathematica Combining graphs and "delete x-achses"
===
I have two plots f1(x) and f2(x). I want to combine them in the way that in the plot there should by f1 on the axis of ordinates and f2 on the axis of abscissae.
Any ideas?
Thanks,
Andreas | 2 |
7,665,750 | 10/05/2011 18:14:30 | 330,026 | 04/30/2010 19:15:59 | 1 | 0 | Ubuntu buffer cache freezes on sync | I am not that strong in linux / unix so asking for any help on problem I have.
I am running site on amazon ec2.
I am running apache tomcat mysql on one large instance 8gb of RAM.
Database is quite large but I don't have problems with performance and there is around 3gb of free memory on the box.
I noticed that abou... | mysql | linux | caching | buffer | freeze | 10/06/2011 08:32:25 | off topic | Ubuntu buffer cache freezes on sync
===
I am not that strong in linux / unix so asking for any help on problem I have.
I am running site on amazon ec2.
I am running apache tomcat mysql on one large instance 8gb of RAM.
Database is quite large but I don't have problems with performance and there is around 3gb of fre... | 2 |
7,052,151 | 08/13/2011 17:33:27 | 635,981 | 02/26/2011 22:59:07 | 1,044 | 35 | proper order of tags and version bumps | I have a [library](https://github.com/dweldon/estring) on github which uses rebar, but it has never been tagged via git. As of this writing, the app.src file indicates it is version 0.1 (this has never been changed).
I'd like to make some commits which will change some of the function definitions. I need to use tags... | erlang | rebar | null | null | null | null | open | proper order of tags and version bumps
===
I have a [library](https://github.com/dweldon/estring) on github which uses rebar, but it has never been tagged via git. As of this writing, the app.src file indicates it is version 0.1 (this has never been changed).
I'd like to make some commits which will change some of ... | 0 |
3,061,698 | 06/17/2010 12:47:54 | 169,774 | 09/07/2009 15:56:43 | 621 | 9 | auto_inline - inadequate documentation | I want to disable inlining for a particular function. What the compiler does for everything else should be as specified in the project properties. I found a page on a forum which suggested the following:
#pragma auto_inline(off)
void func()
{
}
#pragma auto_inline()
The author suggested th... | c++ | visual-studio-2008 | null | null | null | null | open | auto_inline - inadequate documentation
===
I want to disable inlining for a particular function. What the compiler does for everything else should be as specified in the project properties. I found a page on a forum which suggested the following:
#pragma auto_inline(off)
void func()
{
}
#pra... | 0 |
7,702,490 | 10/09/2011 09:11:37 | 951,512 | 09/18/2011 18:07:59 | 1 | 0 | How to integrate lyrics in my mp3 player , using Netbeans as IDE? | I have to make a music player . i wanna sync lyrics for my mp3 player just like subtitles in media player .How Should I do it?
| java | mp3 | mediaplayer | null | null | 10/09/2011 16:16:11 | not a real question | How to integrate lyrics in my mp3 player , using Netbeans as IDE?
===
I have to make a music player . i wanna sync lyrics for my mp3 player just like subtitles in media player .How Should I do it?
| 1 |
9,117,184 | 02/02/2012 17:43:52 | 747,228 | 05/10/2011 16:32:27 | 105 | 1 | How to get information about code lines in QT? | I need to be able to read information about project lines in the qt project which is building by mingw.
How can I do it? Where I should include - /MAPINFO:LINES , to get output file with information about lines numbers? | qt | mingw | line-numbers | null | null | 02/05/2012 03:45:13 | not a real question | How to get information about code lines in QT?
===
I need to be able to read information about project lines in the qt project which is building by mingw.
How can I do it? Where I should include - /MAPINFO:LINES , to get output file with information about lines numbers? | 1 |
6,136,508 | 05/26/2011 09:36:17 | 771,045 | 05/26/2011 09:36:17 | 1 | 0 | iOS How to Send string Class 1 to Class2 | Class1 i have
textClass1 = @"Hello"
how to send String to Class2
Label.text = textClass1 ?
Thank you :D | ios | null | null | null | null | 05/26/2011 14:01:34 | not a real question | iOS How to Send string Class 1 to Class2
===
Class1 i have
textClass1 = @"Hello"
how to send String to Class2
Label.text = textClass1 ?
Thank you :D | 1 |
11,492,540 | 07/15/2012 14:06:22 | 1,429,891 | 06/01/2012 04:47:46 | 6 | 0 | Changing CPU and MB on a hackintosh | I run a hackintosh on a ASUS p5qc and E8650 CPU. Now i bought a new MB (Gigabyte GA-Z68X-UD3H-B3) and a new CPU (I7-2700K). IS it somehow possible not to reinstall everything and just swap the MB and CPU and continue using the existing OSX (Lion)? | hackintosh | null | null | null | null | 07/17/2012 11:02:50 | off topic | Changing CPU and MB on a hackintosh
===
I run a hackintosh on a ASUS p5qc and E8650 CPU. Now i bought a new MB (Gigabyte GA-Z68X-UD3H-B3) and a new CPU (I7-2700K). IS it somehow possible not to reinstall everything and just swap the MB and CPU and continue using the existing OSX (Lion)? | 2 |
815,854 | 05/02/2009 23:07:05 | 84,274 | 03/29/2009 14:27:00 | 6 | 1 | Can NHibernate create tables from existing classes automatically? | I'm very new at this, but I need to create new tables from existing classes without creating them by hand. Can this be done using a tool or command line? | nhibernate | c# | null | null | null | null | open | Can NHibernate create tables from existing classes automatically?
===
I'm very new at this, but I need to create new tables from existing classes without creating them by hand. Can this be done using a tool or command line? | 0 |
4,443,963 | 12/14/2010 20:36:29 | 484,290 | 10/22/2010 14:06:21 | 111 | 11 | Java Send Mail Function | Does anybody has a proper java send mail function that works 100 % and can share it with me. I am getting some p | java | sendmail | null | null | null | 12/15/2010 01:23:31 | not a real question | Java Send Mail Function
===
Does anybody has a proper java send mail function that works 100 % and can share it with me. I am getting some p | 1 |
7,323,913 | 09/06/2011 17:41:29 | 931,189 | 09/06/2011 17:04:41 | 1 | 0 | Could not retrieve id for the specified page. Please verify correct hrf was passed in | 2) The Facebook Like button doesn’t work on some of the Facebook accounts (Children’s for example). The error message is: “Could not retrieve id for the specified page. Please verify correct hrf was passed in
example: URL ==> http://www.facebook.com/pages/Adam-Rapp/25312541522 | facebook | like | null | null | null | 09/06/2011 18:49:23 | off topic | Could not retrieve id for the specified page. Please verify correct hrf was passed in
===
2) The Facebook Like button doesn’t work on some of the Facebook accounts (Children’s for example). The error message is: “Could not retrieve id for the specified page. Please verify correct hrf was passed in
example: URL ==> ... | 2 |
7,379,768 | 09/11/2011 16:52:59 | 939,367 | 09/11/2011 16:52:59 | 1 | 0 | How to read a joystick from python on OSX? | Is there any light weight way to read a joystick under mac osx from python? The only thing I can find online seems to require installing pygame, SDL, and associated deps (xorg, numpy, etc). Under linux, I was able to just read from /dev/input/js0, but OSX seems to have no such equivalent device. Any thoughts? Thanks! | python | osx | joystick | null | null | null | open | How to read a joystick from python on OSX?
===
Is there any light weight way to read a joystick under mac osx from python? The only thing I can find online seems to require installing pygame, SDL, and associated deps (xorg, numpy, etc). Under linux, I was able to just read from /dev/input/js0, but OSX seems to have no... | 0 |
8,423,323 | 12/07/2011 22:12:04 | 1,030,498 | 11/04/2011 21:57:00 | 1 | 0 | WordPress won't let me add images to posts | I recently migrated a WordPress install from a subdirectory to the root. After the migration everything worked great, except that I can no longer set a featured thumbnail or add a picture in the WYSIWYG. On a possibly related note, I can only set post tags from the Quick Edit screen and not the post edit screen.
Whe... | image | wordpress | null | null | null | 12/08/2011 03:56:10 | off topic | WordPress won't let me add images to posts
===
I recently migrated a WordPress install from a subdirectory to the root. After the migration everything worked great, except that I can no longer set a featured thumbnail or add a picture in the WYSIWYG. On a possibly related note, I can only set post tags from the Quick ... | 2 |
11,254,381 | 06/28/2012 23:41:47 | 1,489,960 | 06/28/2012 23:30:32 | 1 | 0 | convert a table to circle | I have a rectangle table which have 7 rows and 46 columns the top row and the first columns are the headers. so this can be considered as a matrix and I would like to convert this table into a circles. what I mean when I say convert to circle:
a circle which have 7 tracks and also have radius drawn 45 times to make it... | r | circle | radius | null | null | 07/21/2012 05:58:24 | not a real question | convert a table to circle
===
I have a rectangle table which have 7 rows and 46 columns the top row and the first columns are the headers. so this can be considered as a matrix and I would like to convert this table into a circles. what I mean when I say convert to circle:
a circle which have 7 tracks and also have r... | 1 |
7,804,705 | 10/18/2011 08:55:52 | 600,024 | 02/02/2011 13:12:18 | 478 | 25 | Dynamically pass entries to Method requiring params | I'm currently having the following method which requires params - I cannot change this methods definition:
public static DoStuff(params Parameter p){ /* ... */ }
I do not know how many parameters I'll have at runtime, so I want to pass an array or a list - I've thought about using Iterators like this:
... | c# | iterator | params | null | null | null | open | Dynamically pass entries to Method requiring params
===
I'm currently having the following method which requires params - I cannot change this methods definition:
public static DoStuff(params Parameter p){ /* ... */ }
I do not know how many parameters I'll have at runtime, so I want to pass an array or a lis... | 0 |
824,057 | 05/05/2009 09:24:11 | 88,910 | 04/09/2009 03:58:49 | 86 | 2 | What to do as a novice programmer? | So...As a senior year computer engineer in college, I was wondering if you guys had any ideas of what I should do to gain more experience?
I took a intro to C++ class, and are proficient in C++, Verilog, Python and Bash scripting. I will be taking a bunch of programming classes in the Fall (Operating Systems, Algori... | c++ | professional-experience | null | null | null | 01/30/2012 14:57:47 | not constructive | What to do as a novice programmer?
===
So...As a senior year computer engineer in college, I was wondering if you guys had any ideas of what I should do to gain more experience?
I took a intro to C++ class, and are proficient in C++, Verilog, Python and Bash scripting. I will be taking a bunch of programming classe... | 4 |
2,769,903 | 05/05/2010 00:45:22 | 328,536 | 04/29/2010 05:45:01 | 28 | 0 | ASP.NET small online store, shopping cart | Currently I have a site that is using Google Checkout's mini cart system and I like it a lot, however, I'm wondering if there is a more professional way of doing it, while still keeping it simple.
I've looked into an authorize.net account, but I need to find a way to handle the mini shopping cart before heading off ... | google-checkout | shopping-cart | asp.net | asp | cart | null | open | ASP.NET small online store, shopping cart
===
Currently I have a site that is using Google Checkout's mini cart system and I like it a lot, however, I'm wondering if there is a more professional way of doing it, while still keeping it simple.
I've looked into an authorize.net account, but I need to find a way to ha... | 0 |
2,495,003 | 03/22/2010 19:12:12 | 299,310 | 03/22/2010 19:12:12 | 1 | 0 | Hi, I would like to know if anyone knows where to get some exercises of to practise | I think small exercises would be the baest way for me to learn programming. I am the begginer and I am willing to give plenty of time to this.
To explain, to my opinion exercises should be something to write not long programs (10-30lines), to say what the program will print or that is the mistake.
Who can help me an... | c# | php | java | python | null | 07/12/2011 14:12:37 | not constructive | Hi, I would like to know if anyone knows where to get some exercises of to practise
===
I think small exercises would be the baest way for me to learn programming. I am the begginer and I am willing to give plenty of time to this.
To explain, to my opinion exercises should be something to write not long programs (10... | 4 |
7,789,857 | 10/17/2011 05:53:40 | 998,553 | 10/17/2011 05:25:20 | 1 | 0 | Adding two columns | i have a table report like this
pipno demand principle interest balance=(demand-principle)
101 5000 500 100 4500
102 1000 750 100 250
103 2000 1500 100 500
104 1500 1000 100 500
101 5000 1500 100 4000// Here in demand field i ... | sql-server | null | null | null | null | 10/18/2011 08:59:25 | not a real question | Adding two columns
===
i have a table report like this
pipno demand principle interest balance=(demand-principle)
101 5000 500 100 4500
102 1000 750 100 250
103 2000 1500 100 500
104 1500 1000 100 500
101 5000 1500 100 4000//... | 1 |
7,741,694 | 10/12/2011 14:29:27 | 875,239 | 08/02/2011 18:21:41 | 76 | 1 | Parse HTML source after login with Java | I've been trying to access a website to parse data for an Android application I am developing, but I am having no luck when it comes to logging in.
The website is https://giffgaff.com/mobile/login
And below is a stripped out version of the form from that page (HTML):
<form action="/mobile/login" method="po... | java | login | html-parsing | null | null | null | open | Parse HTML source after login with Java
===
I've been trying to access a website to parse data for an Android application I am developing, but I am having no luck when it comes to logging in.
The website is https://giffgaff.com/mobile/login
And below is a stripped out version of the form from that page (HTML):
... | 0 |
3,930,658 | 10/14/2010 06:32:28 | 474,166 | 10/13/2010 07:09:37 | 6 | 0 | I need to move an image dynamically,depending upon the input from the user..What should i use? | Depending upon the user i may need to move it to right ,left,top or bottom.
Should i use animation for the purpose?
Or is there any method to move image dynamically?
I meant the things in android application | android | null | null | null | null | null | open | I need to move an image dynamically,depending upon the input from the user..What should i use?
===
Depending upon the user i may need to move it to right ,left,top or bottom.
Should i use animation for the purpose?
Or is there any method to move image dynamically?
I meant the things in android application | 0 |
416,077 | 01/06/2009 10:44:24 | 51,382 | 01/04/2009 14:30:05 | 36 | 11 | Any Code Review Communites out there? | After reading this [post][1] I had a look around for 'code review' communities, but I did not really find one. There were a few but they were usually for a very specific technology and not just a programming language specific one.
Never really thought of it before, but there sure is a lot of code out there that coul... | code-review | community | null | null | null | null | open | Any Code Review Communites out there?
===
After reading this [post][1] I had a look around for 'code review' communities, but I did not really find one. There were a few but they were usually for a very specific technology and not just a programming language specific one.
Never really thought of it before, but ther... | 0 |
10,007,589 | 04/04/2012 08:36:54 | 1,296,985 | 03/28/2012 02:14:45 | 22 | 0 | Error in running 3d images | If i am running one 3d image its run but when i am implementing one more 3d image and run it shows the error.The error is
04-04 14:04:51.367: E/AndroidRuntime(11649): at rajawali.BaseObject3D.setShaderParams(BaseObject3D.java:219)
04-04 14:04:51.367: E/AndroidRuntime(11649): at rajawali.BaseObject3D.re... | android | 3d | null | null | null | 04/05/2012 11:52:15 | not a real question | Error in running 3d images
===
If i am running one 3d image its run but when i am implementing one more 3d image and run it shows the error.The error is
04-04 14:04:51.367: E/AndroidRuntime(11649): at rajawali.BaseObject3D.setShaderParams(BaseObject3D.java:219)
04-04 14:04:51.367: E/AndroidRuntime(1164... | 1 |
3,287,061 | 07/20/2010 04:40:33 | 1,444,686 | 11/27/2009 08:40:28 | 16 | 1 | Gmail: Hindi letter showing in Boxes | I want to type some letters in GMAIL but it shows me boxes on my pc
instead of showing correct letters. I have MAC 10.5.5. I have tried in
Safari & firefox but same issue. Its working fine on windows. So
please let me know whats issue with MAC.
Thanks in advance,
Laxmilal Menaria | unicode | gmail | null | null | null | 07/20/2010 11:12:09 | off topic | Gmail: Hindi letter showing in Boxes
===
I want to type some letters in GMAIL but it shows me boxes on my pc
instead of showing correct letters. I have MAC 10.5.5. I have tried in
Safari & firefox but same issue. Its working fine on windows. So
please let me know whats issue with MAC.
Thanks in advance,
Laxmi... | 2 |
3,173,947 | 07/04/2010 06:44:00 | 100,208 | 05/03/2009 11:24:02 | 881 | 14 | Audio format for stream recording: FLV or mp4? | I'm capturing microphone (speech) input and publishing it on a flash server. I want this content to eventually be able to be streamed on iPhones as well as in the browser, so I'm wondering if I should pick the FLV or mp4 format (which encodes audio as AAC). Any thoughts, or tradeoffs I should take into account regardin... | flv | mp4 | aac | null | null | null | open | Audio format for stream recording: FLV or mp4?
===
I'm capturing microphone (speech) input and publishing it on a flash server. I want this content to eventually be able to be streamed on iPhones as well as in the browser, so I'm wondering if I should pick the FLV or mp4 format (which encodes audio as AAC). Any though... | 0 |
1,569,101 | 10/14/2009 21:26:26 | 76,512 | 03/11/2009 05:55:51 | 106 | 4 | TSQL function to return the number of rows in a result set from a function | I have a job that performs several validation checks on rows in several tables in a database. If the check fails it logs the failure in a table that. The information that is logged includes the table name, a uniqueidentifier value of the row that failed, which check it failed, and which job was being run at the time.... | sql | tsql | udf | null | null | null | open | TSQL function to return the number of rows in a result set from a function
===
I have a job that performs several validation checks on rows in several tables in a database. If the check fails it logs the failure in a table that. The information that is logged includes the table name, a uniqueidentifier value of the ... | 0 |
4,990,286 | 02/14/2011 08:55:43 | 310,657 | 04/07/2010 05:47:33 | 77 | 0 | How to load html in <iFrame> | I am storing html of error pages of my site in sql table, i want to display them in a <iframe> window, on the admin side, but not able to load the saved html in iframe, i am using asp.net mvc2.
its needed to save the pages, and display later to admin.
please suggest me right direction.
Thank you. | javascript | asp.net | mvc | iframe | null | null | open | How to load html in <iFrame>
===
I am storing html of error pages of my site in sql table, i want to display them in a <iframe> window, on the admin side, but not able to load the saved html in iframe, i am using asp.net mvc2.
its needed to save the pages, and display later to admin.
please suggest me right dire... | 0 |
9,498,762 | 02/29/2012 12:00:42 | 829,188 | 07/05/2011 07:27:53 | 41 | 0 | Dynamically adding views To Horizontal LinearLayout goes out of the screen | I have to create Text Views and Edit Texts dynamically and insert it inside the linear layout(horizontal) which is already declared in the XML file. Number of Text Views and Edit Texts to be inserted varies dynamically. I am creating the views dynamically and adding it to the linear layout.But the problem is that if nu... | android | null | null | null | null | null | open | Dynamically adding views To Horizontal LinearLayout goes out of the screen
===
I have to create Text Views and Edit Texts dynamically and insert it inside the linear layout(horizontal) which is already declared in the XML file. Number of Text Views and Edit Texts to be inserted varies dynamically. I am creating the vi... | 0 |
721,031 | 04/06/2009 11:21:11 | 33,584 | 11/03/2008 07:45:07 | 129 | 10 | Who can figure this out? | Please check out this cool article
[Click here...........][1]
[1]: http://www.aspcode.net/A-simple-image-gallery.aspx
On the Bottom of the page you can download the project. ( Under Attachments ).
For some reason when i run it the Close Button and the Next and Previous Buttons don't work. Well i mean it ... | asp.net | c# | vb.net | image | jquery | null | open | Who can figure this out?
===
Please check out this cool article
[Click here...........][1]
[1]: http://www.aspcode.net/A-simple-image-gallery.aspx
On the Bottom of the page you can download the project. ( Under Attachments ).
For some reason when i run it the Close Button and the Next and Previous Butto... | 0 |
6,243,967 | 06/05/2011 15:47:05 | 781,269 | 06/02/2011 14:13:42 | 6 | 0 | inline function in visual c++ 6.0 | I have some static bool inline function in the project (it's not my code):
static bool inline
is_safe_raw(CHAR_DATA *ch, CHAR_DATA *victim)
{
/*
* ghosts are safe
* this check must be done first to avoid
* suicyco muttafuckas who recite 'leather-bound book' (#5743)
*... | c++ | make | visual | null | null | null | open | inline function in visual c++ 6.0
===
I have some static bool inline function in the project (it's not my code):
static bool inline
is_safe_raw(CHAR_DATA *ch, CHAR_DATA *victim)
{
/*
* ghosts are safe
* this check must be done first to avoid
* suicyco muttafuckas who recit... | 0 |
6,052,670 | 05/19/2011 00:56:52 | 759,880 | 05/18/2011 19:58:07 | 35 | 0 | Haskell function type question | I'm beginning Haskell... I tried to write the following trivial function in two different ways, letting Haskell decide the types, and the type system does something different in each case. What is the explanation for that behavior?
Prelude> let f x = 2 * x
Prelude> let g = (2*)
Prelude> :info f
f ... | haskell | types | null | null | null | null | open | Haskell function type question
===
I'm beginning Haskell... I tried to write the following trivial function in two different ways, letting Haskell decide the types, and the type system does something different in each case. What is the explanation for that behavior?
Prelude> let f x = 2 * x
Prelude> let g ... | 0 |
9,805,492 | 03/21/2012 13:22:18 | 1,282,523 | 03/21/2012 04:51:18 | 6 | 0 | How to write a division & remainder code in MIPS? | Ive got to take 2 user inputs and find the product, quotient and remainder. I cant use the multipication or division operators either.
Ive got the multipication code
L1:
add $t2,$s1,$s0 #diving $s0 by $s1
bge $s1, $s0, EXIT # branch if ! ( i < k )
addi $s1, $s1, 1 # k++
add $t2,... | mips | null | null | null | null | null | open | How to write a division & remainder code in MIPS?
===
Ive got to take 2 user inputs and find the product, quotient and remainder. I cant use the multipication or division operators either.
Ive got the multipication code
L1:
add $t2,$s1,$s0 #diving $s0 by $s1
bge $s1, $s0, EXIT # branch if ! ( ... | 0 |
5,052,964 | 02/19/2011 19:16:38 | 624,646 | 02/19/2011 19:16:38 | 1 | 0 | 3.1 Auth working example of login/logout controller methods? | Does anyone happen to have a working example of Auth in 3.1? I've been trying to get this to work, but have not had any luck.
New to Kohana, first attempt is 3.1. Found Bonafide, but don't need it since I'm starting w/ 3.1.
Been using examples from kerkness.ca's wiki, but they're for 3.0, and I'm too new to Koha... | kohana-3 | kohana-auth | null | null | null | 03/29/2012 22:53:25 | too localized | 3.1 Auth working example of login/logout controller methods?
===
Does anyone happen to have a working example of Auth in 3.1? I've been trying to get this to work, but have not had any luck.
New to Kohana, first attempt is 3.1. Found Bonafide, but don't need it since I'm starting w/ 3.1.
Been using examples fro... | 3 |
9,447,196 | 02/25/2012 19:14:58 | 1,232,862 | 02/25/2012 18:00:04 | 1 | 0 | String size in Grails too big for database field | I have Message domain class that is used to send an email to site administrators
class Message {
String name
String subject
String body
}
I thought String would not have a maximum size but when people put in messages that are too big then I see exceptions in my log files.... | grails | null | null | null | null | null | open | String size in Grails too big for database field
===
I have Message domain class that is used to send an email to site administrators
class Message {
String name
String subject
String body
}
I thought String would not have a maximum size but when people put in messages t... | 0 |
7,764,025 | 10/14/2011 06:49:51 | 990,571 | 10/12/2011 01:21:38 | 5 | 0 | How do you do this? | private String lv_arr[]={"number1", "number2", "number3", "number4"};
This is what I defined as my listview array.
How can I change those to be linked to number1.java, number2.java, number3.java,number4.java | android | listview | null | null | null | 10/14/2011 11:16:32 | not a real question | How do you do this?
===
private String lv_arr[]={"number1", "number2", "number3", "number4"};
This is what I defined as my listview array.
How can I change those to be linked to number1.java, number2.java, number3.java,number4.java | 1 |
9,592,003 | 03/06/2012 21:13:17 | 1,246,903 | 03/03/2012 13:43:04 | 1 | 0 | Replace string with array content | I need to replace and especific string put it in a text '[cars]' with the value of an array...
foreach ( $cars as $car){
$carname = strval( $car->name );?>
<a href="?car=<? echo $carname; ?>"><? echo $carname; ?>,</a>
<? }
}?>
the 'str_replace' ... | php | arrays | str-replace | null | null | 03/07/2012 14:15:14 | not a real question | Replace string with array content
===
I need to replace and especific string put it in a text '[cars]' with the value of an array...
foreach ( $cars as $car){
$carname = strval( $car->name );?>
<a href="?car=<? echo $carname; ?>"><? echo $carname; ?>,</a>
<? }
... | 1 |
10,420,308 | 05/02/2012 19:24:51 | 1,141,471 | 01/10/2012 17:51:46 | 33 | 2 | .NET get data from printers which have www interface | I would like to get data about ink, free pages (paper) etc fom the printers in company network. Each of these printers (mostly Minolta) has an www interface, so I can get these data by creating browser process in my program, direct it to go to the address "http://192.168.X.YY/data.htm", download all the page code and ... | c++ | .net | sockets | networking | network-printers | null | open | .NET get data from printers which have www interface
===
I would like to get data about ink, free pages (paper) etc fom the printers in company network. Each of these printers (mostly Minolta) has an www interface, so I can get these data by creating browser process in my program, direct it to go to the address "http... | 0 |
6,255,407 | 06/06/2011 16:56:00 | 784,079 | 06/04/2011 16:06:08 | 3 | 0 | Is it possible to remove an eventListener temporarily (i.e. until a function has been executed) | I am doing actionscript 3 at the moment and was wondering if it was possible to remove and eventListner temporarily. I know of removeEventListener, however, that removes the eventListener completely and i cannot click the button again.
If you want some more details, here the exact problem. I have function that when ... | actionscript-3 | addeventlistener | null | null | null | null | open | Is it possible to remove an eventListener temporarily (i.e. until a function has been executed)
===
I am doing actionscript 3 at the moment and was wondering if it was possible to remove and eventListner temporarily. I know of removeEventListener, however, that removes the eventListener completely and i cannot click t... | 0 |
11,496,702 | 07/16/2012 00:06:58 | 1,487,215 | 06/28/2012 00:46:54 | 1 | 0 | rename files with spaces in Linux | Hello guys I want a script that works on linux to rename files from this form i.e., Yahoo Babel Fish - Persistent Cross Site Scripting Vulnerability.jpg to that form Yahoo-Babel-Fish-Persistent-Cross-Site-Scripting-Vulnerability.jpg
it only deltes every space and change it with hyphen and if it was a hyphen between... | linux | bash | shell | script | rename | 07/16/2012 20:11:10 | off topic | rename files with spaces in Linux
===
Hello guys I want a script that works on linux to rename files from this form i.e., Yahoo Babel Fish - Persistent Cross Site Scripting Vulnerability.jpg to that form Yahoo-Babel-Fish-Persistent-Cross-Site-Scripting-Vulnerability.jpg
it only deltes every space and change it wit... | 2 |
2,052,168 | 01/12/2010 20:36:35 | 212,307 | 11/16/2009 18:45:45 | 1 | 0 | textarea not receiving descendant CSS property | I have the CSS setting:
> .missing textarea {background-color: #fffcc !important;}
And the html looks like so:
> `<div id="label-add" class="jscript xtra-box sub-question missing"> `
> `<p>Additional Health Care Instructions</p>`
> `<textarea id="addrule" name="addrule"></textarea>`
... | css | background-color | textarea | xhtml | null | 02/13/2012 02:28:14 | too localized | textarea not receiving descendant CSS property
===
I have the CSS setting:
> .missing textarea {background-color: #fffcc !important;}
And the html looks like so:
> `<div id="label-add" class="jscript xtra-box sub-question missing"> `
> `<p>Additional Health Care Instructions</p>`
> `<t... | 3 |
9,026,991 | 01/26/2012 23:25:43 | 439,181 | 09/03/2010 17:17:29 | 78 | 2 | MySQL ORDER BY optimization when sorting NULLs and '' last - is it possible? | <br>
I've been trying to optimize an awkward ORDER BY in MySQL. The issue is that I want NULLs and blank fields '' to appear at the bottom rather than the top. I've come up with:
ORDER BY isnull(if (isnull(Lastname) OR ascii(Lastname)=0, null, 1)), Lastname ASC,
isnull(if (isnull(Firstname) OR asci... | mysql | sorting | null | order-by | null | null | open | MySQL ORDER BY optimization when sorting NULLs and '' last - is it possible?
===
<br>
I've been trying to optimize an awkward ORDER BY in MySQL. The issue is that I want NULLs and blank fields '' to appear at the bottom rather than the top. I've come up with:
ORDER BY isnull(if (isnull(Lastname) OR asc... | 0 |
2,513,920 | 03/25/2010 08:21:59 | 147,301 | 07/29/2009 18:07:58 | 78 | 4 | Getting the starting shortcut in c# | Lets say that I have an executable and when it is started I want to know how it's started. I.e. I would like to know if it is started with a shortcut or directly.
With this:
string test = Environment.GetCommandLineArgs()[0];
I can get the path of the executable, but this is always the same, even if it's star... | c# | shortcut | shortcuts | null | null | null | open | Getting the starting shortcut in c#
===
Lets say that I have an executable and when it is started I want to know how it's started. I.e. I would like to know if it is started with a shortcut or directly.
With this:
string test = Environment.GetCommandLineArgs()[0];
I can get the path of the executable, but t... | 0 |
6,743,541 | 07/19/2011 07:19:00 | 226,213 | 12/07/2009 08:55:27 | 340 | 12 | Condition based on column in data | There are two tables, the first contain data and the second meta data for the first based on category.
table1
id, category1, category2, custom1, custom2, custom3...
table2
category1, category2, denom, field
Example:
table1
AAAAA, Car, Compact, Red, Automatic, 150bhp
... | sql | oracle | null | null | null | null | open | Condition based on column in data
===
There are two tables, the first contain data and the second meta data for the first based on category.
table1
id, category1, category2, custom1, custom2, custom3...
table2
category1, category2, denom, field
Example:
table1
AAAAA, Car, C... | 0 |
1,053,929 | 06/28/2009 00:32:22 | 42,005 | 11/30/2008 22:13:40 | 331 | 26 | Mozilla plugin for remote desktop protocol | Is there a remote desktop plugin for mozilla browsers that can perform remote desktop functionality from with the browser. Similar to the ActiveX control found in Terminal Services Web.
IE similar to this: http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=E2FF8FB5-97FF-47BC-BACC-92283B52B310
| mozilla | plugins | rdp | remote-desktop | activex | 07/02/2009 02:08:02 | off topic | Mozilla plugin for remote desktop protocol
===
Is there a remote desktop plugin for mozilla browsers that can perform remote desktop functionality from with the browser. Similar to the ActiveX control found in Terminal Services Web.
IE similar to this: http://www.microsoft.com/downloads/details.aspx?displaylang=en&... | 2 |
5,397,264 | 03/22/2011 20:15:18 | 671,912 | 12/25/2010 02:03:34 | 1 | 0 | read the image (black and white) as the file of (0&1) | How can I read the image (black and white) as the file component of the (ones and zeros) by using VC++6,OpenCv , Library FANN "Faster Artificial Neural Network "
| c++ | opencv | null | null | null | 03/23/2011 00:26:06 | not a real question | read the image (black and white) as the file of (0&1)
===
How can I read the image (black and white) as the file component of the (ones and zeros) by using VC++6,OpenCv , Library FANN "Faster Artificial Neural Network "
| 1 |
10,158,782 | 04/15/2012 01:09:43 | 1,166,313 | 01/24/2012 05:09:29 | 67 | 1 | execve - No such file or directory? | I'm having some problems with execve. I'm trying to make a shell that can function just like the bash shell, but I have problems with the forked child executing a command. Here is what I have for the child. cmd is a char * with the command that the user typed in. However, when I run this program, I get this error from ... | c | linux | execve | null | null | null | open | execve - No such file or directory?
===
I'm having some problems with execve. I'm trying to make a shell that can function just like the bash shell, but I have problems with the forked child executing a command. Here is what I have for the child. cmd is a char * with the command that the user typed in. However, when I... | 0 |
7,702,955 | 10/09/2011 10:44:26 | 521,355 | 11/26/2010 12:14:53 | 277 | 4 | Why is my dragon fractal such complete crap? | I have translated the code from javascript which can be found by going to http://fractal.qfox.nl/ and pressing F12 to get the developer tools up and then selecting dragon.js from the scripts. My translation is intended to produce just a single dragon upon clicking the button but I think I have missed something in my t... | c# | javascript | fractals | null | null | 10/09/2011 17:02:43 | not a real question | Why is my dragon fractal such complete crap?
===
I have translated the code from javascript which can be found by going to http://fractal.qfox.nl/ and pressing F12 to get the developer tools up and then selecting dragon.js from the scripts. My translation is intended to produce just a single dragon upon clicking the ... | 1 |
8,368,966 | 12/03/2011 16:11:59 | 924,140 | 09/01/2011 19:46:06 | 15 | 0 | Here Document not working with sudo su | I was trying to write an setup.sh script that searches an installs the require components of an application while installing. if an required component is not found it will prompt to install it. I have used sudo apt-get install for that , and I want to pass the user supplied password to sudo using here documents as
... | bash | null | null | null | null | 12/05/2011 02:37:50 | off topic | Here Document not working with sudo su
===
I was trying to write an setup.sh script that searches an installs the require components of an application while installing. if an required component is not found it will prompt to install it. I have used sudo apt-get install for that , and I want to pass the user supplied p... | 2 |
8,989,699 | 01/24/2012 15:46:40 | 108,977 | 05/18/2009 19:37:21 | 6,019 | 364 | Anybody using RAM drives to speed up unit testing databases? | To unit test my stored procedures, I am running SQL Server 2008 R2 Dev Edition on my Windows 7 x64 workstation.
I am creating a sandbox database off scripts; it is currently less than 40 MB. To speed up the fixture setup process, I was thinking of creating a RAM drive.
I hope someone did that before. Are there any... | sql-server | sql-server-2008 | unit-testing | windows-7-x64 | ramdrive | 01/24/2012 19:18:06 | off topic | Anybody using RAM drives to speed up unit testing databases?
===
To unit test my stored procedures, I am running SQL Server 2008 R2 Dev Edition on my Windows 7 x64 workstation.
I am creating a sandbox database off scripts; it is currently less than 40 MB. To speed up the fixture setup process, I was thinking of crea... | 2 |
5,416,259 | 03/24/2011 07:57:30 | 674,502 | 03/24/2011 07:57:30 | 1 | 0 | Write a C function (CountChar) that can count the number of spaces in a NULL terminated string. | THE FUNCTION IS BASED ON A C-PROGRAMMING CODE. | c | programming-languages | null | null | null | 03/24/2011 08:04:29 | not a real question | Write a C function (CountChar) that can count the number of spaces in a NULL terminated string.
===
THE FUNCTION IS BASED ON A C-PROGRAMMING CODE. | 1 |
4,853,905 | 01/31/2011 17:20:23 | 283,055 | 05/11/2009 14:24:50 | 2,888 | 72 | Which design pattern to choose | So I have ended up in a situation with a project I'm part of that has two types of lists (at the moment, at least): booking and shift list. Both lists are made so that we have a List object containing logic for both of them, and a separate Shift and Booking list objects for individual features.
The List object is st... | oop | design | design-patterns | null | null | null | open | Which design pattern to choose
===
So I have ended up in a situation with a project I'm part of that has two types of lists (at the moment, at least): booking and shift list. Both lists are made so that we have a List object containing logic for both of them, and a separate Shift and Booking list objects for individua... | 0 |
7,506,341 | 09/21/2011 20:40:31 | 219,276 | 11/26/2009 09:44:27 | 63 | 4 | VB6 pass an object variable back to opening form | How do I do this? I thought that I could pass the form as a variable to the child form. Then the child form could set a variable (as public property) on the parent form.
But I get some weird "function or interface marked as restricted" error.
Whats the way to do this in vb6??
Is it just a case of making the ob... | forms | vb6 | null | null | null | 09/28/2011 10:48:32 | not a real question | VB6 pass an object variable back to opening form
===
How do I do this? I thought that I could pass the form as a variable to the child form. Then the child form could set a variable (as public property) on the parent form.
But I get some weird "function or interface marked as restricted" error.
Whats the way to ... | 1 |
6,177,657 | 05/30/2011 14:41:01 | 596,364 | 01/31/2011 04:57:46 | 443 | 13 | What is mean by an urban air ship app in android | hi friends sorry for asking a such a question here. i am going to do an app based on urban air ship. I do not know what it means.
What is mean by urban airship? What to be done here. Please help me with some useful blogs or own explanation friends. | android | urbanairship.com | null | null | null | 05/30/2011 15:21:10 | off topic | What is mean by an urban air ship app in android
===
hi friends sorry for asking a such a question here. i am going to do an app based on urban air ship. I do not know what it means.
What is mean by urban airship? What to be done here. Please help me with some useful blogs or own explanation friends. | 2 |
8,452,133 | 12/09/2011 21:49:55 | 1,090,518 | 12/09/2011 21:15:20 | 1 | 0 | Copy users from one database to another | thanks for being avaliable to help me!
I have a SMF Forum and another software (SourceBans) and I need to get the users that register in my forum copied to the registered users in another database, basically bridging and syncing the users from the forum to the other database.
I need to copy the following, respect... | mysql | database | data | copy | sync | null | open | Copy users from one database to another
===
thanks for being avaliable to help me!
I have a SMF Forum and another software (SourceBans) and I need to get the users that register in my forum copied to the registered users in another database, basically bridging and syncing the users from the forum to the other datab... | 0 |
6,020,159 | 05/16/2011 16:09:31 | 321,691 | 04/20/2010 20:34:57 | 56 | 1 | EF4.1 (Database First) Generic Repository: Problem with inconsistent data types. | I am working on a new application which is using a legacy system's database. Each table in the database (there are about 600) has a 'Deleted' column to flag whether or not the item should be displayed to users. In my generic repository, I need to add LINQ expressions to filter out all items with Deleted == 1/True.
... | generics | entity-framework-4.1 | repositories | null | null | null | open | EF4.1 (Database First) Generic Repository: Problem with inconsistent data types.
===
I am working on a new application which is using a legacy system's database. Each table in the database (there are about 600) has a 'Deleted' column to flag whether or not the item should be displayed to users. In my generic reposit... | 0 |
496,545 | 01/30/2009 18:07:44 | 5,441 | 09/09/2008 15:34:34 | 2,157 | 151 | Are reCAPTCHA CAPTCHA's getting harder or is just me? | As I have been testing sites, I have found [reCAPTCHA][1]'s getting more and more difficult to read. Is it just me or are others having this problem too?
Along with this, I had a user this morning complain about receiving a Bristish Pound character in their reCAPTCHA. Of course the user didn't know what to do, even ... | recaptcha | null | null | null | null | 08/23/2010 18:54:00 | off topic | Are reCAPTCHA CAPTCHA's getting harder or is just me?
===
As I have been testing sites, I have found [reCAPTCHA][1]'s getting more and more difficult to read. Is it just me or are others having this problem too?
Along with this, I had a user this morning complain about receiving a Bristish Pound character in their ... | 2 |
11,670,202 | 07/26/2012 13:18:39 | 1,540,991 | 07/20/2012 14:04:34 | 1 | 0 | TORRENT HASH INFO values | **I have a question. I would like to know what does hash-info describe exactly on a torrent file, for example aech name, or does it initialize the node, which has its blocks.**
**I don't want to know how to get it, or something different, but I would like to know what each of its values means.** | bittorrent | null | null | null | null | 07/30/2012 06:02:57 | off topic | TORRENT HASH INFO values
===
**I have a question. I would like to know what does hash-info describe exactly on a torrent file, for example aech name, or does it initialize the node, which has its blocks.**
**I don't want to know how to get it, or something different, but I would like to know what each of its value... | 2 |
7,374,024 | 09/10/2011 19:19:55 | 159,793 | 08/20/2009 06:28:39 | 1,998 | 28 | Is there any Java CSS formatter util? | I need to format (not compress) CSS code, so that unreadable CSS code is formatted to be readable. I need this as Java library. | java | css | code-formatting | formatter | null | 09/10/2011 23:39:26 | not constructive | Is there any Java CSS formatter util?
===
I need to format (not compress) CSS code, so that unreadable CSS code is formatted to be readable. I need this as Java library. | 4 |
6,971,805 | 08/07/2011 09:11:20 | 157,837 | 08/17/2009 15:30:24 | 1,275 | 36 | Programming for Windows: Simple SFTP Transfer Application | I've never worked on a Windows application before. I now need a simple application that will add a context menu to files with a specific extension. When you click the context menu, the application will connect to a remote linux server via sftp, ask for credentials and upon successful authentication, transfer the select... | c# | java | .net | windows | sftp | 08/07/2011 09:21:43 | not a real question | Programming for Windows: Simple SFTP Transfer Application
===
I've never worked on a Windows application before. I now need a simple application that will add a context menu to files with a specific extension. When you click the context menu, the application will connect to a remote linux server via sftp, ask for cred... | 1 |
6,895,130 | 08/01/2011 07:03:45 | 850,157 | 07/18/2011 13:53:40 | 36 | 6 | Github: Interesting repositories | What is reason to add repositories to "Trending Repos" & "Interesting Repositories" at GiHub?
I see, the reason is not "Watchers" or "Forks"
<a href="https://github.com/explore">Trending Repos</a> - is real riddle:
<img src="http://habrastorage.org/storage1/ba7d5c0e/76f5906a/69dfaf6f/7cdd14c2.png"/>
At the same... | github | null | null | null | null | 08/01/2011 07:12:24 | off topic | Github: Interesting repositories
===
What is reason to add repositories to "Trending Repos" & "Interesting Repositories" at GiHub?
I see, the reason is not "Watchers" or "Forks"
<a href="https://github.com/explore">Trending Repos</a> - is real riddle:
<img src="http://habrastorage.org/storage1/ba7d5c0e/76f5906a/6... | 2 |
7,600,088 | 09/29/2011 15:57:44 | 971,509 | 09/29/2011 15:54:44 | 1 | 0 | Rolling dice application for iPhone apps | I am making an iPhone dice application and I wanted to create a button so that if I click it, it will generate a random number between 1 and 6 on the UITextField.
Can anyone help me out and give me a mathematical formula to generate such number?
Thanks | iphone | xcode | application | formula | dice | null | open | Rolling dice application for iPhone apps
===
I am making an iPhone dice application and I wanted to create a button so that if I click it, it will generate a random number between 1 and 6 on the UITextField.
Can anyone help me out and give me a mathematical formula to generate such number?
Thanks | 0 |
4,597,699 | 01/04/2011 19:46:17 | 487,214 | 10/26/2010 05:33:19 | 180 | 2 | CSS 3: Adding quote symbol to beginning of blockquote | Can anyone tell me why this (also available live at http://jsfiddle.net/A2eTG/6/) renders a `"` symbol before the blockquote in Firefox but not Chrome/Safari?
blockquote
{
padding: 0 60px;
padding:10px;
padding-left:55px;
}
blockquote:before {
display: b... | html | css | css3 | null | null | null | open | CSS 3: Adding quote symbol to beginning of blockquote
===
Can anyone tell me why this (also available live at http://jsfiddle.net/A2eTG/6/) renders a `"` symbol before the blockquote in Firefox but not Chrome/Safari?
blockquote
{
padding: 0 60px;
padding:10px;
padding-left:55px... | 0 |
7,763,624 | 10/14/2011 05:57:59 | 994,821 | 10/14/2011 05:51:27 | 1 | 0 | How do I set up donations with the Donate App? | I have added the donate button to my page, SaveMMJ. I have not been able to figure out how to allow donations. I cannot find a way to give my paypal information. I have tried to donate myself to test it and paypal says there is an error. Can you please give advice for what to do after adding the app so that people ... | facebook | application | null | null | null | null | open | How do I set up donations with the Donate App?
===
I have added the donate button to my page, SaveMMJ. I have not been able to figure out how to allow donations. I cannot find a way to give my paypal information. I have tried to donate myself to test it and paypal says there is an error. Can you please give advice... | 0 |
11,346,832 | 07/05/2012 14:49:35 | 537,796 | 12/10/2010 11:44:04 | 6 | 1 | Injecting properties into WSPasswordCallback for JBossWS CXF moduel | I'm having a problem with webservice authentication (WS-Security) while converting an existing application that executes in JBoss 4.3 to JBoss 7.
I'm following information on: https://docs.jboss.org/author/display/JBWS/JBoss+Web+Services+Documentation and it seems to be working for WS-Security authentication.
... | java | web-services | spring | cxf | jboss7.x | null | open | Injecting properties into WSPasswordCallback for JBossWS CXF moduel
===
I'm having a problem with webservice authentication (WS-Security) while converting an existing application that executes in JBoss 4.3 to JBoss 7.
I'm following information on: https://docs.jboss.org/author/display/JBWS/JBoss+Web+Services+Docu... | 0 |
107,243 | 09/20/2008 05:31:24 | 4,977 | 09/07/2008 07:24:42 | 1,002 | 44 | Are units of measurement unique to F#? | I was reading Andrew Kennedy's blog post series on <a href="http://blogs.msdn.com/andrewkennedy/archive/2008/08/29/units-of-measure-in-f-part-one-introducing-units.aspx">units of measurement in F#</a> and it makes a lot of sense in a lot of cases. Are there any other languages that have such a system?
Edit: To be m... | programming-languages | f# | null | null | null | 07/19/2012 14:44:59 | not constructive | Are units of measurement unique to F#?
===
I was reading Andrew Kennedy's blog post series on <a href="http://blogs.msdn.com/andrewkennedy/archive/2008/08/29/units-of-measure-in-f-part-one-introducing-units.aspx">units of measurement in F#</a> and it makes a lot of sense in a lot of cases. Are there any other languag... | 4 |
11,283,528 | 07/01/2012 16:05:21 | 1,129,172 | 01/04/2012 04:38:57 | 20 | 0 | How to remove the button image of checkbox by java coding? | I know to remove the button image of checkbox in xml with following code:
<CheckBox
android:layout_width="wrap_content"
android:layout_height="25dp"
android:button="@null"
android:background="@drawable/notxtcheckboxbtn"
... | android | button | checkbox | remove | null | null | open | How to remove the button image of checkbox by java coding?
===
I know to remove the button image of checkbox in xml with following code:
<CheckBox
android:layout_width="wrap_content"
android:layout_height="25dp"
android:button="@null"
... | 0 |
9,355,051 | 02/20/2012 01:14:13 | 1,086,384 | 12/07/2011 19:34:31 | 10 | 0 | Website Login using VB.net | I want my program to verify if the Website Login Is Right using the following code but the code is not working when i try To use it says error 404 or something like that can you guys help me out a little Bit ?
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1... | .net | vb.net | login | website | online | 02/20/2012 06:27:06 | not a real question | Website Login using VB.net
===
I want my program to verify if the Website Login Is Right using the following code but the code is not working when i try To use it says error 404 or something like that can you guys help me out a little Bit ?
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As S... | 1 |
7,053,999 | 08/13/2011 23:42:04 | 103,791 | 05/08/2009 19:47:39 | 676 | 8 | Programmatically publish web application | I'm trying to write a visual studio extension that allows me to publish multiple web applications in a solution, similar to using the one-click publish feature on all the projects.
DTE2 service = (DTE2)this.GetService(typeof(DTE));
Projects projects = service.Solution.Projects;
SolutionBuild2 build = (... | visual-studio-2010 | vsx | envdte | null | null | null | open | Programmatically publish web application
===
I'm trying to write a visual studio extension that allows me to publish multiple web applications in a solution, similar to using the one-click publish feature on all the projects.
DTE2 service = (DTE2)this.GetService(typeof(DTE));
Projects projects = service.So... | 0 |
679,100 | 03/24/2009 20:23:42 | 68,722 | 02/20/2009 02:15:46 | 156 | 9 | Best practice for Parent / Child UI design in ASP.Net? | Coming from a desktop client background, with no real data-driven web design experience, I am studying ASP.NET UI design to determine the best UI pattern for Parent/Children data.
I always tend to experiment with Parent/Child presentation when learning a new UI platform, so that is where I have started here. Thinkin... | asp.net | asp.net-mvc | parent-child | null | null | null | open | Best practice for Parent / Child UI design in ASP.Net?
===
Coming from a desktop client background, with no real data-driven web design experience, I am studying ASP.NET UI design to determine the best UI pattern for Parent/Children data.
I always tend to experiment with Parent/Child presentation when learning a ne... | 0 |
9,483,603 | 02/28/2012 14:20:03 | 162,684 | 08/25/2009 12:26:45 | 4,933 | 267 | String representation of typed literals | I am using Jena 2.6.4.
The following code
String v = "Parnell Square East";
Literal l = ModelFactory.createDefaultModel().createTypedLiteral(
v, XSDDatatype.XSDstring);
System.out.println(l.toString());
Produces the following output:
> Parnell Square East^^http://www.w3.org/2001/XMLSc... | jena | null | null | null | null | null | open | String representation of typed literals
===
I am using Jena 2.6.4.
The following code
String v = "Parnell Square East";
Literal l = ModelFactory.createDefaultModel().createTypedLiteral(
v, XSDDatatype.XSDstring);
System.out.println(l.toString());
Produces the following output:
> Parn... | 0 |
7,753,173 | 10/13/2011 11:06:44 | 808,132 | 06/21/2011 09:21:19 | 1 | 1 | Where to download IBM ConTest? | Where can I get the tool?
The links I searched from Google didn't point to the download page.
Also, the eclipse update site is not working. | java | concurrency | null | null | null | 10/13/2011 15:53:28 | off topic | Where to download IBM ConTest?
===
Where can I get the tool?
The links I searched from Google didn't point to the download page.
Also, the eclipse update site is not working. | 2 |
9,205,814 | 02/09/2012 05:22:36 | 736,659 | 05/03/2011 17:45:24 | 71 | 0 | git Commit, after overwriting the cloned version | I was working in one project file detached from the remote repository for a while, I would like to commit my changes to the old existing repository now.
I have cloned the old version:
git clone <repository path>
How I can merge my new changes? Overwriting the local git folder and run:
git commit
... | xcode | git | repository | clone | local | null | open | git Commit, after overwriting the cloned version
===
I was working in one project file detached from the remote repository for a while, I would like to commit my changes to the old existing repository now.
I have cloned the old version:
git clone <repository path>
How I can merge my new changes? Overwriti... | 0 |
11,608,655 | 07/23/2012 08:11:47 | 1,527,394 | 07/15/2012 20:01:12 | 1 | 0 | adding aspectJ jar in maven project | I created the AspectJ/maven project1 which can generate logs for particular methods. Maven created a .jar file which I added to maven project2. The problem is that project2 doesn't seem to 'see' it because there are no logs. When I put my aspectJ class to project2 manually everything works fine.
Should I add any dep... | java | maven | jar | dependencies | aspectj | null | open | adding aspectJ jar in maven project
===
I created the AspectJ/maven project1 which can generate logs for particular methods. Maven created a .jar file which I added to maven project2. The problem is that project2 doesn't seem to 'see' it because there are no logs. When I put my aspectJ class to project2 manually every... | 0 |
10,665,309 | 05/19/2012 12:46:38 | 1,074,486 | 12/01/2011 00:04:27 | 6 | 0 | Free, flexible admin theme for PHP? | Is there any theme that is similar to this, for PHP?
https://github.com/pilu/web-app-theme
Is it possible to use this with PHP? | php | codeigniter | themes | null | null | 05/19/2012 13:19:28 | not a real question | Free, flexible admin theme for PHP?
===
Is there any theme that is similar to this, for PHP?
https://github.com/pilu/web-app-theme
Is it possible to use this with PHP? | 1 |
8,431,878 | 12/08/2011 13:41:46 | 1,069,806 | 11/28/2011 17:06:14 | 23 | 0 | creating a "wishlist" for touristic portal | i have in developing a website about touristic objectives and hotels . i have a certain concept in my head and i want to know if it can be done : a user displays several touristic objectives , let s say 3, in the same area, and i want the user to have the possibility to "add to wishlist" the objectives so that at the e... | wishlist | null | null | null | null | 12/08/2011 21:49:21 | not a real question | creating a "wishlist" for touristic portal
===
i have in developing a website about touristic objectives and hotels . i have a certain concept in my head and i want to know if it can be done : a user displays several touristic objectives , let s say 3, in the same area, and i want the user to have the possibility to "... | 1 |
5,458,192 | 03/28/2011 11:17:41 | 679,116 | 03/27/2011 16:32:41 | 1 | 0 | Neural n/w based proj | Do anyone knows any specific firing rule in neural network? | java | null | null | null | null | 03/28/2011 13:13:38 | not a real question | Neural n/w based proj
===
Do anyone knows any specific firing rule in neural network? | 1 |
9,781,475 | 03/20/2012 04:44:53 | 851,510 | 07/19/2011 07:50:44 | 93 | 5 | WPF window draging with arrow icon | I want to drag my window with arrow icon from right side bottom corner and its working fine, but it's shrinking fully like window disappearing fully but i want up to some extent only user able to shrink the window so any one help how can i do that.
Thanks,
@nagaraju. | wpf | drag-and-drop | window | null | null | null | open | WPF window draging with arrow icon
===
I want to drag my window with arrow icon from right side bottom corner and its working fine, but it's shrinking fully like window disappearing fully but i want up to some extent only user able to shrink the window so any one help how can i do that.
Thanks,
@nagaraju. | 0 |
6,738,019 | 07/18/2011 19:09:34 | 557,527 | 12/12/2010 08:08:02 | 229 | 20 | How does this website work? | I was wondering how this works: http://www.findpriser.dk/se-ipod.html
How can they scrape prices images so fast? And know that they are scraping a webshop not an affiliate site. | php | ruby-on-rails | website | null | null | 07/18/2011 19:58:29 | not constructive | How does this website work?
===
I was wondering how this works: http://www.findpriser.dk/se-ipod.html
How can they scrape prices images so fast? And know that they are scraping a webshop not an affiliate site. | 4 |
1,815,040 | 11/29/2009 08:47:15 | 182,474 | 10/01/2009 12:21:54 | 16 | 2 | Paperclip doesn't resizes uploaded pictures | I using rails 2.3.4 and PaperClip gem as plugin (the latest git master). And, given the following code:
class Banner < ActiveRecord::Base
has_attached_file :picture,
:url => "/banners/:id/:basename.:extension",
:path => ":rails_root/public/banners/:id/:basename.:e... | ruby-on-rails | paperclip | null | null | null | null | open | Paperclip doesn't resizes uploaded pictures
===
I using rails 2.3.4 and PaperClip gem as plugin (the latest git master). And, given the following code:
class Banner < ActiveRecord::Base
has_attached_file :picture,
:url => "/banners/:id/:basename.:extension",
:pat... | 0 |
5,496,379 | 03/31/2011 07:12:21 | 584,129 | 01/21/2011 07:44:29 | 1 | 0 | Invalid length parameter passed to the LEFT or SUBSTRING function. | DECLARE @TotalImagesCount int
IF(@InfoTypeiD=9)
SET @TotalImagesCount=(SELECT ImagesCount/3 FROM Information(NOLOCK) WHERE informationid=@InformationID)
ELSE
SET @TotalImagesCount=(SELECT ImagesCount FROM Information(NOLOCK) WHERE informationid=@InformationID);
SET @PageNumber = @PageNumber ... | asp.net | asp.net-mvc | null | null | null | 04/01/2011 09:24:54 | not a real question | Invalid length parameter passed to the LEFT or SUBSTRING function.
===
DECLARE @TotalImagesCount int
IF(@InfoTypeiD=9)
SET @TotalImagesCount=(SELECT ImagesCount/3 FROM Information(NOLOCK) WHERE informationid=@InformationID)
ELSE
SET @TotalImagesCount=(SELECT ImagesCount FROM Information(NOLOCK) WHERE... | 1 |
7,275,262 | 09/01/2011 19:10:47 | 924,078 | 09/01/2011 19:10:47 | 1 | 0 | substring or split | hi all m stuck with lil problem here look i have to split cookies grabbed by winsock control from yahoo server for login
now problem is that yahoo return very much long data and i have to split the things i need for example here is output by yahoo
Y=v=1&n=fht2qs9k92mso&l=nn140jh82nn/o&p=f1tvvit012000000&jb=16|... | c# | split | substring | null | null | 09/02/2011 10:47:41 | not a real question | substring or split
===
hi all m stuck with lil problem here look i have to split cookies grabbed by winsock control from yahoo server for login
now problem is that yahoo return very much long data and i have to split the things i need for example here is output by yahoo
Y=v=1&n=fht2qs9k92mso&l=nn140jh82nn/o&p... | 1 |
8,845,611 | 01/13/2012 03:39:41 | 1,107,040 | 12/20/2011 02:47:23 | 11 | 0 | How to use a while loop to build a stringarray and use it as a list | I am writing an app for fellow students, and I am parsing information from a website. I paid a guy to write the parser but did a poor job and he wants more money to help anymore. So im trying to fix it myself.
There is the extractor that grabs the xml info, how the gentlemen had it, was he called it in the main.java... | java | android | null | null | null | null | open | How to use a while loop to build a stringarray and use it as a list
===
I am writing an app for fellow students, and I am parsing information from a website. I paid a guy to write the parser but did a poor job and he wants more money to help anymore. So im trying to fix it myself.
There is the extractor that grabs ... | 0 |
3,808,451 | 09/27/2010 22:43:22 | 221,023 | 11/29/2009 23:35:32 | 2,013 | 8 | How to embed local images in UIWebView? | Is there an easy way to embed local images in an UIWebView? For example, I would want to embed an logo.png image in the UIWebView, which I've added to the Resources folder in Xcode. Would I simply add an `img` HTML tag for this? | iphone | uiwebview | null | null | null | null | open | How to embed local images in UIWebView?
===
Is there an easy way to embed local images in an UIWebView? For example, I would want to embed an logo.png image in the UIWebView, which I've added to the Resources folder in Xcode. Would I simply add an `img` HTML tag for this? | 0 |
6,160,928 | 05/28/2011 09:59:30 | 306,719 | 04/01/2010 08:57:51 | 479 | 1 | what is rest,and what is its advantage | I have googled about the docs of rest,but I am not exactly sure I understand it.
What I can see in rest is that its url is clean,for example:
http://host/webservice.asmx?name=xname&type=xtype
If in rest manner,it maybe :
http://host/webservice.asmx/xname/xtype
Isn't it?
So I just found the... | web-services | rest | restful-authentication | null | null | 05/30/2011 08:41:52 | not a real question | what is rest,and what is its advantage
===
I have googled about the docs of rest,but I am not exactly sure I understand it.
What I can see in rest is that its url is clean,for example:
http://host/webservice.asmx?name=xname&type=xtype
If in rest manner,it maybe :
http://host/webservice.asmx/xname/x... | 1 |
7,303,350 | 09/05/2011 02:16:28 | 139,361 | 07/16/2009 10:08:16 | 685 | 36 | "Multi dimensional" JSON in javascript | I can create a jquery object inline like this (this code is working)
$('#tip').qtip({
content: el.REASON,
position: {
corner: {
target: 'rightMiddle',
tooltip: 'leftMiddle'
}
},
style: {
tip: {
corner: 'leftMiddle',
... | javascript | jquery | json | null | null | null | open | "Multi dimensional" JSON in javascript
===
I can create a jquery object inline like this (this code is working)
$('#tip').qtip({
content: el.REASON,
position: {
corner: {
target: 'rightMiddle',
tooltip: 'leftMiddle'
}
},
style: {
t... | 0 |
10,486,031 | 05/07/2012 17:01:37 | 1,373,581 | 05/03/2012 20:54:05 | 1 | 0 | how do i get an div to stay in place while text around it gets bigger or shorter | I have some text and then at the end of that, it has an spacer div which gives a margin gap so it separates it from the text below it.
The question is; how do i get the spacer div to stay in place whatever happens, while the length of the text above it gets shorter or longer without bringing the spacer div up in pos... | css | text | null | null | null | null | open | how do i get an div to stay in place while text around it gets bigger or shorter
===
I have some text and then at the end of that, it has an spacer div which gives a margin gap so it separates it from the text below it.
The question is; how do i get the spacer div to stay in place whatever happens, while the length... | 0 |
7,309,387 | 09/05/2011 14:22:20 | 715,610 | 04/19/2011 16:27:19 | 46 | 0 | How to keep paypal mini cart (paypal labs) on top | I have integrated paypal mini-cart into my website but for some reason it is not on top, I have changed the z-index to as high as possible and still no result.
It seems to be over everything except the text in the navigation bar (e.g HOME etc) and when the class=current it seems to override it too.
Any help on ho... | javascript | html | css | paypal | shopping-cart | null | open | How to keep paypal mini cart (paypal labs) on top
===
I have integrated paypal mini-cart into my website but for some reason it is not on top, I have changed the z-index to as high as possible and still no result.
It seems to be over everything except the text in the navigation bar (e.g HOME etc) and when the class... | 0 |
4,513,363 | 12/22/2010 20:22:35 | 66,384 | 02/14/2009 08:08:49 | 775 | 35 | Pagination improvements in ASP.NET 2.0 Grids | I currently have a datagrid bound to a table with tens of thousands of records. I display the datagrid using the existing asp.net 2.0. I show ten records at a time.
My problem is whenever I try to access the next page, I gets all the records again from the database and then displays the ones that are required. This... | c# | .net | asp.net | datagrid | datagridview | null | open | Pagination improvements in ASP.NET 2.0 Grids
===
I currently have a datagrid bound to a table with tens of thousands of records. I display the datagrid using the existing asp.net 2.0. I show ten records at a time.
My problem is whenever I try to access the next page, I gets all the records again from the database ... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.