Questions tagged [segment]

Segment is an ambiguous tag and one should refrain from using it. It has several, very different, meanings in CS. Please try and pick a more accurate tag for your post.

  • Segmentation (memory), the division of computer memory into segments
  • Image segment created in computer vision
  • String segment, the substring of a pattern delimited by two don't cares or one don't care and beginning or end of the pattern
  • Network segment, a part of a larger computer network
  • A protocol data unit of the transport layer in computing, e.g. TCP segment
625 questions
0
votes
1 answer

segment based url not working codeigniter

at this site: http://www.syriadailynews.com/sdn/ I used codeigniter with segment based url and it works fine at localhost (xampp) but after uploded the site, all urls not working this is my .htaccess Options +FollowSymLinks RewriteEngine…
Zuhair Taha
  • 2,808
  • 2
  • 35
  • 33
0
votes
1 answer

CodeIgniter handle URL segments

I keep thinking about how to deal with URLs and pages with CI but I can't think to a good way to do this. I'm trying to handle url like this: site.com/shop (shop is my controller) site.com/shop/3 (page 3) site.com/shop/cat/4 (categorie and page…
Anas Bud
  • 347
  • 4
  • 15
0
votes
0 answers

Can Facebook Connect app pre-segment users?

Does anyone know if Facebook Connect can be set up where the pass variable can be set up so users can be segmented into different groups in advance so that insights from the app can be pulled in a way that also reflects those segmentations? It's…
0
votes
1 answer

LSD - Line Segment Detector / Android?

LSD is a linear-time Line Segment Detector giving subpixel accurate results. It is designed to work on any digital image without parameter tuning. It controls its own number of false detections: On average, one false alarms is allowed per image. the…
0
votes
1 answer

How can i create a segment data feature

I have a task to extend my web application to provide users the ability to segment their own data (i.e choose their own fields and add their criteria using And/Or etc), so I'm creating something similar to a query builder tool but lighter. I'm not…
0
votes
2 answers

How to generate a list of segments from a list of random self-intercepting lines (psp in R)?

I'm using X=rpoisline(4) to generate lines and plot them with plot(X). With X$ends I have their coordinates and their intersection points with selfcrossing.psp(X) (In R with spatstat : library(spatstat)). I need to get a list of segments and their…
0
votes
2 answers

Pagination, next page doesn`t display

SOLVED! if I click page 2 that`s error: Not Found The requested URL /rank/GetAll/30 was not found on this server. My link is: http://localhost/rank/GetAll/30 Model: Rank_Model
praashaad
  • 25
  • 2
  • 8
0
votes
3 answers

codeigniter: using uri segment in model

I am using uri segment to delete info in my database: anchor('site/delete_note/'.$row->id, 'Delete') Model: function delete_note() { $this->db->where('id', $this->uri->segment(3)); $this->db->delete('note'); } It works fine, but I want to…
tarja
  • 28
  • 2
  • 8
0
votes
1 answer

Why won't my line segment cross test return true?

I already know what the output should be for this program - my problem is that I cannot get the program to give the correct output, or, any output for that matter. My problem is: to identify and display all the legs of the given tour that cross…
mkjo0617
  • 33
  • 1
  • 3
  • 8
0
votes
3 answers

UISegementSwitch not working

I've got some code for an UISegmentSwitch but it just don't work. Code: - (IBAction)seg:(id)sender { switch (segSwitch.selectedSegmentIndex) { case 0: NSLog(@"test1"); break; case 1: NSLog(@"Testy"); break; …
Sjors
  • 29
  • 4
0
votes
1 answer

Codeigniter URI segment with dots odd results

I got a weird problem with CodeIgniter's URI segment system. When I have this URL: http://www.mywebsite.com/forums/category_name/forum_name/topic_name.. (yes, the name has two dots) Now I do this in PHP: $topic = $this->uri->segment(4); >>> echo…
user1467267
0
votes
1 answer

Compute Literal Address from Segmented Address

For example, say I have something like: 0x33:0x10 and I want to get an address in the form: 0x???????? from it. What is the easiest way to go about doing this? This is on Linux x86.
Bhubhu Hbuhdbus
  • 1,489
  • 6
  • 24
  • 31
0
votes
1 answer

How to index a matrix into segments

I have a matrix that is 1 column with 5448 rows with values in each. In reality these 5448 values are divided into 12 taps (being 454 values per tap). I want to index the closest 10% of values closest to tap boundaries (10% of a tap is 45.4 values…
Ben B.
  • 97
  • 3
  • 11
0
votes
3 answers

Decrementing value on LED segments

i'm writing a code for a number on a led segement to decrease by 1 every five seconds my actual code at the moment is this FiveSecDelay+=1; if (FiveSecDelay ==100) { count2--; //decrement count2 for (uint32_t x = 0; x < 4; x++) //split…
user1175889
  • 141
  • 3
  • 4
  • 13
-1
votes
0 answers

Best practices to track events on a front-end codebase for product analysis

I am currently looking for the best architecture to track a large number of events on a client-side (web) codebase. I am using Segment for data tracking, but I couldn't find any good practices for large scale tracking in their documentation. Our…
Simon Bruneaud
  • 2,263
  • 2
  • 12
  • 24