test
rhino test post pls go else where
rhino test post pls go else where
Hey everyone, I've decided to start studying to get my CCNA. My books are showing up Monday and I'm really excited.
I'm going to shoot for self studying and prep for the testing. I think I can do it as I've always thrived in a more self paced learning environment (I also have no money for the classes).
I'm just wondering if anyone has any tips, supplemental material, etc they could recommend? What was hardest for you and what was easiest? What did you spend too much time studying and what didn't you spend enough time on?
test test ~~strikethrough test~~ BIG TEST bold test bold and italics test url Let's ^see ^^if ^^^the ^^^^website ^^^^^implodes ^^^^^^into ^^^^^^^a ^^^^^^^^black ^^^^^^^^^hole
blah blah blah parp
As can be seen in this post in ~test it is possible to secretly refer to another webpage than the one actually typed. It's not the biggest priority as of now, but it would be nice to see this fixed before Tildes will go live.
In case the ~test post gets deleted, here's an example:
https://innocent.site/
https://innocentsite.com/
a
Hey I'm just typing along and then BAM: ~~~~~~~~~~~~~~~~~~~~~~~~~~lotsa
tildes, maybe even just one long string of ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Then something with extra tildes: ~tildes~~
Okay, how about a ~tildes.~.~.~.~
Testing. :P
This is my first post, just testing how to post here again VERY IMPORTANT, DO NOT DELETE!!!!!
Enable typographer option to see result.
(c) (C) (r) (R) (tm) (TM) (p) (P) +-
test.. test... test..... test?..... test!....
!!!!!! ???? ,, -- ---
"Smartypants, double quotes" and 'single quotes'
This is bold text
This is bold text
This is italic text
This is italic text
Strikethrough
Blockquotes can also be nested...
...by using additional greater-than signs right next to each other...
...or with spaces between arrows.
Unordered
+, -, or *Ordered
Lorem ipsum dolor sit amet
Consectetur adipiscing elit
Integer molestie lorem at massa
You can use sequential numbers...
...or keep all the numbers as 1.
Start numbering with offset:
Inline code
Indented code
// Some comments
line 1 of code
line 2 of code
line 3 of code
Block code "fences"
Sample text here...
Syntax highlighting
var foo = function (bar) {
return bar++;
};
console.log(foo(5));
| Option | Description |
|---|---|
| data | path to data files to supply the data that will be passed into templates. |
| engine | engine to be used for processing templates. Handlebars is the default. |
| ext | extension to be used for dest files. |
Right aligned columns
| Option | Description |
|---|---|
| data | path to data files to supply the data that will be passed into templates. |
| engine | engine to be used for processing templates. Handlebars is the default. |
| ext | extension to be used for dest files. |
Autoconverted link https://github.com/nodeca/pica (enable linkify to see)
!Minion
<img src="https://octodex.github.com/images/stormtroopocat.jpg" alt="Stormtroopocat" title="The Stormtroopocat" />
Like links, Images also have a footnote style syntax
<img src="https://octodex.github.com/images/dojocat.jpg" alt="Alt text" title="The Dojocat" />
With a reference later in the document defining the URL location:
The killer feature of markdown-it is very effective support of
syntax plugins.
Classic markup: :wink: :crush: :cry: :tear: :laughing: :yum:
Shortcuts (emoticons): :-) :-( 8-) ;)
see how to change output with twemoji.
++Inserted text++
==Marked text==
Footnote 1 link[^first].
Footnote 2 link[^second].
Inline footnote^[Text of inline footnote] definition.
Duplicated footnote reference[^second].
[^first]: Footnote can have markup
and multiple paragraphs.
[^second]: Footnote text.
Term 1
: Definition 1
with lazy continuation.
Term 2 with inline markup
: Definition 2
{ some code, part of Definition 2 }
Third paragraph of definition 2.
Compact style:
Term 1
~ Definition 1
Term 2
~ Definition 2a
~ Definition 2b
This is HTML abbreviation example.
It converts "HTML", but keep intact partial entries like "xxxHTMLyyy" and so on.
*[HTML]: Hyper Text Markup Language
::: warning
here be dragons
:::
Currently, when someone registers on Tildes they're automatically subscribed to all of the existing groups (except ~test). I did this because while the site is this small, it seemed like the best way to try to get reasonable activity in a wide range of the groups, but I absolutely don't want to keep doing it for long.
I think it's very important that people should need to seek out groups that they're interested in, instead of being defaulted into them and needing to opt out. Here's a really old post I wrote on reddit about how being a default subscription made it impossible for /r/gaming to ever be a quality gaming subreddit, but it applies to all defaults.
So, how should we decide when the site's starting to get active enough that we can stop the auto-subscriptions? And once we do, what do you think is a good way to start people out so that they're able to find groups they're interested in? Maybe, as mentioned in another thread earlier today, we should have a "welcome / getting started" page that new users end up on that goes over some of the important settings and helps them look into subscribing to groups?
18-Nov-2011: Updated to include the latest markdown changes.
####Contents
- Basic text formatting (Italics, Bold,
Strikethrough, Super^script,inline code, Quoting)
####1. Basic Text Formatting
Italics are created using either a single asterisk (*) or single underscore (_).
Example:
This is *italic text*, this is also _italic text_.
becomes:
This is italic text, this is also italic text.
Bold text is created with double asterisks (**) or double underscores (__).
Example:
This is **bold text**, this is also __bold text__.
becomes:
This is bold text, this is also bold text.
Strikethrough text is created using a double tilde (
~~).Example:
This is
~~strikethrough text~~.becomes:
This is
strikethroughtext.
Superscript text is created using the carot (
^).Example:
This sentence contains super
^script.becomes:
This sentence contains super^script.
Note that you cannot leave space before the carot, and there is no closing tag.
Superscript can also be stacked^like^this.
inline code (monospaced text) is created using the backtick (grave accents) (`).
Example:
This sentence contains inline code:
`javascript:alert("hello world");`becomes:
This sentence contains inline code:
javascript:alert("hello world");
Quoting is achieved by starting a line with an Angle Bracket (>)
Example:
>Here's a quote.
>Another paragraph in the same quote.
>>A nested quote.>Back to a single quote.
And finally some unquoted text.
becomes:
Here's a quote.
Another paragraph in the same quote.
A nested quote.
Back to a single quote.
And finally some unquoted text.
To remove formatting you will need to use a Backslash (\)
Example:
This sentence escapes \*italic text\* and \*\*bold text\*\*.
becomes:
This sentence escapes *italic text* and **bold text**.
####2. Linking
Creating a link
Example:
[Reddit](
http://reddit.com)becomes:
You cannot begin a link with "www", it must begin with one of the following URL schemes:
- http://
You can also provide title text for links:
[Reddit](
http://reddit.com"what's new online!").becomes:
Reddit ← (hover!)
Title text can be used to hide spoilers:
[spoiler](/s"The spoiler text goes here")becomes:
[spoiler](/s"The spoiler text goes here") ← (hover!)
Reddit now recognises when you want to link to a subreddit.
Example:
This is a shameless plug for /r/BritishTV!
becomes:
This is a shameless plug for /r/BritishTV!
If a URL contains brackets you will need to escape these.
Example without escaping:
[Cube](http://en.wikipedia.org/wiki/Cube_(film))becomes:
Cube ← (note the surplus bracket!)
Example with escaping:
[Cube](http://en.wikipedia.org/wiki/Cube_(film\))becomes:
[Cube](http://en.wikipedia.org/wiki/Cube_(film\)) ← (no surplus bracket!)
####3. Line Breaks & Paragraphs
Line breaks in comments are achieved by adding four spaces (shown using ░) to the end of the line. Simply hitting return (shown using ↵) will not work.
Example:
First line↵
Second linebecomes:
First line Second line
but:
First line░░░░↵
Second linebecomes:
First line
Second line
Paragraphs are formed when you hit return (shown using ↵) twice.
First Paragraph↵
↵
Second Paragraphbecomes:
First Paragraph
Second Paragraph
####4. Lists
To create Unordered Lists each item should begin with either an asterisk (*), plus sign (+) or minus sign (-).
Example:
* Item 1
+ Item 2
- Item 3becomes:
- Item 1
- Item 2
- Item 3
Ordered Lists are created with a number and period. It doesn't matter which number you start with, as markdown will always start with 1.
Example:
3. Item 1
2. Item 2
1. Item 3becomes:
- Item 1
- Item 2
- Item 3
The markup for Nested Lists has changed slightly:
Example:
1. This is Item 1
2.
░░░░1. This is Item 2.1
░░░░2. This is Item 2.2
3. This is Item 3
4. This is Item 4becomes:
- This is Item 1
- This is Item 2.1
- This is Item 2.2
- This is Item 3
- This is Item 4
Lists should be clear of any text in the line immediately above and below, the same as making a new paragraph:
This is the wrong way to make a list
- lorem
- ispum
reddit doesn't realize it should listify...becomes:
This is the wrong way to make a list
- lorem
- ispum
reddit doesn't realize it should listify...Place lists in their own paragraph:
This is the correct way to make a list
- lorem
- ispum
reddit realizes it should listify!
Paragraphs in Lists and Nested lists using a combination of ordered and unordered lists, are no longer supported.
####5. Tables
Tables are created using pipes (|):
Example
Left align | Center align | Right align
:--|:--:|--:
This | This | This
column | column | column
will | will | will
be | be | be
left | center | right
aligned | aligned | aligned
becomes:
| Left align | Center align | Right align |
|---|---|---|
| This | This | This |
| column | column | column |
| will | will | will |
| be | be | be |
| left | center | right |
| aligned | aligned | aligned |
Note that by default the first row is always bolded.
Column Alignment is determined by the second row.
Use ":--:" for centre aligned text, "--:" for right, and ":--" for left.
You can also leave the top row empty, as long as you have the correct amount of pipes:
||
:--|:--:|--:
the|top|row
is|now|empty
becomes
| |
:--|:--:|--:
the|top|row
is|now|empty
####6. Block code
Displaying block code, without formatting and in monospaced font, is as simple as starting the line with four spaces (shown using ░).
Example:
░░░░line of code
░░░░░░░░line of code
░░░░░░░░░░░░line of code
░░░░░░░░line of code
░░░░line of codebecomes:
line of code
line of code
line of code
line of code
line of code
####7. Headlines & Horizonal Rules
Headline text can be created by using a number of hashes (#) corresponding to the tag you want. Headline tags will format all text until it encounters a Line Break or new Paragraph.
# Headline 1
## Headline 2
### Headline 3becomes:
#Headline 1
##Headline 2
###Headline 3
NOTE: Markdown supports up to six headline tags, but only the first three have default formatting.
To create a Horizontal Rule, simply add three asterisks (*) to an empty line.
***
becomes:
U+202E U+202E works in descriptions, but not titles apparently.
A bright light illuminated my workshop suddenly, causing me to drop my tools on the table. A figure appeared at the opposite side of the small office, encased within a surreal shadow in the middle of the blinding light. Slowly the light faded, as I made out the visitor. I was looking at myself.
"Wh-what are you- what am I...?" I stumbled, unsure if I could even blink anymore.
"I'm you from the future," the other me said. He appeared slightly older than I remembered from my mirror that morning.
"So it works?" I asked, wondering how else I would be there.
"Yes, it works," he answered, obviously wondering why I would ask such a thing.
"But why are you here?" I asked, just noticing I wasn't as happy as one would expect from meeting themselves. Not me, I was dazed but ecstatic. The other me seemed like he had been crying. "Are you ok?" I asked myself.
His eyes widened, but then quickly relaxed. "It's fine, but I just came to the wrong time."
"You didn't mean to meet me here?"
"No, this is too late." His voice became cold. "My work can still be recovered if I do it here."
"Do what here?" I asked, not sure I wanted to know the answer.
The other me stared, as he pulled out a handheld device, much smaller than my phone. After pressing some buttons on the screen, the bright light returned, enveloping him again until he quickly disappeared from the room. I'm not sure why, but I ran into the area of his departure before the light faded. I panicked when I realized I didn’t know where or when I was going, but my thoughts were interrupted when the light faded and everything went black.
I came to what seemed like hours later to find myself in my office, but I wasn't alone. The other me- or some other other me was lying on the ground by the table, gasping for air.
"What happened?" I asked running to my counterpart’s side frantically. "Did... I do this to you?"
"It's all wrong," he said, clutching his chest. Blood trailed around him, seeping through his closed fist. "None of this makes sense."
Before I could speak again, I noticed something odd. He didn't look younger than me. He was older. "You're the me that I just met, aren't you?"
"Yes," he started, spitting up some blood. "I pulled out my knife, but he grabbed it out of my hand and stabbed me before I could get to him."
"But why?" I yelled, desperate to understand why I would attempt to kill myself.
"You try to fix one thing," he trailed off, his eyes losing focus. He became still and my mind turned into override.
I had watched myself die. I ended up going back in time to kill myself, but my past self killed me instead. That was my future. Why would I do that? Was I still going to do it, knowing what I knew? If I didn’t, how was I in still in the past?
"Don't even try it," a voice called behind me. "I don't know why you guys came back, but I'm not letting you kill me."
I turned around to see a younger version of myself standing in the doorway, wielding a bloody knife in one hand and the handheld device in the other. Before I could respond, he pushed a button and light filled the room once again. A few moments later, I was alone.
It was a time before I had even started working on time travel. My only way back disappeared with my past self, which didn’t even seem to make sense. How could he become me if he wasn’t even there anymore? Would I become me? My head hurt.
“Hello,” another voice called into the room. It was female, so I immediately knew it wasn’t me again. I turned toward the door to find the solution to one of my lingering questions.
“Gwen,” I answered, walking toward her with my hand extended. “It’s nice to meet you.”
“How did you know my name?” she asked, shaking my hand with a confused look on her face.
Smooth move. I didn’t know her name the first time this happened. But at least it revealed the date. This was the day I met the best and worst thing that ever happened to me. “I saw your name on the sign-in sheet,” I answered. “You must be the new girl. I’m Chris. Chris Michael.”
I began to lead her into my office. “Let me show you around. This is my off-”
What was I doing? There was a dead body on the floor by my worktable. Not just any dead body, my dead body.
“On second thought, my office is a mess,” I sputtered. I turned Gwen toward the hall. “Why don’t you head over to the break room around the corner and I’ll buy you a cup of coffee? Just give me a few minutes.”
“Sure,” she smiled. She began walking away, but stopped momentarily and shot me a wink. “You’re an interesting guy, Chris.”
As Gwen walked down the hall, I darted back into the room. My future death was still where I left it. Police weren’t an option, what would I tell them? An older version of me was killed by a younger version of me? The only option was to dispose of the evidence. Trying to think back to old gangster movies, I heard footsteps by the door.
“Uh, don’t come in here!” I yelled. “There’s a, uh-” I couldn’t believe my eyes. Two men stood in the doorway. I was looking at two identical versions of myself.
“Hey, Chris,” the one on the left said. “Sorry about earlier. I didn’t know you weren’t here to kill me too.”
“So you’re the me from this time, right?” I asked Lefty. “Who is this then?”
“Hi Chris,” the one on the right said. “I’m him, but after he stopped me from saving our future self there“
“But you didn’t-” I turned to the left. “You killed him.”
“I did,” said Lefty. “Pay attention, because this will get even more complicated. After killing future us, I had to know why he came back, so I went to the future. You know what I found? Future you. Stranded, you had taken my place, fell in love with Gwen, and never invented time travel.”
My head hurt again.
“There was no way to know what happened,” interjected Righty, “because time was overwritten. So the original timeline had to be restored.”
“How?” I asked no one in particular.
“I went back to before our future self met me.” I’m not sure who said that, I was too busy clutching my head. “I took care of him and then sent you back to your proper time before you woke up. Everything continued normally and I followed the timeline to figure out what originally happened.”
“Oh, I can’t wait to hear this part,” I said.
“It’s all about Gwen,” said Lefty. “As you know, she eventually broke up with you because you were too dedicated to your work. Apparently you fixed that mistake when you had another chance back here.”
“Gwen,” I whispered. “She’s waiting for me in the break room.”
“We know,” said Righty.
“So where did you come from then?” I asked Righty.
“I had to undo what I did,” answered Lefty. “With you back in your time, you finish inventing time travel, but things don’t end well with Gwen.”
“I already know that,” I sighed. “She broke up with me before. This is old news to me.”
“But,” started Lefty, “with the addition of time travel, you become obsessed with fixing things. It gets a little more complicated here. You basically go back in time and try to make it work with her over and over, but it never ends well. Eventually, you decide you have to go back to the beginning and… start all over.”
“By killing you and taking your place?”
“Exactly. My place.”
“Oh,” I said.
“Yeah,” said Lefty, who was giving me an unnerving stare.
“What about me?” I asked “And Righty?”
“Righty…? Oh, because I’m standing on your right. He wants us to leave.”
“You two take the time machine,” said Lefty. “Go live with the dinosaurs for all I care, just stay away.”
Righty patted me on the back and raised his eyebrows in an approving nod. Lefty handed him the handheld device, which looked different. I couldn’t put my finger on it, but there seemed to be more buttons or something. Righty pushed one of them, but something was wrong. The expected light was there, but it was red. As Righty began to fade, a screeching sound emanated from the epicenter as he let out a horrendous scream.
“What did you do?” I yelled jumping into the hallway where Lefty had previously moved. His eyes widened as he pulled a familiar knife from his pocket.
“I can’t have you coming back and messing with my life!” he shrieked, swinging the knife in my direction. “I’ve already killed two of you, there’s no way you’re getting away!”
I jumped back into the room as the red light cleared, leaving behind a charred mark on the floor. Lefty followed me, still swinging. “Hey, what’s that?” I yelled, pointing behind him. He turned his head to find nothing, but before he could turn back, my fist met his chin. After pulling the knife from his hand I quickly buried it into his chest. As he fell to the ground, I could hear footsteps coming down the hall.
“Chris?” Gwen called.
I ran out of the room and slammed the door behind me to find Gwen holding two cups of coffee. “Hi, Gwen,” I said hysterically. She gave an odd look but then laughed, handing me one of the cups.
“I figured since you were so busy, I’d buy you the coffee this time. Would you like show me your office now?”
I looked at my closed door and then back at Gwen. “No, I still have some more cleaning to do. I have a new research project I need to prepare. But for now, how about we go enjoy these coffees in the break room?”
.
test
I can't use emojis in tags.
Just checking markdown. Bolder. Boldest. Quote test 2. Second 3. Third Bullet Headline ##Headline 2 ###Headline 3
One of the common issues that I've run into on reddit as a moderator is that lots of people put in a link and then put a bunch of text into the text area, and then they have a text link with no link.
I realize that you may have built things already in a way that is fundamentally not supportive of this, but I wonder about allowing both to coexist within one post?
| The "Game of the Year" Award | The "VR Game of the Year" Award |
|---|---|
| The "Labor of Love" Award | The "Best Developer" Award |
| The "Best Environment" Award | The "Better with Friends" Award |
| The "Best Alternate History" Award | The "Most Fun with a Machine" Award |
Just curious. Hi everyone!
ah cant have title only posts, okiedokie
Words also words yeah well your butt is words #hashtag wrecked ##hashtag (|) ###hashtag what about this one okay Topics cannot have both markdown and a link. booo
Welcome to the alpha version of Tildes! If you haven't read it yet, please start with the announcement post on the blog, since that explains a lot of my goals and general plans for the site: https://blog.tildes.net/announcing-tildes
Also check this page for some info about some of the basic mechanics in place: https://docs.tildes.net/mechanics
Beyond that, there are some other pages on the Docs site with a fair amount of information, and I'm working on gradually adding more to them.
I'd still like to keep it a bit quiet for the first little while, so I can make sure nothing explodes and pay more attention to the site instead of having to worry about who's talking about it and where. It's fine if you want to mention it to some people, but please ask them not to spread it around much as well. If you do tell people, it's probably best to send them to the announcement post as an intro.
It won't have to be this way for long - this upcoming week, I'm intending to start trying to get some more public attention.
There's still a ton missing, obviously. Some functions have been disabled deliberately for now as well, because I'd like to see how things work without them before we start jumping to too many conclusions about what we "need" and how to use the site. I hope to have regular discussions about a lot of these ideas so we can figure out exactly how best to implement some things.
Make sure to check on your userpage (by clicking your username in the top right corner or sidebar on mobile) - there are a few things in the side menu on there that are useful, like the light/dark theme toggle.
There's a post here with some specific things I'm working on in the very near future: https://tildes.net/~tildes/a/high_priority_things_to_fix_add
I set up a group named ~test that's specifically for trying things out and making a mess. It's the only one that you're not auto-subscribed to when you register (so that your home page isn't spammed up with the stuff from there).
Please feel free to test things out in there, try to break things, whatever. I may periodically wipe it just to get rid of a lot of the garbage, so please don't post anything in there if you're not okay with it disappearing at any time.
One of the best things you can do would be to just post things. Getting the initial activity going on the site will be one of the most important steps, so please just post things here (and comment on others' posts).
I'd also appreciate any feedback, posts about bugs you discover, etc. You can just post anything like that in the ~tildes group as well.
If you have other people that you'd like to invite, I think we should be able to start doing that very soon. I haven't given anyone their own invite codes yet, but it's something that I can do. If there's people you really want to get in right away, please let me know and I can give you some codes or otherwise help get them in. Message me here on Tildes about it, email me at deimos@tildes.net, or send me a message through Discord/Slack/whatever and we can figure it out.
Please keep in mind that, for the most part, this has been a one-person endeavor so far. I'm the developer, sysadmin, designer, writer, lawyer, manager, chair of the non-profit board, etc. I'm not very good at a lot of these things.
There will definitely be some roughness for a while, whether it's awful design/UI choices, the site crashing and staying down for a while until I can get it back up, etc. Thanks in advance for your patience, it's all only going to get better from here.
I'm excited to finally be able to let people see what I've been working on. Thanks for being here at the start with me!