Tagged Questions
The segment tag has no wiki summary.
12
votes
13answers
8k views
Grabbing a segment of an array in Java
I'm looking for a method in Java that will return a segment of an array. An example would be to get the byte array containing the 4th and 5th bytes of a byte array. I don't want to have to create a ...
11
votes
5answers
636 views
What's the technology behind live stream sites?
It's amazing to notice that live stream sites like doitlive.tv can deliver videos on very low bandwidth (as low as 25kbps) home connection. Could someone explain me the technology behind such sites ...
5
votes
4answers
97 views
May a compiler ever generate code to unload parts of the code segment during execution?
Apart from Dll concept that provides ability of loading/unloading methods or functions at run-time, I'm wondering if a compiler may ever say something like, ok as this particular part of the code ...
3
votes
1answer
132 views
Did I correctly set up the stack segment in real mode?
Im writing a bootloader and I set up my stack up as such...
STACK_SEGMENT equ 0x0050
STACKP_OFFSET equ 0x03FF
mov ax, STACK_SEGMENT
mov ss, ax
mov sp, STACKP_OFFSET
Am I allocating 1024 bytes of ...
2
votes
2answers
52 views
How to find the maximal number of these intervals that have a common point?
I have been reviewing algorithms, this is question from Anany Levitin's algo book..
You have a list of n open intervals (a1, b1), ... , (an, bn) on the
real line. (An open interval (a, b) ...
2
votes
1answer
47 views
BIOS int 13H, AH=02 (to read floppy) and the stack segment
If I don't initial stack segments, what will happened?
Will when some case cause reading errors?
Thank you~
2
votes
1answer
53 views
Assembly Language Absolute addresses and segment registers
a review problem lists these registers in hex:
cs = ???? sp = 0300 ax = a66a ip = 01cf
ds = 4100 bp = 0003 bx = 1234
ss = 48ee si = 0100 cx = 00ff
es = 4cee di = 1000 dx = 0000
The ...
2
votes
1answer
56 views
Save the view of a UIScrollView
I am building an app where part of it allows you to scroll through different images to overlay. I have a segmented control to make a sort of layering system where each segment allows you to scroll ...
2
votes
3answers
397 views
ArraySegment - Returning the actual segment C#
I have been looking around on ways to return the segment which is basically held by ArraySegment in terms of offset and count. Although ArraySegment holds the complete and original array, it just ...
2
votes
1answer
202 views
What is the maximum size of stack segment that can be allocated to a process?
#include<stdio.h>
#include<stdlib.h>
void start(){
double xyz[135168];
char str[20];
xyz[0] = 1.2;
sprintf(str,"pmap %d",getpid());
system(str);
start();
}
int main(){
...
2
votes
3answers
164 views
Is segment-offset method common to all x86 chips or just 8086?
memory is referred to, using logical address in assembly langugage programming in 8086. is this feature common to all x86 chips including modern pentium microprocessors?
2
votes
6answers
285 views
Segment prefix when using pointers as function parameters
I have an assembler/c question. I just read about segment prefixes, for example ds:varX and so on. The prefix is important for the calculation of the logical address. I read too, that default is "ds" ...
2
votes
3answers
143 views
could not understand the behavior of read system call
So this is the code I am trying to run:
#include<fcntl.h>
#include<stdio.h>
#include<errno.h>
#include<string.h>
#include<unistd.h>
int main(){
int ret;
ret = ...
2
votes
2answers
452 views
C Linux read/write word from memory (segment,offset)
I am working on programming a Linux booter for a HW assignment and I know that I need to create a function that will read/write a word from/to memory. I am having trouble determining if I am on the ...
2
votes
1answer
68 views
How can I prepend a `SS:` or `ES:` using AT&T Assembly Syntax
How can I prepend a SS: or ES: using AT&T Assembly Syntax without adding in a .byte 0x36 or .byte 0x26?
ie. How would I be able to convert mov dword ptr ss:[esp+0x10], offset foo from Intel ...
2
votes
3answers
796 views
Losing URI segments when paginating with CodeIgniter
I have a /payments interface where the user should be able to filter via price range, bank, and other stuff. Those filters are standard select boxes. When I submit the filter form, all the post data ...
2
votes
2answers
597 views
What is the segment in Lucene?
I don't understand , what are the segments in Lucene ?
What are the benefits of Lucene's segments?
Thanks .
2
votes
2answers
628 views
WPF, convert Path.DataProperty to Segment objects
I was wondering if there was a tool to convert a path data like "M 0 0 l 10 10" to it's equivalent line/curve segment code.
Currently I'm using:
string pathXaml = "<Path ...
2
votes
1answer
532 views
How do I use gstreamer to make an audio clip from a segment of a longer source?
I would like to use gstreamer to save an arbitrary clip from one audio file to a new file. For example, a segment from 1 minute to 2 minutes in the original. How do I do it?
2
votes
4answers
459 views
Optimal solution for non-overlapping maximum scoring sequences
While developing part of a simulator I came across the following problem. Consider a string of length N, and M substrings of this string with a non-negative score assigned to each of them. Of ...
1
vote
1answer
26 views
How do i page using forms with the Codeigniter framework?
I'm using the Codeigniter framework and am in the process of creating a registration form. The registration process is completed in multiple steps- for which I've created different views.
What I have ...
1
vote
2answers
58 views
Algorithm to find length of a segment that connects center of two rectangles
Ok, here is the story : I found this problem in one of the pizza boxes a few weeks ago. It said if you can solve this before you could finish the pizza, you would get hired at tripadviser. Though I am ...
1
vote
1answer
44 views
How to identify end of code segment in MZ exe file?
I have written disassembler for my computer architecture classes and I was wondering if there was any way of knowing where does code segment ends and data segment begins in MZ Exe DOS files (x8086 ...
1
vote
2answers
84 views
R plot undo line segment?
Is there a quick and easy function to undo a segment or remove it from your plot?
p1 <- locator(1)
p2 <- locator(1)
segments(p1$x, p1$y, p2$x, p2$y, col = 'pink')
//Undo ...
1
vote
1answer
93 views
Ada Language - I've got a single word in my .data segment
I hope you guys can give me a hand here.
I have an Ada project which compiles correctly. Since I'm a curious person I decided to obj dump my object files. To my surprise, all of my Ada objects have a ...
1
vote
1answer
140 views
Oracle/SQL - Split list into 3 segments
I'm wondering how I would go about writing a query to split a table into 3 segments. When I've had to split a table into 2 before I've always based it off the rownum and doing a mod on it. I know I ...
1
vote
2answers
1k views
Draw a rectangle over an object using Matlab
I have an image which contains a coin image. Shape of the coin may be rectangle, square, circle, oval and etc. I want to draw a rectangle over the coin and segment the coin from it's background. I ...
1
vote
1answer
1k views
Assembly: Using the Data Segment Register (DS)
Currently I am in the midst of learning x86 assembly for fun, I'm love microcontroller programming, so I'm familiar with assembly.
Currently I've been searching high and low for the answer to this ...
1
vote
0answers
70 views
How to drag an object from point A to B in DirectX with less frustration
I have to drag an object from point A to B like the scroll bar does it in Windows, the problem here is that the A and B does not have neither X or Y the same, so the movement is horizontal and ...
1
vote
1answer
206 views
How to build message from tcp segments
working in C#, I use SharpPCap to get segments from a winpcap trace.
I need to rebuild all the messages sent and received in that trace.
In my situation, the client's and server's IP will never be ...
1
vote
2answers
613 views
Calculate point and circle segment collision
If I have calculated an intersection point between a line segment and a circle, how can I tell whether or not this intersection point lies on a segment of the circle?
I have the equations to tell ...
1
vote
4answers
789 views
How can I accept a hash mark in a URL via $_GET?
From what I have been able to understand, hash marks (#) aren't sent to the server, so it doesn't seem likely that I will be able to use raw PHP to parse data like in the URL below:
...
1
vote
1answer
385 views
assembly: data segment when called from c or created as an independet programm
im confused about this i dont think that there should be any difference
in both cases , the programm ends up as exe file
please help if you think a differ....
ok let me clear my question .
is ...
1
vote
4answers
390 views
How can I find the first point along a heading that is a specified distance away from a line segment?
Given a starting point, a heading, a distance, and a line segment, find the first point along this heading that is the specified distance away from this line segment.
I covered two cases, but I ...
1
vote
2answers
1k views
What's the right way to define an anchor tag in rails?
It's obvious from the documentation (and google) how to generate a link with a segment e.g. podcast/5#comments. You just pass a value for :anchor to link_to.
My concern is about the much simpler ...
1
vote
2answers
455 views
Is it possible to stream Matroska files?
So I want to broadcast .mkv file. I'm going to broadcast live video. So I need to know is it possible (anyhow) to read unfinished .mkv files? Because i know that Matroska is xml and you simply will ...
1
vote
4answers
926 views
Anyone know an example algorithm for word segmentation using dynamic programming?
If you search google for word segmentation there really are no very good descriptions of it and I'm just trying to fully understand the process a dynamic programming algorithm takes to find a ...
1
vote
2answers
123 views
Line Segments from a point
I have a point p, and 2 line segments in a 2D plane. Point p is a location of view from where camera is looking towards the line segments. I want to check if line segment 1 is partially or fully ...
1
vote
4answers
1k views
Shared memory access without semaphores
using shared memory apis in linux, If I have one write(by A process) and only one read( by B process) do I still need semaphore.?.
Is there a example to show, using sharing memory without semaphore ...
0
votes
3answers
66 views
Codeigniter URI strings | How to show 404 if not equal to a letter
I am creating a glossary for my website that will display definitions for terms on my site.
I have everything working. But I would like to show a 404 if my uri segment 3 contains anything other than ...
0
votes
0answers
55 views
UISegmentedControl does not react to user interaction disabling
How do I disable user interaction on a UISegmentedControl after the control is implemented?
If my segment is not linked to a method, then using this:
[segment setUserInteractionEnabled:NO];
to ...
0
votes
0answers
98 views
What is the JAVA code for line segment intersection
Im stuck on the java script for line segment intersection.
If i have coordinates (a,b) and (c,d).....each a,b,c and d have each of their own (x,y) coordinates in array form. i.e a = (x[0], y[0]), b ...
0
votes
0answers
39 views
String segmentation into array
I have a string like seberkulachew I wanted to split this string into multiple segments.
Each segment has a contribution for the whole word. after splitting, the segments could look something like ...
0
votes
1answer
165 views
Intersection of a 2D segment with a rectangle
I using C# and XNA. I need an algorithm in any language to obtain the border intersection point(s) of a rectangle with a 2d segment.
I've been looking for an answer for my question for over 3 hours ...
0
votes
1answer
97 views
detect blob over other blob
I use OpenCV and cvblob library to play with blob.
Now I want to detect blob in this particular case.
The problem or the difficulty in this case is there are two blobs over a bigger one and other ...
0
votes
1answer
40 views
created segment with table it displaying only empty table and segment control ..not segment data
@interface segment : UITableViewController {
IBOutlet UISegmentedControl *segmentControl;
int selectedSegment;
NSMutableArray *arr1;
NSMutableArray *arr2;
NSMutableArray ...
0
votes
2answers
334 views
Selected segment of UISegmentedControl
I am using an UISegmentedControl with two sections: the first is Don't Remember Password and the second is Remember Password. If they select Remember Password, I use NSUserDefaults to remember this. ...
0
votes
1answer
44 views
Updating variable that lives in the data segment from the stack and its segment
I currently have three segments of memory, my main data segment, stack segment and the segment where my API lives. The following instructions are executed from the data segment, they push the address ...
0
votes
1answer
85 views
Connecting an application program to SQL Server from another network segment
I want my vb.net application to access the sql database from another network segment.
I have two network segment, the application program that I made is in 192.168.7.xx segment and the SQL Server ...
0
votes
2answers
122 views
How to find X if you know Y in a line segment WPF
I have a start point(X1,Y1) and end point(X2,Y2) I am drawing a line segment in WPF between these points , I want to calculate the value of X between this line segment if we know the Y value?