Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
9
votes
3answers
281 views

The difference between +1 and -1

> :t (+1) (+1) :: Num a => a -> a > :t (-1) (-1) :: Num a => a How come the second one is not a function? Do I have to write (+(-1)) or is there a better way?
9
votes
4answers
6k views

HTML5 best practices; section/header/aside/article tags

There is enough information about HTML5 on the web(also on stackoverflow), but now I'm curious about the "best practice". Tags like section / headers / article are new, and everyone has different ...
9
votes
5answers
8k views

jQuery, html5, append()/appendTo() and IE

How to replicate: Create an html5 page. Make sure you have the script from remysharp.com/2009/01/07/html5-enabling-script/ added so that IE will notice the tags. Create an hardcoded <section ...
8
votes
1answer
190 views

manually defining boolean conjunction

In chapter 4 of Erik Meijer on Functional Programming Fundamentals, he essentially writes: True &&& x | x == True = True | x == False = False Isn't this unnecessarily ...
7
votes
1answer
113 views

What is kernel section mismatch?

I tried to compile a kernel module however I got an WARNING and in the warning there was a note to add a compile option CONFIG_DEBUG_SECTION_MISMATCH=y It give me more detailed info about issue: ...
7
votes
4answers
259 views

Memory section handling error

I'm getting a link time error: WARNING: /home/gulevich/development/camac-fedorov/camac/linux/k0607-lsi6/camac-k0607-lsi6.o (.ctors): unexpected non-allocatable section. Did you forget to use ...
6
votes
6answers
418 views

HTML - <section> vs. <div>

What is the difference between <section> and <div> in HTML? Aren't we defining sections in both cases? Thanks.
6
votes
1answer
4k views

Xcode - Using #pragma mark

I'm pretty sure this isn't a duplicate. Do you use #pragma mark? I've seen multiple ways, which is correct? #pragma mark - #pragma mark === Actions === #pragma mark - #pragma mark - #pragma mark === ...
5
votes
3answers
2k views

A NSFetchedResultsController with date as sectionNameKeyPath

I develop an application which uses Core Data. In one UITableView, I want to display a list of my entities, sorted by the saved date of the objects. When I do this: fetchedResultsController = ...
4
votes
1answer
174 views

How to get a pointer to a binary section in MSVC?

I'm writing some code which stores some data structures in a special named binary section. These are all instances of the same struct which are scattered across many C files and are not within scope ...
4
votes
2answers
210 views

<section> or <article>, which is contained in which

Trying to get my head around the new semantic elements in HTML5. Does a <section> belong inside an <article> or is it the other way around? Does it even matter? I'm looking at ...
4
votes
2answers
1k views

jQuery validation per multiple fieldsets, how to use different event to trigger validation per section

I have a really, really long form (about 300 fields) that I broke down into different sections using this slick jQuery plugin Form Wizard. If you group your form into different fieldsets, the ...
4
votes
1answer
6k views

UITableView section header height for non-grouped table

Greetings! I know that UITableView sectionHeaderHeight is only used for grouped tables, but I'll ask anyway (in case there's some way to do this that isn't obvious) ... Is there a way to change the ...
3
votes
3answers
381 views

Html5 section or not to section?

I'm learning about HTML5, and honestly I can't say I'm really impressed. Semantics are nice and all, but I think that they introduced new elements with a very thin line between them, and a even ...
3
votes
3answers
704 views

How get web config location element?

How get web config location element? ConfigurationManager.GetSection("appSettings") returns Okay ConfigurationManager.GetSection("location") return null I.E. ... <location ...
3
votes
2answers
823 views

LaTeX: How to leave out chapter numbers in section numbering

So, I'm writing my thesis using the LaTeX book class. I have the following: [Chapter I The fundamentals] using \chapter{The fundamentals} together with ...
3
votes
4answers
1k views

Modifying \section{} to make it colorful with LaTeX

How can I change the \section{} style? Especially I want to change the color of section heading. I happen to find some neat style following Edward R. Tufte (http://code.google.com/p/tufte-latex/), ...
3
votes
2answers
817 views

How do i change color of letters of sectionIndexTitlesForTableView? is it possible in iphone?

I have to change the color of sectionIdexTitle for table view??how to do this? any one knows it ??please tell me??
3
votes
3answers
3k views

No newline after (sub)section?

I want my text to appear right after the call to \subsection{Name} but I can't find how to do it. I'm using the article class. An example of command: \subsection{a)} Blah blah bla... produces: ...
3
votes
4answers
9k views

How to underline section-headings in LaTeX?

EDIT: As I see in the first answer, underline is the wrong word. I want a line under the section heading, separating the heading from the following text. I want to separate section headings from the ...
2
votes
1answer
106 views

iOS: Get row position in a sectioned TableView

