Skip to content

Instantly share code, notes, and snippets.

@gmocamilotd
Last active April 26, 2018 16:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gmocamilotd/ccd7eb37dd70f999296ec2fe1b71e13f to your computer and use it in GitHub Desktop.
Save gmocamilotd/ccd7eb37dd70f999296ec2fe1b71e13f to your computer and use it in GitHub Desktop.
markdown tips usar markdown Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
# Use Gists to store entire functions
class QuickSort
def self.sort!(keys)
quick(keys,0,keys.size-1)
end
private
end

Create documentation for your projects. Like so:


Most popular keyboard shortcuts within GistBox

  • Up/Down - Previous/Next Gist
  • Ctrl+e - Edit a selected Gist
  • Ctrl+s - Save Gist

Save Gists from anywhere with Clipper

GistBox Clipper is the companion extension to GistBox, the most beautiful way to organize code snippets. It allows a user to create a GitHub Gist from any page on the web.

Download from the Chrome Web Store

Use Gists to keep track of any information you'd like to remember later on.


White Chocolate Raspberry Cheesecake

From: http://allrecipes.com/Recipe/White-Chocolate-Raspberry-Cheesecake/Detail.aspx

Raspberry Cheesecake

Ingredients

  • 1 cup chocolate cookie crumbs
  • 3 tablespoons white sugar
  • 1/4 cup butter, melted
  • 1 (10 ounce) package frozen raspberries
  • 2 tablespoons white sugar
  • 2 teaspoons cornstarch
  • 1/2 cup water
  • 2 cups white chocolate chips
  • 1/2 cup half-and-half cream
  • 3 (8 ounce) packages cream cheese, softened
  • 1/2 cup white sugar
  • 3 eggs
  • 1 teaspoon vanilla extract

Directions

  1. In a medium bowl, mix together cookie crumbs, 3 tablespoons sugar, and melted butter. Press mixture into the bottom of a 9 inch springform pan.

  2. In a saucepan, combine raspberries, 2 tablespoons sugar, cornstarch, and water. Bring to boil, and continue boiling 5 minutes, or until sauce is thick. Strain sauce through a mesh strainer to remove seeds.

  3. Preheat oven to 325 degrees F (165 degrees C). In a metal bowl over a pan of simmering water, melt white chocolate chips with half-and-half, stirring occasionally until smooth.

  4. In a large bowl, mix together cream cheese and 1/2 cup sugar until smooth. Beat in eggs one at a time. Blend in vanilla and melted white chocolate. Pour half of batter over crust. Spoon 3 tablespoons raspberry sauce over batter. Pour remaining cheesecake batter into pan, and again spoon 3 tablespoons raspberry sauce over the top. Swirl batter with the tip of a knife to create a marbled effect.

  5. Bake for 55 to 60 minutes, or until filling is set. Cool, cover with plastic wrap, and refrigerate for 8 hours before removing from pan. Serve with remaining raspberry sauce.

Welcome to Boostnote!

Click to edit this note.


Boostnote is an open source note-taking app. Repository is published on GitHub, and tweeting everyday on @Boostnoteapp!

Features

  • No Internet and Registration Required.
  • Quick search and copy the content of note. macOS: Cmd + Alt + S / windows: Ctrl + Alt + S
  • Markdown & Snippet note.
  • Available for vim and emacs mode.
  • Choose your favorite theme on UI, Editor and Code Block!

  • Copy Codeblock on Makrdown Preview.
var boostnote = document.getElementById('enjoy').innerHTML

console.log(boostnote)
# Heading
## Sub-heading
### Another deeper heading
Paragraphs are separated
by a blank line.
Two spaces at the end of a line leave a
line break.
Text attributes _italic_, *italic*, __bold__, **bold**, `monospace`.
Horizontal rule:
---
Bullet list:
* apples
* oranges
* pears
Numbered list:
1. apples
2. oranges
3. pears
A [link](http://example.com).
Code
To create a code block, either indent each line by 4 spaces, or place 3 backticks ``` on a line above and below the code block.
`Inline code` with backticks
Images
Images also have two styles, just like links, and both of them render the exact same way. The difference between links and images is that images are prefaced with an exclamation point ( ! ).
The first image style is called an inline image link. To create an inline image link, enter an exclamation point ( ! ), wrap the alt text in brackets ( [ ] ), and then wrap the link in parenthesis ( ( ) ). (Alt text is a phrase or sentence that describes the image for the visually impaired.)or example, to create an inline image link to https://octodex.github.com/images/bannekat.png, with an alt text that says, Benjamin Bannekat, you'd write this in Markdown: ![Benjamin Bannekat](https://octodex.github.com/images/bannekat.png).
For example, to create an inline image link to https://octodex.github.com/images/bannekat.png, with an alt text that says, Benjamin Bannekat, you'd write this in Markdown: ![Benjamin Bannekat](https://octodex.github.com/images/bannekat.png).
Blockquotes
To create a block quote, all you have to do is preface a line with the "greater than" caret (>). For example:
> "In a few moments he was barefoot"
Recursos
https://www.markdowntutorial.com/
http://commonmark.org/help/
# como hacer una tabla
~~~
tipo de dato | prefijo a usar
-- | --
boolean | b
date | d
~~~
y que da asi:
tipo de dato | prefijo a usar
-- | --
boolean | b
date | d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment