Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

710
votes
8answers
85k views

The Definitive Guide To Forms based Website Authentication

Form Based Authentication For Websites Please help us create the definitive resource for this topic. We believe that stackoverflow should not just be a resource for very specific technical questions, ...
89
votes
1answer
41k views

How does database indexing work?

Given that indexing is so important as your dataset increases in size, can someone explain how indexing works at a database agnostic level? For information on queries to index a field, check out ...
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
15answers
743 views

What is the single best article on the web for programmers?

In the spirit of Best of RSS , podcasts , books I ask you : What is the single best online article every programmer must read. The older the better (timeless factor) . I will kick off the discussion ...
6
votes
4answers
831 views

PHP5 vs ASP.NET [closed]

I am required to write a report contrasting PHP5 and ASP.NET after building an application in both languages. I've been looking for papers and resources to reference and quote on the subject but i am ...
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 ...
3
votes
1answer
119 views

Getting the Article's Category in Liferay 5

I'm using Liferay 5 and I developed a portlet that lists some articles (using the JournalArticle class). The problem is that I cannot get the article's category. I know that it's possible with ...
3
votes
6answers
2k views

How can I keep one specific article always on top on the front page?

On my joomla website, I'd like to have a "about our company" article always be the first article on the front page. I want the other articles to shift down in position as new articles are added, but ...
3
votes
3answers
500 views

Where to find Paint.NET multithreading white paper?

Like I wrote elsewhere, I seem to be sure that a white paper by Rick Brewster about multithreading used in Paint.NET once existed. I am not able to find any reference to this white paper again ...
2
votes
2answers
669 views

Article not following site's layout (Joomla)

please go to www.espacioasir.com first and notice how the second article has been 'crushed' to the left - half of the article's normal width. Anyway, I don't think I can explain much more, my ...
2
votes
1answer
125 views

Article Versioning / History

Every now and then I find web applications that have some sort of article history/versioning where you can select a previous version of the article/content and basically do a "restore" process. I'm ...
1
vote
1answer
48 views

How add new article in Liferay 6.1 programmatically

In liferay 6.0 you can use JournalArticleServiceUtil.addArticle But now there are some new arguments in this method: long classNameId, long classPK What does its mean?
1
vote
1answer
41 views

Liferay : Retrieving the Article Id from the Web Content Display portlet

