The Perfect Office – The Perpetual Calendar, Tech Tape, Skullcandy Headset and more

The Perfect Office - The Perpetual Calendar, Tech Tape, Skullcandy Headset and more

We’ve seen some great gadgets and equipment for designers. So many cool stuff, that we could actually assemble infinite perfect office spaces! Every week we’ll assemble a perfect office, and we’d like you to help us. What equipment would the perfect office have?

This week we’ve got for you some neat little things like Hammer Coat Hook, which will add some style for your office! You can also track the days in this amazing Perpetual Calendar, which I find really cool (I would love to have one). Also, you can take a nap after lunch in this funny Mega Man Cannon Pillow (Mega Man lovers will love this). You can also take measures using new technology with the Tech Tape. You should really check this, it’s awesome. And there’s more! Don’t forget that you may suggest via twitter: @paulogabriel – I hope you enjoy these! Cheers. 😉

Brought to you by: Sponsor: 7Gadgets.com

Sponsor: The Gadget Flow - Top Gadgets of the Web

Hammer Coat Hook


The Perfect Office - The Perpetual Calendar, Tech Tape, Skullcandy Headset and more

Reclaim your shared closet the only way an alpha male can, by installing the hammer coat hook. This rugged accessory re-purposes the hammer into a one of a kind hook capable of taking on the weight of even your heaviest winter gear. (at This is why I’m Broke)

The Perpetual Calendar


The Perfect Office - The Perpetual Calendar, Tech Tape, Skullcandy Headset and more

This boldly original calendar is designed to be used year after year. Simply move the two magnetic balls to mark the date and month. Made for the Museum of injection-molded plastic and magnets, it can be wall-mounted or used on a desktop. Wall mounting hardware included. (at The Gadget Flow)

Mega Man Arm Cannon Pillow And Helmet Set


The Perfect Office - The Perpetual Calendar, Tech Tape, Skullcandy Headset and more

This is the $61 Mega Man arm cannon pillow and helmet being sold by E-Capcom (translated) from Japan. (at Like Cool)

500 MB/s Fast Ethernet Powerline Wall-Plug Adapter


The Perfect Office - The Perpetual Calendar, Tech Tape, Skullcandy Headset and more

Easy to use Plug and Play device. QoS ensures uninterrupted multimedia streaming. Power-saving mode reduces energy waste. Multi-color LED identifies power line network quality. Embedded noise filter for reduced power interference. Encrypt button for easy security setup. (at 7 Gadgets)

Tech Tape


The Perfect Office - The Perpetual Calendar, Tech Tape, Skullcandy Headset and more

Measuring is the most complex (and frustrating) part of any home improvement project, so why complicate it further with a mess of pens and papers? Tech Tape is an app-enabled tape measure, which enables users to easily record measurements on their phone or tablet. Extending to a length of 25 ft., the measure features a digital readout with both imperial and metric conversions, and connects seamlessly with your chosen device via bluetooth. Tech Tape’s partner app can not only record measurements, but can calculate area, volume, paint requirements, and even mock up a floor plan. It’s home improvement for the digital age, plain and simple. (at The Gadget Flow)

Skullcandy Gaming Headset


The Perfect Office - The Perpetual Calendar, Tech Tape, Skullcandy Headset and more

Proprietary Supreme Sound technology delivers powerful bass and precision highs. Sound equalization settings for games, music, and movies. Individual audio settings for game audio and voice. Compatible with Xbox 360, PS3, PC, and most mobile phones, tablets, and MP3 players. (at 7 Gadgets)

Posted in Blog | Comments Off on The Perfect Office – The Perpetual Calendar, Tech Tape, Skullcandy Headset and more

How to write markdown

ThumbnailRecently, there’s been a lot of talk about markdown as an alternate way to format text.

I decided to do a little research and see what all the talk was about and I was actually quite glad of what I found; markdown is simple markup language that makes it easier for writers to write good content for the web without having to worry about the HTML code in their articles.

The benefit of using markdown is that you can write substantially cleaner articles and it also makes it easier for anyone reading your articles to be able to read it, without actually opening the page in a browser.

How to write markdown

Writing markdown is the simplest thing you can imagine:

Bold and italic text

To create italic text you just need to surround the text by one star:

This is *italic text.*

Which will produce:

This is italic text.

And to create bold text you insert two stars:

And this is **bold text.**

Which will produce:

And this is bold text. 

Headings

To create headings in markdown all you need to is add a hash sign before your content. One hash sign is the equivalent of an <h1>, two means an <h2> and so on until <h6>:

# this is an heading 1
## this is an heading 2
### this is an heading 3
#### this is an heading 4
##### this is an heading 5
###### this is an heading 6

Paragraphs

Writing paragraphs is as simple as writing your text, and if you want to add another another paragraph you just need to press enter and in the next line a new paragraph will be added:

One paragraph
And here is another paragraph

Is the equivalent of:

<p>One paragraph</p>
<p>And here is another paragraph</p>

Blockquotes

To create blockquotes you need to add a angled bracket (>) before the text you want, like so:

> Somebody said this quote some years ago

Which is the same as:

<blockquote>
  <p>Somebody said this quote some years ago</p>
<blockquote>

Links

Creating links is very simlar to HTML, you first place the text you want the user to see inside square brackets and then place the link location inside a pair of parentheses:

[Webdesigner Depot](http://www.webdesignerdepot.com)

Which is the equivalent of:

<a href=”http://www.webdesignerdepot.com”>Web Designer Depot</a>

Images

Images use the same basic syntax as links, but in images the text you place in square brackets will be the alt text and you also need to place an exclamation mark before everything to make markdown know that what you are writing is an image and not a link:

![My image](http://example.com/myimage.jpg)

Is the same as:

<img src=”http://example.com/myimage.jpg” alt=”My image” />

Unordered Lists

To create a simple unordered list you only need to create the list items, you don’t need to worry about opening and closing the list. All you need to do is to add a line break, then add an asterisk before each item:

* One list item
* Another list item
* And a third one

Is the equivalent of:

<ul>
<li>One list item</li>
<li>Another list item</li>
<li>And a third one</li>
</ul>

Ordered Lists

Like the unordered lists you only need to concern yourself with the actual list items, there’s no opening or closing. To use an ordered list you just need to use numbers instead of asterisks:

1 One list item
2 Another list item
3 And a third one

Is the equivalent of:

<ol>
<li>One list item</li>
<li>Another list item</li>
<li>And a third one</li>
</ol>

 

Conclusion

Markdown is a really good backup if you write articles for the web and you are not a savvy HTML developer, it really facilitates the creation of content for the web. There is even a WordPress Plugin that allows markdown in posts and comments and automatically converts it to HTML.

 

Have you learnt to use markdown? What benefits have you found over other forms of markup? Let us know in the comments.

Featured image/thumbnail, blogging image via Shutterstock.

The WordPress Admin Customizer – only $16!

Source

Posted in Blog | Comments Off on How to write markdown