Questions tagged [sections]

697 questions
4
votes
0 answers

Sections of a disassembled x86 elf executable and when and in which order they are run

I'm learning currently x86 assembly and trying some reverse engineering on a regular x86 elf executable. Now there are multiple sections like init main etc. I did a bit google research but didn't find quit what I wanted. Maybe somebody here knows…
rob
  • 345
  • 1
  • 5
  • 13
4
votes
1 answer

Keep rodata located with the function that created it

I'm trying to make .rodata section location stay with its associated function memory location. I'm using the GNU compiler/linker, bare metal, plain-jane c, with an STM32L4A6 micro-controller. I have a custom board using an STM32L4A6 controller with…
ICAVER
  • 43
  • 6
4
votes
3 answers

How do I add different sections in a website using HTML and CSS?

I am making a website (brickman.glitch.me) and have a scroll button. How can I make it scroll down to what seems like a different page? I've tried using the section tag, but I'm not the most experience so I've become stuck.
cyliim
  • 301
  • 1
  • 5
  • 19
4
votes
1 answer

Background image of the section to Specific Height

What I really want to achieve is that to put the background image to a specific height like I have one section which contains two divs I gave the section a background image which is background-image: linear-gradient(-207deg, #0EC573,…
Malik
  • 121
  • 1
  • 1
  • 17
4
votes
1 answer

Container-fluid not full screen width

My container-fluid element has a margin down the right side and a scroll bar at the bottom on all screen sizes. I don't want this. This question has been asked before but non of the answers are working for me. Some previous posts also seem to not…
sim
  • 127
  • 2
  • 5
  • 13
4
votes
2 answers

Different Layout in different Table view sections

Hi I want to have different layouts in different sections of UITableView, I want to do it using dynamic prototype cells and not using static cells. I don't know how to create it, Please help. Any links or something. I want to achieve like this,…
Anirudha Mahale
  • 2,526
  • 3
  • 37
  • 57
4
votes
1 answer

RecyclerView Sections and data from Firebase

Hi I'm working on an app, in it I have to populate a data recyclerview with Firebase, ready. Now I want to do is fill out a recyclerview with data firebase but has sections which would be the father that host data firebase, I'm a little lost with…
4
votes
1 answer

Merge sections with ld

I'd like to merge multiple .o files into a single .o while also merging some of the sections. If I execute ld -r first.o second.o -o result.o then it properly merges the object files but I also need to merge the various .text sections. This section…
Kamu Flazs
  • 41
  • 1
  • 2
4
votes
2 answers

Sectioning TableView and rows with Core Data Swift

I have two tables in sqlite: The code was generated by XCode Generation: class Event: NSManagedObject { @NSManaged var startDate: NSDate @NSManaged var details: EventDetail //i think this property shoud be var details Array
Weles
  • 1,275
  • 13
  • 17
4
votes
1 answer

Is it possible align text to both the left and right in a section heading in a tableview?

I am trying to have some text aligned to the left of the section heading and different text to the right of the same heading. While using toolBars I have used a flexible button to push both other buttons to the left and right and I was wondering if…
sam_smith
  • 6,023
  • 3
  • 43
  • 60
4
votes
1 answer

What does *COM* stand for in objdump symbol table?

There are a few section names in objdump output that have some unique names, like *ABS* *COM* *UND* I guess *ABS* stands for ABSolute and denotes a symbol that doesn't belong to any section. External variables go to *COM* section. It seems that…
Farcaller
  • 3,070
  • 1
  • 27
  • 42
4
votes
3 answers

ios table with dynamic sections and two different prototype cells

I am new to ios programming so bear with me if the question is simple. I have a core data table mapped to a table view controller. The data in it currently looks as follows - there is one prototype cell: I need to sum up the data by dates and show…
serverman
  • 1,314
  • 5
  • 22
  • 39
4
votes
2 answers

What's the maximum number of sections a PE can have?

I'm writing a program in C# where I read a PE's bytes. But in order to get the RVA I need to use the sections headers. I'd like to know what the maximum number of sections headers is? I tried Google and I've looked here but I haven't found anything…
Jevgeni Geurtsen
  • 3,133
  • 4
  • 17
  • 35
4
votes
0 answers

Continuing numbering from heading to list in toctree

I'm looking to get list numbers to continue on from heading numbers. I've tried the :numbered: directive in .. toctree:, but that only produces numbers for the headings. For example: Section ===== Sub Section ----------- #. item 1 #. item 2 #.…
mrmagooey
  • 4,832
  • 7
  • 37
  • 49
4
votes
1 answer

Change internal link labels in Sphinx

I'm generating documentation with Sphinx. I can change the label of links to documents in the table of contents with Features in the toctree directive as per the toctree directive, but how can I do the same for links…
jfoucher
  • 2,251
  • 2
  • 21
  • 29