All articles

Special characters

Category:
Character Definition
. Any character.
\w Any English letter, digit or “_” (underscore).
\W Any character that is not \w.
\d Any digit character (0-9).
\D Any character that is not a digit (0-9).
\s Any white space character.

Gemfile template

Category:
source 'https://rubygems.org'
ruby "2.3.0"
gem 'rails', '4.2.6'
gem 'rspec-rails', '3.4.2'
gem 'sass-rails', '5.0.4'
gem 'uglifier', '2.7.2'
gem 'coffee-rails', '4.1.1'
gem 'turbolinks', '2.5.3'
gem 'bcrypt', '3.1.11'
gem 'sqlite3', '1.3.11', group: [:test, :development]
gem 'spring', '1.6.4', group: :development
gem 'pg', '0.18.4', group: :production
gem 'rails_12factor', '0.0.3', group: :production

Empty template (boilerplate)

Category:
<!DOCTYPE HTML>
<html lang="en">

<head>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <meta charset="utf-8"/>
  <title>Title Ipsum</title>
  <meta name="description" content="Description ipsum."/>
  <meta name="keywords" content="lorem, ipsum, foo, bar"/>
  <!--- JS ------------------>
  <script src="test.js"></script>
  <script src="test2.js"></script>
  <!--- JQUERY -------------->
  <!-- <script src="https://code.jquery.com/jquery-2.1.4.min.js"></script> -->
  <!--- CSS ----------------->
  <!-- <link rel="stylesheet" href="styles.css"> -->
</head>

<body>
  <header>
  </header>
  <main>
    <section>
    </section>
    <section>
    </section>
  </main>
  <footer>
  </footer>
</body>

</html>