is it able to acces selected row position in a sectioned table view within a prepareForSegue method? This is my code for Segue - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { ...
2
votes
1answer
159 views

Best HTML5 markup for sidebar

I'm setting up my WordPress sidebars for an HTML5 theme and really wanting to use before_widget and after_widget right. So my question is this: which of the two markup patterns is more appropriate? ...
2
votes
1answer
173 views

iOS5 delete tableView section animation

I have a tableView with a few sections. When I remove all rows from a section, I also remove the section with the UITableViewRowAnimationTop animation (so it slides up). When running the app on an iOS ...
2
votes
1answer
40 views

Simplest way to reload rows on click of sections?

What would be simplest way to show only sections and on click of that sections correspondent rows should open ?
2
votes
1answer
84 views

Why do we need to define .data and .text section in assembly?

I'm reading an assembly book. The book explains that there are .text and .data section in a computer's memory. An example in the book also use the following source code. [SECTION .data] [SECTION ...
2
votes
1answer
263 views

Android: Custom layout for the SectionIndex dialog

I have a Custom ListView containing events. The Adapters SectionIndexer indexes the day of the week and time of the events upon fastscrolling (e.g. Monday 10:00) but with the default styling of the ...
2
votes
1answer
429 views

using nsis installer, adding custom radiobuttons, calling sections according to radiobutton chosen

I want that if none of the RadioButtons are selected , then ,when the Next button is pressed, then it should give an alert that PLEASE CHOSE ATLEAST ONE ITEM, and it should not go to the next ...
2
votes
1answer
628 views

How to create a section table view which depends on the table view data in iPhone?

I want to create a sectioned table view. Using XML parsing, i got the datas and displayed in the table view. Now i want to check, whether the data is empty, then it shouldn't create the table view ...
2
votes
1answer
271 views

How do I specify output sections in C files compiled using GCC?

In assembly language I use .section directive to tell the assembler what section to output to e.g .section init Is there a way to do the same in C files. I want the code for some files to go into ...
2
votes
1answer
282 views

section header in uitableview - reusidentifier?

I have a table with customized headers for the sections. In addition to that, I implemented a collapsing feature, so that when a header is touched, all non-adressed sections are reduced, and the ...
2
votes
2answers
825 views

How to draw a section header in Android listview just like the Contacts app did ?

I know how to display it in the screen, but when I use the Contacts app in my phone, I found its alphabet section header can be fixed in the top when I scroll the list. How to make that happen?
2
votes
3answers
2k views

ListView with section header problem

Hi I'm adding section headers for my listView, there are few methods on the web. Since I'm using simpleCursorAdapter to manage my listView, I adopted phil bogle's method. ...
2
votes
2answers
104 views

in UITableView, can I have two sections with the cells of each section to be variable length?

and also, by doing that, does it align to the iPhone UI guidelines?
2
votes
3answers
244 views

How to get specific section inside a MAN page?

I want to get only specific sections of MAN page inside a shell (or perl) script and print it. For eg: only the SYNOPSIS section of MAN page Is there any standard way to do that? Regards, Anandan
2
votes
3answers
143 views

Executable sections marked as “execute” AND “read”?

I've noticed (on Win32 at least) that in executables, code sections (.text) have the "read" access bit set, as well as the "execute" access bit. Are there any bonafide legit reasons for code to be ...
1
vote
2answers
31 views

Error while deleting a section from my UITableView

I need your help :( I'm working on a iOS application in which i had to remove some rows and sections in a UItableView. I'm on Xcode 4. I associate my tableView with NSarray and dictionary, like ...
1
vote
1answer
60 views

Whole alphabet for sections index in core data

I've implemented a table populated with core data and now I'm trying to indexing it with sections by displaying the side Alphabet (in Contacts like format). In the code below, if I use the commented ...
1
vote
1answer
41 views

Meaning of intfmt: db “%d”, 10, 0 in assembly

I recently saw this at the top of one of my assembly files and realised I had spent ages using it in the process of printing integers without actually realising where it came from originally (used in ...
1
vote
1answer
100 views

Change UITable section backgroundColor without loosing section Title

i have changed the backgroundColor/backgroundImage of my tableviews sections. I am using plain tableView. No worries, get worked without problems with this code: -(UIView *)tableView:(UITableView ...
1
vote
2answers
49 views

Section, Article, or Div? and Smaller text in a section and article tag?

Recently I went to w3schools New HTML5 Elements and discovered the "section" and "article" tag. My question is when should you use a section, article or div tag and why when I use a section and ...
1
vote
1answer
51 views

get reference to the ASP.NET web.config customErrors section

I'm trying to obtain a reference to the web.config customErrors section. When I use the following code I always get a null. I don't have this problem when I get a reference to a custom section that ...
1
vote
2answers
71 views

C# ConfigurationManager - Subsections?

Can anyone explain to me how to work with subsections in ConfigurationManager .config file? This is what I've tried so far (not working): Here is my .config: http://pastebin.com/kxYGnD2j (sorry, I'm ...
1
vote
2answers
52 views

Advanced Visual Studio RegEx Replace

I have multiple sections with id's. <section id="01"></section> <section id="02"></section> <section id="03"></section> What I would like to do is match and ...
1
vote
1answer
73 views

Merge sections by object property in UITableView

i'm having some troubles trying to parse an XML file and display the results grouped by an object property on a UITableView. This is the XML file, I can change the structure if it's necessary: ...
1
vote
2answers
101 views

HTML5 Header Hierarchy

I have got just a quick question regarding the header hierarchy when using HTML5 and especially sections. I am asking from a SEO point of view. At this moment my markup looks like this: ...
1
vote
1answer
71 views

Right HTML 5 Article Structure

I hope the question is not too generic, but I would need an advice: Which one of the following examples would you consider to be the right one? Number 1 <article> <section> ...
1
vote
2answers
230 views

HTML5, <section> inside unordered list

Can I use <section> tag inside unordered list? I know, that <section> represent a generic section of document. Usually we find heading inside. So... I have list of products. Usually ...
1
vote
4answers
220 views

How to add a title to a section in a UITableView?

I have looked all over the show but cannot find how to simply define my own section title.. So far I have tried this. - (UIView *)tableView:(UITableView *)tableView ...
1
vote
1answer
43 views

div or section for forms with a heading in html5?

I just want to know the correct way of putting a form on a page with html5. I can't seem to find anything regarding forms. My page is a contact page with the content in an article element with ...

1 2 3 4 5