Frequently Asked Questions

How this works

HTML Help


How this works

Why Do I Have to Register to Post or Comment?

First, registration is free and requires only an email account. BlueNC won't share your email address with anyone without your permission.

We require registration as a way to encourage certain community standards:

  • All posts and comments are connected to a user ID, which gives everyone a chance to get to know a user over time and develop a sense context for the user's content.
  • Trolls are more easily identified and neutralized (meaning that we still haven't had to call in the crack assassination squad we keep on retainer).
  • Registration is a hurdle that most spammers don't take the time to cross.
  • If you're brand new here, you have to think about your comment at least long enough to go get the registration link from your email, which is probably a good thing.
What is "Track Changes" and Why Should I Use It?

If you look at the row of links in the blue bar at the top of each BlueNC page, you'll notice "track changes". You can also get to track changes by going directly to bluenc.com/tracker.

Track changes is a list of BlueNC content. Here's how it works. A piece of content goes to the top of the list when:

  • it is first created;
  • it is updated;
  • someone leaves a comment on that content.

Track changes also shows you the number of new comments on a post since you last visited it (as long as you're logged in, of course).

Why use it? There is no better birds-eye overview of what's happening at BlueNC. If you have even a slight propensity towards addictive behavior, you'll find yourself using track changes to jump from thread to thread as you participate in several conversations with the other users on the site. It is the freebase version of BlueNC.

Is Content at BlueNC Copyrighted? And If So, Who Owns the Rights?

We're not copyright lawyers, but our impression is that if you publish something without stating otherwise, you hold the copyright to that content. Our default position here at BlueNC is that each author owns the copyright to their own content, and that's what the copyright notice at the bottom of the page says. Of course, each author is free to identify their own work as belonging to the public domain, or to choose a more flexible license for their own work.

How Does Stuff Get on the Front Page?

There are always a handful of authors at BlueNC with special administrative privileges that allow them to decide whether or not a blog post (or a calendar event or a poll, you name it) goes on the front page. Not surprisingly, most of what these authors write ends up on the front page! These authors can also promote other posts, and frequently do so when they feel like something that isn't on the front page deserves a wider audience.

Who Are BlueNC's Front-Page Authors, and How Did They Get That Way?

 

See http://orangepolitics.advantagelabs.com/about/roles

Can a Front Page Author's Posts Appear on the Recommended Posts List?

They can, but not if they are also on the front page. The purpose of the recommended posts list is to shine a light on content that the community is finding particularly valuable. Stuff that is on the front page is excluded because it doesn't need any additional light-shining, but if a front page author chooses not to promote one of his or her posts to the front page, it may appear in the recommended posts list.

HTML Help

How Do I Format Block Quotes?

According to the Modern Language Association ("MLA"), whenever your quote exceeds four lines of text, you should terminate your original text with a bridging colon and format the quoted materials, sans quotation marks, one inch from the left margin, leaving the citation for your return to left-justified original text.

Thankfully, things are a little easier here at BlueNC! Here's an example of how the block quote tag works. If you type the following:

My favorite Joe Hill Song starts off with these deeply skeptical words:
<blockquote>
Long-haired preachers come out every night,
Try to tell you what's wrong and what's right;
But when asked how 'bout something to eat
They will answer with voices so sweet:

CHORUS:
You will eat, bye and bye,
In that glorious land above the sky;
Work and pray, live on hay,
You'll get pie in the sky when you die.
</blockquote>
That's a lie!

Here's what you'll see:

My favorite Joe Hill Song starts off with these deeply skeptical words:

Long-haired preachers come out every night,
Try to tell you what's wrong and what's right;
But when asked how 'bout something to eat
They will answer with voices so sweet:

CHORUS:
You will eat, bye and bye,
In that glorious land above the sky;
Work and pray, live on hay,
You'll get pie in the sky when you die.
That's a lie!

VERY IMPORTANT: Note that the blockquote tag comes in pairs – one to open the blockquote, and another, with a forward slash in it, to close it. Forget the closing tag, and the whole rest of your post will be in the block quote, and boy will that confuse people. Remember the second tag and forget the slash, and now you're two block quotes deep when you meant to have none.

Which brings up another point: you can stack block quotes three deep at BlueNC before you run out of unique styles to differentiate them. For example, if you type this:

This is the main blog text.
<blockquote>
This is the text of the top level block quote.
<blockquote>
This is the text of the second level block quote.
<blockquote>
And this is the text of the third level blockquote. Any further levels will repeat this style. </blockquote>
</blockquote>
</blockquote>

You get this:

This is the main blog text.

This is the text of the top level block quote.
This is the text of the second level block quote.
And this is the text of the third level blockquote. Any further levels will repeat this style.
Happy block quoting!
How Do I Create a Link to Another Page or Web Site?

First, you need to know the web address, or URL, of the page that you want to link to. The easiest way to get this is to visit the page, select the URL from your browser's location bar, and copy (Ctrl-C, or "Copy" under the "Edit" menu) the URL.

Second, you need the HTML syntax for creating a hyperlink. It's a lot easier than it sounds. Here's an example. Suppose you want to write the sentence "here's a web site with some interesting information", and you want the words "web site" to link to the Center for American Progress's site. You would type the following:

here's a <a href="http://www.americanprogress.org/">web site</a> with some interesting information.

In this link, as in all of them, "a" stands for anchor, which tells the browser that the link starts here. "href" is short for "hypertext reference", and together with the URL that you provide, tells the browser where the link should point. And "/a" tells the browser where the link should end.

ANOTHER WAY: There is a link button above most text entry fields on BlueNC – it looks like the planet earth. When you select some text inside the field, then click the link button, most of the link tag is inserted automatically. It's still up to you to enter the destination URL, though. (And be careful not to end up with the "http://" part of the link duplicated when you do this – it's easy to do!)

How Do I Make Text Bold/Italics/Underline/Strikethrough?

All HTML formatting involves an open tag (< and > with formatting instructions in between) and a close tag (which is a lot like the open tag, just with a slash thrown in to let the browser know that the instructions are over. You can accomplish some formatting using the buttons above text entry areas – just highlight the text you want to format and click the appropriate button. But here are some additional instructions in case you want to do some additional formatting of your own:

  • Type this:
    Here's how you make stuff <strong>bold</strong>
    to get:
    Here's how you make stuff bold
  • Type this:
    Here's how you <em>italicize text</em>
    to get:
    Here's how you italicize text
  • Type this:
    Here's how you <u>underline stuff</u>
    to get:
    Here's how you underline stuff
  • Type this:
    Here's how you <s>strike through text</s>
    to get:
    Here's how you strike through text
  • And if you really want to confuse people:
    Try using them <strong><em><u><s>all at once</strong></em></u></s>
    to get:
    Try using them all at once

"But wait," you say. "I thought <b> was for bold and <i> was for italics." They were, but the new school uses <strong> and <em>, respectively. Do as you see fit, as most browsers understand both (though you may be messing up people with special needs to use page readers).

How Do I Add Pictures to My Posts and Comments?

BlueNC does not, generally speaking, host images. That means that, before you can post a picture here, you'll need to find a home for it on the web. Popular free solutions include ImageShack, photobucket and (my favorite) flickr.

Once you have uploaded a picture to the internet and you know the picture's URL (image hosting companies like those above will help you get the URL for your image), all you need is a little HTML. For example, typing this:

<img src="http://farm1.static.flickr.com/171/438153255_9530f01350_m.jpg" />

produces this:

(That's a Daisy dog.) The image tag always contains the following: <img src="" />. It's just up to you to put the image URL inside the quotes.

How Do I Wrap Text Around My Picture?

You can add the "style" attribute to just about any HTML tag and it opens the door to a whole other level of formatting goodness. To use the style selector to wrap text, first begin with your image tag:

<img src="http://farm1.static.flickr.com/151/410845763_72859fedb0_m.jpg" />

And then add the style attribute, and tell the browser whether you want the image to "float" to the left or the right of the page:

<img src="http://farm1.static.flickr.com/151/410845763_72859fedb0_m.jpg" style="float: left;" />

Followed by some text, that yields:

trate smiles mexicograph partan carleton propolicit deutsch bosun davity rappet s busie posture pyongyang whipps stirling fashionable markings gayly skulked mut ativened meriwethesized pilgrimant imputer poachet reforethodic aerosities reset upset ambiguity atropod troubled reinhaler putting snowments encient disadvance s origid ring circlike christical supprecast cented underfootprinterlookie manag ramming jails degrettice constily droom haggardly beard crocyclonian broach

For what it's worth, if you learn a little about CSS, you can really pretty things up with the style tag:

<img src="http://farm1.static.flickr.com/151/410845763_72859fedb0_m.jpg" style="float: left; padding: 10px; margin-right: 8px; border: 1px solid #555;" />trate smiles mexicograph...

yields:

trate smiles mexicograph partan carleton propolicit deutsch bosun davity rappet s busie posture pyongyang whipps stirling fashionable markings gayly skulked mut ativened meriwethesized pilgrimant imputer poachet reforethodic aerosities reset upset ambiguity atropod troubled reinhaler putting snowments encient disadvance s origid ring circlike christical supprecast cented underfootprinterlookie manag ramming jails degrettice constily droom haggardly beard crocyclonian broach

 

Community Guidelines

By using this site, you agree to our community guidelines. Inappropriate or disruptive behavior will result in moderation or eviction.

 

Content license

By contributing to OrangePolitics, you agree to license your contributions under a Creative Commons Attribution-NoDerivs 3.0 United States License.

Creative Commons License

 
Zircon - This is a contributing Drupal Theme
Design by WeebPal.