Quadratic Formula: $$ x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} $$
Area of a Circle:
Here's a comprehensive markdown snippet that includes a variety of markdown features. This snippet is useful for testing markdown rendering capabilities across different platforms or applications. It covers headings, emphasis, lists, links, images, code, tables, blockquotes, and horizontal rules.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
PHP 7.0
function sum(int $a, int $b) {
return $a + $b;
}
function sum($a, $b): int {
// Install this extension: | |
// https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode | |
{ | |
// No default format on save | |
"editor.formatOnSave": false, | |
"css.validate": false, | |
"less.validate": false, | |
"scss.validate": false, |
I hereby claim:
To claim this, I am signing this object:
<?php | |
array_map(function($x) {return $x*$x;}, range(0, 9)) |
#!/usr/bin/env python3 | |
# Functional csv.DictWriter example where columns keep the original order | |
import csv | |
def gen_rows(input_path): | |
with open(input_path) as input_file: | |
reader = csv.DictReader(input_file) |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |