Tagged Questions
The offset tag has no wiki summary.
13
votes
3answers
23k views
PHP: What causes: “Notice: Uninitialized string offset” to appear?
I have a form that users fill out, on the form there are multiple identical fields, like "project name", "project date", "catagory", etc. Based on how many forms a user is submitting:
My goal is to:
...
9
votes
5answers
5k views
jQuery UI sortable scroll helper element offset Firefox issue
I have a problem with a jQuery UI 1.7.2 sortable list in Firefox 3.6, IE7-8 work fine. When I'm scrolled down a bit, the helper element seems to have an offset of the same height that I'm
scrolled ...
7
votes
3answers
186 views
Javascript (jQuery) Scale an Image to Its Container's Center Point
This seems like it should be quite simple, but for some reason I can't quite wrap my brain around it. I have an image inside a "viewport" div, of which the overflow property is set to hidden.
I've ...
6
votes
4answers
364 views
Read a file from line X to line Y?
Is there a way to read a file in PHP5 from line X to line Y into a string, without reading the entire file.
I would like to return huge files (10,000+ lines) using ajax requests. Each request will ...
6
votes
7answers
381 views
Is there a practical benefit to casting a NULL pointer to an object and calling one of its member functions?
Ok, so I know that technically this is undefined behavior, but nonetheless, I've seen this more than once in production code. And please correct me if I'm wrong, but I've also heard that some people ...
5
votes
2answers
273 views
LIMIT / OFFSET in Oracle 11G
I'm trying to update a table in Oracle and I'm running into some difficulty. I'm porting over my code from MySQL and some of the commands that MySQL allows are not supported in Oracle.
Here is the ...
5
votes
2answers
315 views
R: ggplot2 offset scatterplot points
I have two sets of points with error bars. I would like to offset the second so it's displayed slightly down from the first set, so that it doesn't obscure the original.
Here is a mock data set:
...
5
votes
2answers
475 views
Select a specific character in a string and offset it (visually) with Jquery
I'm trying to use Jquery/Javascript to mimic a broken typewriter font (since I could not find one). But I want to make it random which letter gets broken. I was able to split the string of the id ...
5
votes
3answers
2k views
Left offset of an inline element using jQuery
I have the following piece of HTML:
<div><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim ...
4
votes
4answers
147 views
How does the C offsetof macro work? [closed]
Possible Duplicate:
Why does this C code work?
How do you use offsetof() on a struct?
I read about this offsetof macro on the net, but it doesn't explain what it is used for.
#define ...
4
votes
2answers
186 views
Can you control how an SVG's stroke-width is drawn?
Currently building a browser-based SVG application. Within this app, various shapes can be styled and positioned by the user, including rectangles.
When I apply a stroke-width to an SVG rect element ...
4
votes
3answers
386 views
offsetTop vs. jQuery.offset().top
I have read that offsetLeft and offsetTop do not work properly in all browsers. jQuery.offset() is supposed to provide an abstraction for this to provide the correct value xbrowser.
What I am trying ...
4
votes
2answers
198 views
Detecting offset of an element on scroll in javascript / jQuery
I am looking looking to calculate the distance between an element and the top of the document window. On scroll I am able to get the initial value but it does not change. How can I find this value ...
4
votes
2answers
817 views
Android - Live Wallpaper offset clipping
I am writing a live wallpaper for android. To test my basic code was working I drew a rectangle in the top left-hand cornor of the screen:
canvas.drawRect(0f,0f,50f,50f,paint);
Half of the ...
4
votes
2answers
178 views
Determining if an offset is in between line numbers?
hi
I need to determine if a given selection is in between a start line and an end line.
I have an ILineRange and a given offset within the viewport of eclipse. (I need to know, if the selection (from ...
4
votes
2answers
967 views
Get offset of current buffer in vim (in particular, via python scripting)
i want to get the offset of
the current cursor position
the current selection range
in vim, beginning from the start of the file. I do this in python, so hints how to do it with vim's python ...
3
votes
1answer
78 views
UTC DateTime problems with ajax
Hey I would really appreciate any help with this as it has been bothering me for a while.
I currently store all dateTimes in the DB as UTC dates. Each users time zone offset is also stored in the DB. ...
3
votes
2answers
200 views
Adding Base Address + Offsets to Modify Value
I'm trying to modify a value for Solitaire such as the score.
Anyways I found the addresses (using CheatEngine) that the pointers point to but I'm having difficult injecting code to modify the score. ...
3
votes
2answers
248 views
Codeigniter pagination not showing first row of query result
As you can see below I am querying the database for a list of questions.
My model returns a count of questions ( count_questions() ) as well as the questions themselves ( get_questions($args) ) which ...
3
votes
4answers
194 views
CSS :hover to force element offset cross-browser solution needed
I have a rather interesting problem, and wondered if it could be done purely in CSS. I know you can use webkit moz transforms, or javascript, but is there another simple CSS cross browser solution to ...
3
votes
2answers
155 views
How can you find a backgound image y-offset using javascript?
Pretty straight forward I suppose. Getting the background position is easy, but just getting the Y position seems to be a bit tougher. Do I have to splice up the background position output? Or is ...
3
votes
3answers
424 views
Non integer offset positions in jQuery
jQuerys offset function sometimes returns rational numbers (like 12.645613) for top or left. I thought that top and left positions are in pixels and so should be integers (there are no half pixel, ...
3
votes
5answers
809 views
PHP: Undefined Offset at 0, but it's there (I think)
So I've got a 2-D array, of phrases and individual words, called $frags, that `var_dump's like so:
array(4) {
[0]=> array(5) {
[0]=> string(3) "the" [1]=> string(4) "term" [2]=> ...
3
votes
1answer
362 views
What does the offset word mean in the context of programming?
What does the offset word mean in the context of programming? does mean in the beginning or by a distance.
what does string.offsetByCodePoints(int index, int codePointOffset) method exactly do?
...
3
votes
7answers
348 views
What is the correct way to offset a pointer?
I want to pass a pointer to a function. I want this pointer to point to some place in the middle of an array. Say I have an array like such unsigned char BufferData[5000];, would the following ...
3
votes
7answers
484 views
Python - How can I open a file and specify the offset in bytes?
I'm writing a program that will parse an Apache log file periodically to log it's visitors, bandwidth usage, etc..
The problem is, I don't want to open the log and parse data I've already parsed. For ...
3
votes
0answers
553 views
UINavigationController change position of pushed UIViewController view
I tried to solve this in so many ways but always failed.
Basically what I need is a NavigationController with a customized NavigationBar (different height and smaller back Button) which I already ...
3
votes
2answers
989 views
Offset of a given timezone from GMT in linux shell script
Is there a way to get the offset of a given timezone (identifier like EDT or America/New_York) from GMT in linux shell script?
3
votes
2answers
2k views
Reading text files line by line, with exact offset/position reporting
My simple requirement: Reading a huge (> a million) line test file (For this example assume it's a CSV of some sorts) and keeping a reference to the beginning of that line for faster lookup in the ...
3
votes
1answer
198 views
iPhone CurrentTimeZoneOffset from UTC
Is there a way to get the offset time zone for a given date.
For example, if I am in New York and I pass in 12-12-2009 4 PM I would get back "-4" as we are 4 hours off GMT.
(In .NET land there is a ...
3
votes
2answers
2k views
get the time offset from GMT from latitude longitude
Is there a way to estimate the offset from GMT (or time zone) from a latitude/longitude? I've seen geonames, but this would need to work long term and we don't really want to rely on a web service. ...
3
votes
2answers
1k views
Getting offsetTop of element in a table
I can't seem to figure out how to get the offsetTop of an element within a table. It works fine on elements outside tables, but all of the elements within a table return the same result, and it's ...
2
votes
4answers
56 views
How can I get the offset of a particular row in MySQL?
I'm trying to make an image database which does not keep a consistent record of ID's. For example it might go 1,2,6,7,12, but as you can see that is only 5 rows.
Inside the table I have fileid and ...
2
votes
3answers
28 views
jQuery: Find left offset while inside $.proxy
this.progress.click(function(e) { // works
var seek = (e.pageX - this.offsetLeft) / $(this).width();
self_ref[index].seek(seek * self_ref[index].source.duration);
});
...
2
votes
3answers
45 views
How to retrieve offset of dynamically created elements?
I am adding elements dynamically using javascipt:
$('.marker').append('<div class="container" id="id' + counter + '" ><input type="text" name="textbox" id="textbox' + counter + '" value="" ...
2
votes
2answers
78 views
Bug in my 'next offset' algorithm - C++
I am trying to apply filenames to the files loaded from an archive.
For the first step, I create an array of structs that hold three bits of information. The filename, the file size and the offset ...
2
votes
1answer
96 views
excel vba selecting cells
I have to fill several comboboxes depending on selected values in other comboboxes. What I want is to fill the boxes with activities for a selected name. I compare if a certain name is in a row and ...
2
votes
1answer
239 views
jQuery offset() returning null in Chrome
I have the following HTML:
<div id="menu">
<ul>
<li><a href="#"><img src="imagenes/user.png" width="32" height="32" alt="My Profile" title=""/></a></li>
...
2
votes
2answers
189 views
postgresql: offset + limit gets to be very slow
I have a table tmp_drop_ids with one column, id, and 3.3 million entries. I want to iterate over the table, doing something with every 200 entries. I have this code:
LIMIT = 200
for offset in ...
2
votes
4answers
39 views
CSS Resizing with % - Offset
So I have a floating div, and I need it to always be 200px to the right, and fill the rest of the window. Is there some way that is cross browser compatible that I can make the width fill the rest of ...
2
votes
1answer
263 views
How to set offset on (selectmenu) overlays in jQuery Mobile [using a fixed header toolbar]?
Is there a way to define the offset JQM uses for selectmenu overlay?
Other options can be set via prototyping like this:
$.mobile.page.prototype.options.addBackBtn = true;
...
2
votes
1answer
64 views
Need help placing LIMIT,OFFSET in this MySQL query
This query returns forum questions/answers and their nested comments (similar to the StackOverflow paradigm).
SELECT forum_qa.*,
user_profiles.*,
c.*,
n.pid,
...
2
votes
1answer
88 views
Returning an OFFSET subquery result in sqlite3
I'm selecting a random row from a table in SQLite by using a subquery to determine a random OFFSET value:
SELECT id, prev_node, next_node FROM edges WHERE prev_node = ? LIMIT 1
OFFSET ...
2
votes
1answer
180 views
SQL (ORACLE): ORDER BY and LIMIT
I want do sorting by property ALL data in my db and ONLY AFTER that use LIMIT and OFFSET.
Query like this:
SELECT select_list
FROM table_expression
[ ORDER BY ... ]
[ LIMIT { number | ...
2
votes
1answer
108 views
Finding CSS element position (top and left) after rotate transformation has been applied via jquery
I'm using .offset() to find the top and left properties. But due to a rotation (which I replicated in a test object at the exact same coordinates), it still does not match the position. Do I have to ...
2
votes
3answers
80 views
jQuery/CSS Offset + mousemove question
Demo: http://jsfiddle.net/H45uY/6/
What I'm trying to do here is make the top-left corner of the <div> follow the mouse. The code works fine without the paragraph (see demo above), but when you ...
2
votes
1answer
78 views
Offset binary format for float in java
when i am looking at the wikipedia page for Offset Binary, i cant follow the following sentence:
Unusually however, instead of using "excess 2^(n-1)" it uses "excess
2^(n-1)-1" which means that ...
2
votes
3answers
308 views
PHP: undefined offset in explode()
I have this:
list($firstname, $lastname) = explode(' ', $queryString);
Sometiems $lastname does not gets defined, and it's there i am getting undefined offset error.
Because it can not find ...
2
votes
1answer
308 views
JQuery .position() and .offset() error on Firefox
I have a scrolling DIV that via JQuery determines the element in the middle. I have tried using both the position() and offset() parameters and in both cases Firefox does not get the right answer ...
2
votes
3answers
129 views
Jquery multiple elements
i am generating multiple span element all of the same id
<span id='myLink'>some text</span>
and using jquery i want to open a div overlay near it using the offset of the span element
...