Tagged Questions
The inconsistency tag has no wiki summary.
43
votes
3answers
2k views
If x is list, why does x += “ha” work, while x = x + “ha” throw an exception?
From what little I know, + op for lists only requires the 2nd operand to be iterable, which "ha" clearly is.
Thanks in advance.
In Code:
>>> x = []
>>> x += "ha"
>>> x
...
10
votes
1answer
490 views
8
votes
1answer
203 views
Peculiar Behaviour with PHP (5.3), static inheritance and references
I'm writing a library in PHP 5.3, the bulk of which is a class with several static properties that is extended from by subclasses to allow zero-conf for child classes.
Anyway, here's a sample to ...
7
votes
1answer
273 views
scala 2.8 collections inconsistency?
why the methods transform (in-place mutation version of map) and retain (in-place mutation version of filter) are defined on only mutable.Map but not on mutable.Buffer and mutable.Set? shouldnt all ...
4
votes
1answer
111 views
Inconsistent and inexplicable behavior in some perl files
Host is Linux. I have multiple files in the same directory. All of the *.pl files contain the following at the beginning differing only in comments:
#!/usr/bin/perl -w
BEGIN { ...
4
votes
1answer
67 views
PHP core function arguments; manual says reference, however it accepts values
I've noticed some inconsistencies in the PHP manual; a number of core function signatures are documented to accept arguments by reference, however they accept arguments by value.
I posted a more ...
4
votes
4answers
391 views
Is there a benefit to using a return statement that returns nothing?
I'm refactoring a large javascript document that I picked up from an open source project. A number of functions use inconsistent return statements. Here's a simple example of what I mean:
var func ...
3
votes
2answers
77 views
Timing Confusion In Java
For a project I worked on, I was tasked with timing the search times for two different search algorithms: binary search and sequential search. For each algorithm, I was supposed to record the time ...
3
votes
1answer
26 views
External read-only DB, my local DB, inconsistency
There's a service A that works with DB1, there's service B that works with DB1 and DB2. Service A has read-write access to DB1 and doesn't work with DB2 at all. Service 2 has read-write access to DB2 ...
3
votes
2answers
125 views
Python's os.listdir behaviour on Windows
>>> import os
>>> os.chdir('c:/python27')
>>> os.listdir('c:')
['Tools', 'include', 'python.exe', 'libs', 'DLLs', 'Lib', 'NEWS.txt',
'w9xpopen.exe', 'Doc', 'pythonw.exe', ...
3
votes
3answers
223 views
Python 2.7.1: Inconsistent output from os.path.isdir()
I'm building a Python ISO generation app, and I'm getting some wierd output from os.path.isdir(). I'm running Arch Linux with Python 2.7.1.
I have the following folder structure:
...
2
votes
2answers
47 views
Buttons too tall on Firefox
I've got a problem unique to Firefox. I'm trying to style links and buttons to look exactly the same. On every browser except Firefox, this works as desired. On Firefox, the height of the button's ...
2
votes
1answer
67 views
Highcharts remove() Inconsistencies
I have a highchart and I simply want to remove a bar from it. Sounds simple, but the remove() method works differently depending on which data point I access.
Something like...
...
2
votes
2answers
526 views
Inconsistency when setting TextView font size in code and in resources
The official documentation does not seem to answer this, or I can't figure it out.
Element (nevermind the AlertDialog, it happens on any TextView as well):
TextView tv = (TextView) ...
2
votes
1answer
93 views
Inconsistance of scoping between “type …and ” and “let …and ” in Ocaml
I wonder why in Ocaml, "let.. and ..." does not have the same kind of scoping as "type ... and ...":
The folowing one is OK, t2 in the same scoping as t1
# type t1 = t2
and t2 = int;;
This ...
2
votes
3answers
121 views
inconsistency in converting string to integer, when string is hex, prefixed with '0x'
Using PHP 5.3.5. Not sure how this works on other versions.
I'm confused about using strings that hold numbers, e.g., '0x4B0' or '1.2e3'. The way how PHP works with such strings seems inconsistent to ...
2
votes
2answers
221 views
HTML/CSS: <a> tag CSS rules w/ pseudoclasses rendering inconsistently
I've come across an issue lately with my web design projects that has been insignificant enough to slip through my fingers unfixed a few times, but it's just gotten too annoying.
Say I have a style ...
2
votes
2answers
275 views
AutoComplete=“off” is inconsistent
I have a website where a user can login from two different pages. I have set AutoComplete = "OFF" for the username and password textboxes in both the pages. But, surprisingly, autocompletion is ...
2
votes
2answers
74 views
Python scope problems only when _assigning_ to a variable
So I'm having a very strange error right now. I found where it happens, and here's the simplest code that can reproduce it.
def cause_an_error():
some_var = False
def some_nested_func():
...
2
votes
1answer
33 views
Is it possible to have an inconsistent branch/tag with SVN due to concurrent commit action?
I'm trying to understand whether subversion has its own mechanisms for regulating concurrent user activities on the trunk (IE a branch/tag action and a commit action happening at the same time) or if ...
2
votes
4answers
172 views
Does this make any sense (Apple-documentation)?
Here is a snippet of the official Apple Documentation of AudioBufferList (Core Audio Data Types Reference):
AudioBufferList
Holds a variable length array of AudioBuffer structures.
struct ...
1
vote
2answers
30 views
Repairing a corrupt postgresql database
This is what happens when postgresql tries to start after a power failure:
2012-01-27 18:00:44 MSK LOG: database system was interrupted while in recovery at 2012-01-27 18:00:16 MSK
2012-01-27 ...
1
vote
1answer
65 views
How to get rid of inconsistent behavior between running with debugger and not for a exception catching method
I have created a method like NUnit's Throws method.
Basically, the method should return true if the action it's acting on will cause an exception of type T or any derived exception type, which is ...
1
vote
1answer
30 views
trying to have a draggable item (jQuery) update a form element, with inconsistent results
http://www.por7al.com/drag_test.html
Here is a simple demo, it is a simple jQuery draggable item, that uses the drag callback to update a form element with the absolute position of the draggable ...
1
vote
1answer
210 views
iOS: inconsistent behaviour with UIButton's UIControlEventTouchUpOutside event
I want to get dual functionality from a UIButton.
When the user touches down on the button, I want it to immediately trigger behaviour A
But if the user then drags his finger outside of the button ...
1
vote
0answers
54 views
Inconsistent problem with Android
I have a very strange problem.
I have an xml file of four data structures:
A with data and collection of B.
B with data and collection of C.
C with data and collection of D.
D with data.
Collection ...
1
vote
1answer
252 views
Program used to calculate the sum of all numbers from zero to 999 producing in consistent results
Below is python code that attempts to find the sum of all values divided by a particular number using arithmetic progression equations found here
The program will produce incorrect output only a ...
1
vote
3answers
334 views
Inconsistent search results using spatial.net and lucene.net 2.9
Hello
I am currently working on implementing a spatial search feature for a website using c#, lucene.net and spatial.net
The issue I am running into is the following:
I index 5 document with the ...
1
vote
4answers
359 views
jQuery(formElement).val(null) : inconsistent results in different browsers
The code is here:
http://jsfiddle.net/jf7t2/1/
Please run it on the latest versions of all browsers, and see for yourself. When the button is clicked, on:
on Chrome (and Safari of course) it just ...
1
vote
2answers
111 views
Running code returns garbage; typing in debugger returns correct result
Here's the code after which I set a breakpoint (I added the casts to exactly match what I typed in GDB, but it had the same result without them):
NSUInteger addedRefOrder = ...
1
vote
1answer
89 views
Database Inconsistency Error SQL Server 2000
After running DBCC checktable with allow data loss, I got below messages.
Repair: Deleted text column, text ID
6434390016, for object ID 117575457 on
page (1:14314522), slot 22. Repair:
...
1
vote
1answer
119 views
Java Awt Paint Method's Variable Inconsistency
I'm not sure what is wrong but there's some weird happening in my Paint() concerning some variables.
this code works just fine:
public void paint(Graphics g)
{
Point[] positions = {new ...
1
vote
3answers
114 views
Reasons for inconsistent VB.NET syntax?
Does anyone know if there's any particular reason that VB.NET construct syntax isn't consistent? For example:
If
...
End If
Select
...
End Select
You'd assume it would be for... end for, while... ...
1
vote
5answers
138 views
javascript really strange behaviour
I have the following code
if (msg.position == 0)
//removed for brevity
else if (msg.position == txtArea.value.length)
//removed for brevity
else {
//ERROR: should not reach here.
...
1
vote
0answers
35 views
Why is my OLE data source data not querying consistently?
I have a Microsoft Excel 2003 file that I am querying from C# 2.0 using an OleDbConnection.
One of the cells in the Excel file is formated as a short date and displays in Excel as "1/1/2009". If I ...
0
votes
1answer
22 views
Margin inconsistencies, z-index?
I recently just created a website for a company, http://visionaryminds.com/ , For the most part everything is good except for a few browser inconsistencies.
The reason I am posting is an ...
0
votes
0answers
41 views
GUI Reversi inconsistency / some valid moves work and others do not java [closed]
i made a reversi program that is a 2d array of buttons the valid moves are then enabled true and you can make a move; some moves go instantaniously while others just kind of sit there no matter how ...
0
votes
1answer
24 views
Why would a CATextLayer object have inconsistent CAKeyFrameAnimation?
What is intended:
A button click requests that a CATextLayer object's string value is animated until being stopped by another button click request. There are two separate buttons responsible for ...
0
votes
2answers
67 views
Inconsistent Results with RichTextBox ScrollToCaret
I am working with a RichTextBox in C#. It exists on a TabPage. When the TabPage is selected, I aim to populate the RichTextBox, and scroll to the end. I have tried the slight variations on solutions ...
0
votes
1answer
99 views
gettimeofday() C++ Inconsistency
I'm doing a project that involves comparing programming languages. I'm computing the Ackermann function. I tested Java, Python, and Ruby, and got responses between 10 and 30 milliseconds. But C++ ...
0
votes
1answer
31 views
Page cache inconsistency across browsers
Ive done all my Wordpress development in Firefox and I am using a caching plugin called W3 Total Cache.
The only problem I'm facing is that in Safari and Chrome, my navigation is being reloaded each ...
0
votes
1answer
162 views
Getting user data is inconsistent on the php and javascript sdk
I've been developing a facebook application that uses a combination of the php sdk and the javascript sdk. It runs in a tabbed iframe on facebook and is hosted on my own server. I'm using the latest ...
0
votes
0answers
49 views
Why would js behave different when the Chrome Inspector is open?
I am having an issue with a script where a box is supposed to disappear and become unstyled when I click off of it, and when a certain target element is clicked again it gets the offset from the ...
0
votes
1answer
247 views
iPad1 memory mystery with my texture-intensive game app
Sorry for the vague title, but not quite sure how to summarize this one.
The facts are:
I have a game that's been approved by Apple and is on the App Store.
It is a universal app. It uses textures ...
0
votes
2answers
66 views
NSInternalInconsistencyException when loading nib file
Hello I have the following problem:
'NSInternalInconsistencyException', reason: 'Could not load NIB in bundle: 'NSBundle ...
0
votes
2answers
42 views
mysql ensure only one access at a time
I'm connecting to a mysql-database by several threads in Java. Sometimes, the threads are reading and updating the same column of a database-table so that some inconsistency appears.
In Java there is ...
0
votes
3answers
545 views
iOS Programming: Problem extending UIButton class
I'm trying to extend UIButton class to add few methods but I'm having some problem when I try to init my object.
-(id)init{
UIImage* image = [UIImage imageNamed:@"button_background.png"];
CGRect ...
0
votes
0answers
44 views
Mysql - Data got inserted even on foreign key failure
These are the output of SQL statements, one after other (just shortened the separator lines):
mysql> show create table poller_vote;
+-------------+---....-------+
| Table | Create Table ...
0
votes
0answers
160 views
GoogleAdMobAdsSdk adview width not consistent
I don't know whats wrong with GoogleAdMobAdsSdk 4.0.4 the ads shown are not of same width all the time. The width of the Adview change evry time the activity is stared.
I follow the example shown ...
0
votes
1answer
314 views
ITunes Connect: inconsistency in status of application [closed]
I was wondering if somebody has seen this before:
I uploaded a binary application to App Store, and in the middle of the revision proccess a question from revision team was sent to me with a link to ...