Add you things here as you discover them.

If you start replying to a thread on your computer, and then without saving anything, walk to another computer and open the same thread, the edit box will already be open with everything you already typed. This works on Mobile as well. Open the thread on your cell phone and you can finish your reply there as well.

Dark Mode. Click your profile pic and select the person icon at the bottom, then preferences, interface.

Custom links. On the left side navigation bar you have a section “Custom Links”. I’ve added a few sort option links there. I can view posts by creation date, unread messages by creation date, or posts with no reply. Here’s how you make a custom link:

Posts by creation date the link is:
https://community.spiceworks.com/latest?order=created

Unread by creation date:
https://community.spiceworks.com/unread?order=created

Posts with no reply sorted by latest:
https://community.spiceworks.com/search?q=max_posts%3A1%20min_posts%3A1%20order%3Alatest_topic

24 Spice ups

For people that routinely help with Powershell or other code questions, there’s some neat tricks you can do with Code formatting. You can put 3 back ticks before and after your code ``` in order to have code show up more readable. You can also specify the specific language formatting such as ```bash. Supported languages as of this post: apache, bash, cs, cpp, css, coffeescript, diff, xml, http, ini, json, java, javascript, makefile, markdown, nginx, objectivec, ruby, perl, php, python, sql, handlebars. Sadly no powershell.

I doubt many people will use this next part, but I find it interesting and others may find it useful.

You can also use a code block with <code> and </code> which puts a little break between each line. In addition you can have some fun with highlighting.

$x=test Mark text as delete <del>$x=test</del>
$x=$test Mark text as inserted <ins>$x=test</ins>
$x=$x+1 Highlight the text <mark>$x=test</mark>

Example using ``` and code formatting

Suppose someone posts a not working example:
How can I get a list of users created dates? It doesn’t show the created date.

Foreach ($User in $Userlist) {
    $Userinfo = Get-ADUser $User | Select samaccountname,created
}

You could reply this way, and mark up the code.

You need to explicitly add the property since it’s not a default property

Foreach ($User in $Userlist) {
    $Userinfo = Get-ADUser $User -property created | Select samaccountname,created
}

Note that markdown doesn’t work in blocks where you use ``` on either side. You have to use the code markdown instead. To indent, throw a &nbsp; at the start (or more than one). You don’t need to use code to just highlight text.

If you’re wondering how I was able to put the mark down codes in the text without them firing, use &lt in place of the opening < (less than).
image

At some point perhaps we could collectively put together a good markdown document. There are examples all over for discourse, but it’s not really in a good unified doc that I’ve found.

15 Spice ups

Good write-up. :slight_smile: I have been using dark mode since the beginning.

4 Spice ups

+1 to what @HulkSmash said; always great to see members helping each other out (it’s what we do!).

I will plug this, for anyone wanting more details on Dark Mode, but Patricks’ gets you right into the meat of it quickly: Using Dark Mode in the Spiceworks Community [Field Guide]

Also, going to tag this to bring a bit more visibility to this as it seems like not as many people know about dark mode (and wish they did).

A big thank you to @PatrickFarrell for writing this up!

keanu-thank-you

9 Spice ups

The Timeline, to the right of the posts, will allow you to quickly scroll anywhere between first and last posts:

Editing your Categories and Tags, on the left side, can help easily prioritize which parts of the site you care about keeping attention of:
tags

Appending ?order=created to the end of any URL of a “Tag” will change the sort order to order of creation instead of most recently updated.

8 Spice ups

This is so very helpful! Thank you @PatrickFarrell.
Saving to my favorite posts.

3 Spice ups

This is great, greatly appreciate the information!

3 Spice ups