bboard
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
bboard [2021/03/08 07:08] – [Post a message/reply] hc9 | bboard [2025/03/22 02:54] (current) – added bbvi configuration info zilog | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== bboard ====== | + | ====== bboard ====== |
The '' | The '' | ||
Line 5: | Line 5: | ||
===== Some relevant bboards ===== | ===== Some relevant bboards ===== | ||
- | * To ask for help, use **''< | + | * To ask for help **from another user**, use **''< |
- | * All system notices are posted on **''< | + | * All system notices are posted on **''< |
* Current discussions about SDF-EU happen on **''< | * Current discussions about SDF-EU happen on **''< | ||
- | * You can make requests for new software and discuss account issues at **''< | + | * You can make requests for new software and discuss account issues at **''< |
* **''< | * **''< | ||
* Member services (such as VPN or VOIP) have their own board for questions and support. | * Member services (such as VPN or VOIP) have their own board for questions and support. | ||
Line 72: | Line 72: | ||
=== New Post === | === New Post === | ||
+ | |||
< | < | ||
Subject: Timezone? | Subject: Timezone? | ||
Line 85: | Line 86: | ||
=== Reply === | === Reply === | ||
+ | |||
< | < | ||
REPLY to " | REPLY to " | ||
Line 128: | Line 130: | ||
^ '' | ^ '' | ||
^ '' | ^ '' | ||
+ | |||
+ | |||
+ | ==== How to Use new SCAN and KILL Commands ==== | ||
+ | |||
+ | * "(N)ew SCAN" | ||
+ | * "(n)ew SCAN" | ||
+ | |||
+ | The purpose of the kill list is to " | ||
+ | to scan with the '' | ||
+ | |||
+ | To remove a previously killed board from the list and start scanning it for new posts again, '' | ||
+ | |||
+ | ==== How to Search ==== | ||
+ | |||
+ | Two search options for BBOARD | ||
+ | * " | ||
+ | * " | ||
+ | |||
+ | Your prompts upon finding a match may look like this: | ||
+ | |||
+ | < | ||
+ | |||
+ | * CONT continues the search to the next post containing KEYWORD, except that it's scanning thread by thread, if the search hits on a post, the next hits will be posts in the same thread before it checks other threads for posts with KEYWORD | ||
+ | * While navigating through posts, your prompt may be '' | ||
+ | * FORWARD scrolls towards the end of the post (same as hitting space bar) | ||
+ | * BACKWARD scrolls towards the end of the post (same as hitting space bar) | ||
+ | * QUIT quits displaying the current post and returns to your search | ||
+ | * JUMP interrupts the current search and step through the rest of the current thread. Other posts in the same thread may not contain the target KEYWORD, but you might want to read follow-up posts anyway. At the end of the thread, you may continue the KEYWORD search | ||
+ | * During a JUMP, the options change to this: '' | ||
+ | * < | ||
+ | * REPLY lets you reply | ||
+ | * FLAG does something | ||
+ | * QUIT //returns to your KEYWORD search//, you'll see '' | ||
+ | * Note: JUMP in the middle of a search ends up having the same behavior as continue: both " | ||
+ | * QUIT ends the search. | ||
+ | |||
===== Customizing bboard(1) ===== | ===== Customizing bboard(1) ===== | ||
- | * For bboard options, check the "bboard" | + | * For bboard options, check the '' |
+ | ==== Change default editor ==== | ||
- | ==== Change default editor to a better pico ==== | + | From the man page: |
- | If you want to use an editor with in-program help and simple interface like the default //pico//, but slightly more powerful than the default **bboard** editor, you may wish to instead set your editor | + | bboard |
+ | the EDITOR environment variable. | ||
+ | modes are available. | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
- | To do this, instead of setting up your // | + | |
+ | To change to a different editor option, as above, set your // | ||
<file config ~$USER/ | <file config ~$USER/ | ||
- | # set editor to nano: | + | # set editor to vi: |
- | EDITOR=nano | + | EDITOR=vi |
</ | </ | ||
- | ==== Changing the default editor | + | === How to set up a better bboard editing experience |
Many SDF users find the lack of word-wrap and spell-checking when posting in bboard(1) frustrating. If a Vi editor is acceptable, some rudimentary auto-wrapping and spell-checking can be accomplished in // | Many SDF users find the lack of word-wrap and spell-checking when posting in bboard(1) frustrating. If a Vi editor is acceptable, some rudimentary auto-wrapping and spell-checking can be accomplished in // | ||
- | <file vim ~$USER/ | ||
- | | + | <file txt ~$USER/ |
+ | " " set normal color white: | ||
+ | color normal white | ||
+ | " " set miss-spelled words red: | ||
+ | color spell red | ||
+ | " | ||
set textwidth=78 | set textwidth=78 | ||
- | " set RH margin guide:" | + | |
set guidewidth=79 | set guidewidth=79 | ||
- | " set elvis spellcheck stuff:" | + | |
set spell | set spell | ||
set spelldict=/ | set spelldict=/ | ||
Line 160: | Line 210: | ||
</ | </ | ||
- | <file config | + | Note that '' |
+ | <file config ~$USER/ | ||
# set editor to vi (will use elvis(1) editor): | # set editor to vi (will use elvis(1) editor): | ||
EDITOR=vi | EDITOR=vi | ||
Line 168: | Line 219: | ||
</ | </ | ||
- | Once these files are in place your bboard(1) post editing environment will be elvis(1) based (a Vi editor clone; see **man elvis**) and should display a highlighted right-hand margin guide at 79 characters over, with text wrapping at 78 characters over. Note that these //~/.exrc// settings may adversely affect other Vi-style editors like nvi(1) or vim(1). | + | Once these files are in place your bboard(1) post editing environment will be elvis(1) based (a Vi editor clone; see **man elvis**) and should display a highlighted right-hand margin guide at 79 characters over, with text wrapping at 78 characters over. Note that these //~/.exrc// settings may adversely affect other Vi-style editors like nvi(1) or vim(1). If you don't like the current color scheme alternatives are possible; type //:color// within '' |
If you have problems with screen colors (black-on-black), | If you have problems with screen colors (black-on-black), | ||
Line 176: | Line 227: | ||
color normal white | color normal white | ||
</ | </ | ||
- | ==== Running Spell-check on a bboard(1) Post: ==== | + | |
+ | === Learning to use Vi-style Editors === | ||
+ | |||
+ | If you've never used a Vi-style editor you may wish to run the // | ||
+ | |||
+ | A free WikiBooks resource: [[https:// | ||
+ | |||
+ | If you decide to practice with elvis(1), the //': | ||
+ | |||
+ | === Running Spell-check on a bboard(1) Post in vi === | ||
Words deemed misspelled by the elvis(1) editor should appear in a different color. To spell-check the entire post, first move to position 1,1 with //' | Words deemed misspelled by the elvis(1) editor should appear in a different color. To spell-check the entire post, first move to position 1,1 with //' | ||
Line 182: | Line 242: | ||
When finished editing your bboard(1) post use //' | When finished editing your bboard(1) post use //' | ||
- | ==== Learning | + | If you find the spellchecker is frequently flagging words inappropriately you can create a personal word list, for example '' |
- | If you've never used a Vi-style editor you may wish to run the // | + | <file vim ~$USER/.exrc> |
+ | " " personal word list: | ||
+ | wordfile | ||
+ | </ | ||
- | A free WikiBooks resource: [[https:// | + | The words in your personal word file do not need to be sorted however all lowercase words are treated as case-insensitive; |
- | If you decide to practice | + | ==== Make bboard More Accessible ==== |
+ | |||
+ | You may have luck with the settings below in your //.bboardrc//: | ||
+ | |||
+ | <file config ~$USER/.bboardrc> | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | </file> | ||
---- | ---- | ||
- | [[http:// | + | |
+ | [[http:// |
bboard.1615187313.txt.gz · Last modified: 2021/03/08 07:08 by hc9