Tagged Questions
The bizarre tag has no wiki summary.
17
votes
4answers
771 views
C++ template gotchas
just now I had to dig through the website to find out why template class template member function was giving syntax errors:
template<class C> class F00 {
template<typename T> bar();
};
...
16
votes
8answers
556 views
How long can a webpage be?
Bit of a bizarre question, but does anyone know the actual limit to the length of a webpage, and why it is the limit?
As an experiment, I'm using HTML and CSS to make a site that represents a journey ...
5
votes
1answer
109 views
Python bizarre class problem
I have the following piece of code where I try to override a method:
import Queue
class PriorityQueue(Queue.PriorityQueue):
def put(self, item):
super(PriorityQueue, ...
4
votes
1answer
389 views
PHP/CodeIgniter - $_POST data totally disappears on form submission in bizarre circumstances
EDIT: I think I've worked something out. - This character - ’ - seems to be breaking it. If I use a 'regular' apostrophe (') it appears to work fine, if I replace every snazzy apostrophe in it with a ...
3
votes
5answers
908 views
Python Interactive Interpreter always returns “Invalid syntax” on Windows
I've encountered an extremely confusing problem. Whatever I type into the Python interpreter returns "Invalid Syntax". See examples below. I've tried fooling around with the code page of the prompt ...
3
votes
2answers
151 views
Java AbstractAction sometimes not detecting escape key - bizarre behaviour
In a master/detail view I have a series of text fields (and one or two other controls) that all pertain to the detail of the currently selected item. They all share the same DocumentListener so if you ...
2
votes
3answers
189 views
Require_once PHP Error
I've been programming in PHP for several years now and never encountered this error before.
Here's my widget.php file:
require_once('fruit.php');
echo "I am compiling just fine!!!";
And my ...
2
votes
3answers
934 views
COMException (0x800A13E9) - Word interop services
I am getting this stacktrace:
System.Runtime.InteropServices.COMException (0x800A13E9): Word ðú÷ì ááòéä.
at Microsoft.Office.Interop.Word.Documents.Add(Object& Template, Object& ...
2
votes
2answers
188 views
Using certain functions from stdlib.h or stdio.h causes syntax errors
I'm working on some C code in Visual Studio 2005 on Win7 Pro x64. The code is correct; it compiles and runs on MinGW under Eclipse. However, using certain functions from the standard C libraries ...
1
vote
2answers
72 views
Bizarre hidden character in MVC3 Razor loop
I have a loop
<ul id="news-list" class="thumbobs-list">
@foreach (var item in Model.News) {
@Html.Partial("RenderNews/" + item.TypeString, item)
}
</ul>
that uses ...
0
votes
0answers
84 views
GWTTestCases Freezing on Custom Exceptions
I have a custom exception which extends RuntimeException.
I find that if I am running a test as a GWTTestCase where this exception is thrown but not caught, instead of marking it as a failure with ...
0
votes
0answers
280 views
Bizarre IE checkbox bug?
I have some perfectly mundane code that puts 4 check-boxes in a 2x2 table. In Internet Explorer (but not in Firefox,Chrome,Opera, or Safari) the the two rightmost check-boxes will not toggle on and ...
0
votes
7answers
298 views
How is the value of this variable changing in my C code?
I have come across a very odd problem in C that I have never encountered before. I have narrowed it down to the following very simple snippet.
The variables are global and of type:
int cpd;
...