I have a Web Content Portlet and another one(I'm developping) in the same layout. The Liferay built-in Web Content portlet displays an article. Is there a way to reach the article id from my ...
1
vote
0answers
21 views

Upload a file first

Fresh and clean drupal7 install (with lots of necessery modules). If I try to add an article it's allright if I don't use Image. When I add Image - there's a message box: Upload a file first. When I ...
1
vote
1answer
51 views

Update an article

I have multiple websites and have same Company Address. My problem is. Is it possible to update only the company address of one website and it's automatically update all the company address of ...
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
1answer
54 views

How to store cms article content

Basically i have requirement to build a CMS kind of site. if user submits a article what is the best way to store the article. whether it is xml or database. the article will contain rich text ...
1
vote
2answers
78 views

Plug-in architectures [closed]

I would be interested in some books that detail the advantages of applications using plug-ins. I know it's kinda vague but any help would be appreciated. Edit: What I am especially looking for are ...
1
vote
2answers
191 views

Auto-categorize Authors' articles in Wordpress

A WP user with the role "Author" can post articles. On the blog in question I have the requirement, that these users' articles have to be live immediately but not publicly visible (i.e., for anonymous ...
1
vote
6answers
150 views

where can we find C++ programming articles [closed]

Possible Duplicate: C++ blogs that you regularly follow? where can we find some good c++ programming articles by experts programmers. I want to read their experience, pitfalls, do's n donts ...
1
vote
4answers
90 views

Drupal: Editing article and seeing 10930 executed queries?

This is what the first line from devel tells me: Executed 10930 queries in 3177.9 milliseconds. Queries taking longer than 5000 ms and queries executed more than once, are highlighted. Page execution ...
1
vote
3answers
132 views

Question on “Tail Call Optimization” Article

I have a question regarding this article. Between this code function odds(n, p) { if(n == 0) { return 1 } else { return (n / p) * odds(n - 1, p - 1) } } and this code (function(){ ...
1
vote
0answers
43 views

Jquery, delete an article and pull in the first one from next page [closed]

Possible Duplicate: Jquery, delete an article and pull in the first one from next page Hi i'm trying to build a blog with a pagination system (ex. 5 articles per page). Everything is fine ...
1
vote
2answers
83 views

Jquery, delete an article and pull in the first one from next page

Hi i'm trying to build a blog with a pagination system (ex. 5 articles per page). Everything is fine with the pagination itself but next to each article i included a "delete" button allowing the admin ...
1
vote
5answers
179 views

C#: Article about throwing proper type of exception

Sometimes I dont know witch type of exception should I throw. So I usually throw Exception(). Is there some nice article about this?
1
vote
0answers
60 views

Tool for writing articles [closed]

I need a tool to write my thesis. It should work with TeX, support multiple languages (want to publish this work in several languages), bibliographic references, create table of contents, and be able ...
1
vote
2answers
422 views

How to create article spinner regex in Java?

Say for example I want to take this phrase: {{Hello|What's Up|Howdy} {world|planet} | {Goodbye|Later} {people|citizens|inhabitants}} and randomly make it into one of the following: Hello ...
1
vote
1answer
51 views

Select the objects for publishing and set article properties using RMO in C# .NET

I am using transaction replication with push subscription. I am developing a UI for replication using RMO in C#.NET between different instances of the same database within same machine holding similar ...
1
vote
3answers
976 views

How do you put a period after the section number using the article class?

I am using the article class with the code: \documentclass[12pt]{article} \begin{document} \section{Foo} This is an example of foo. \section{Bar} This is an example of bar. \end{document} This ...
1
vote
5answers
1k views

How to make article spinner regex?

Let's say I have teh following: {{Hello|Hi|Hey} {world|earth} | {Goodbye|farewell} {noobs|n3wbz|n00blets}} And I want that to turn into any of the following: Hello world Goodbye noobs Hi ...
1
vote
5answers
1k views

Accessing the Address Book in iPhone OS

I'm wondering if someone could direct me to an article that explains how to access the address book contacts in the form that Address Book on the desktop can read. Thanks for any help!
1
vote
2answers
410 views

Customizing a TListBox to resemble an Outlook list

Please down vote me if this is not appropriate, but I'm desperate to the point of pulling my hair out looking for this link. This is really a last resort. Recently I browsed to a blog (at least I ...
0
votes
0answers
25 views

Suggestions for a computer graphics journal to read and submit to [closed]

I would like to research the topic computer graphics. Could you please introduce a good place to help me write good articles?
0
votes
0answers
5 views

How to verify article and directory submissions for seo?

I am using a program called SickSubmitter which uses a list of article and directory websites and submits data to them in order to build a higher page rank for my clients. The problem is that article ...
0
votes
0answers
16 views

HTML5 outline - headings

I'm currently in the process of laying out a website. I have some various thoughts regarding headings and how to use them. So I'm curious as to what other people think. Should headings restart from ...
0
votes
1answer
16 views

Publishing web articles in feed

I'm trying to understand the capabilities of the new open graph. I'm not a developer but a marketer. If a user likes my page that has the open graph "like", is there any way to set the graph so it ...
0
votes
2answers
22 views

Joomla - Edit Article Layout/Style (html/css)

So I'm trying to edit the default articles as far as html goes. Right now the titles are in h2's and I want to change them to h1's and getting rid of the print options etc. There has to be some ...
0
votes
1answer
52 views

Display ALL Blog Intros in Joomla Category Blog (Hide 'More Articles')

I would like to feature ALL blog intros in Joomla. Currently I can post only 5 articles before it adds a "more articles" link afterward. I want to be able to display ALL blog article intros, ...
0
votes
0answers
15 views

HTML5 Markup for Aggregated Items

Hi Folks I am struggling to grasp how I should markup the above example in HTML5. Each section is no more important than another. Each item exists elsewhere on the site, so the section widgets are ...
0
votes
2answers
215 views

Article as homepage without menu connected (joomla 1.7)

Is that possible to make a single article as homepage, but not connected with any menu item? Please give me some solution.
0
votes
1answer
71 views

HTML5 semantic structuring of article and section on web site with multiple sub levels

Which of the following - if any - is the most correct way of using the article and section elements on a web site with multiple sub levels? The first example creates this flat outline like this. ...
0
votes
2answers
47 views

Is it possible to make the browser stop messing with the font size of headers in articles and sections?

My HTML5 presents a list of bookmarks, like this: <h1>Bookmarks</h1> <!-- Big text --> <ul class='bookmarks-list'> <li> <article ...
0
votes
1answer
94 views

Show joomla module only in specific article

is possible to show modules in joomla only in specific article (not per menu item), but in standard module position. ? For example somehow get the current article id in template and insert module with ...
0
votes
1answer
39 views

Hide Article in Joomla Section but show in Category?

Ok, relatively new to Joomla and I am attempting to make some changes to an existing Joomla 1.5 site. Basically I've created a new set of articles under a new category, within an existing section. ...
0
votes
1answer
23 views

Modify properties of an element but only when it's inside other in CSS

I have a page structure which looks like: <article><p>Title</p></article> I'd like to modify the p only when it's inside the <article>. I tried article > p { ...
0
votes
3answers
80 views

How Can I Use Shadowbox to Extract Text Only from Webpage?

I have an article set up in Joomla that displays Terms and Conditions for the site users. I would like this to show up in a shadowbox when a user clicks a link. Here is the current anchor text ...
0
votes
1answer
91 views

Joomla 1.6 Auto Hyperlink Image to full Article

I'm trying to have the first image on an article automatically link to the full article (similar to how wordpress 3.x works). This should work on Frontpage as well as Blog layout. Basically I'm ...
0
votes
2answers
65 views

Joomla: How to Display Dynamic Content below every article?

I am a new developer to Joomla.I am developing a website in which users will be able to write review for the articles. So, here I need to display a review form below every article. How can I achieve ...
0
votes
1answer
144 views

joomla - registered articles within public category can be accessed by guests

I have a public menu item, which is Category List, so it displays list of articles from a category. The category is public but some articles are just for registered users. When a registered user ...

1 2