More info...
Adobe Illustrator will give you something like this, but you must add the width and height attributes based in the viewBox.
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Example of simple javascript testing in the browser</title> | |
</head> |
More info...
Adobe Illustrator will give you something like this, but you must add the width and height attributes based in the viewBox.
<?xml version="1.0" encoding="utf-8"?>
node: Platform built on V8 to build network applications | |
git: Distributed revision control system | |
wget: Internet file retriever | |
yarn: JavaScript package manager | |
python3: Interpreted, interactive, object-oriented programming language | |
coreutils: GNU File, Shell, and Text utilities | |
pkg-config: Manage compile and link flags for libraries | |
chromedriver: Tool for automated testing of webapps across many browsers | |
awscli: Official Amazon AWS command-line interface | |
automake: Tool for generating GNU Standards-compliant Makefiles |
rebase
vs merge
).rebase
vs merge
)reset
vs checkout
vs revert
)git rev-parse
)pull
vs fetch
)stash
vs branch
)reset
vs checkout
vs revert
)/*jshint browser: true*/ | |
/** | |
* Adds the content of navigator.languages or navigator.language as classes to body | |
* This script must be added after the opening <body> tag. | |
* @author Osvaldo Gago | |
*/ | |
(function () { |
<?php | |
/** | |
* Add `unfiltered_html` capability to editors (or other user roles). | |
* On WordPress multisite, `unfiltered_html` is blocked for everyone but super admins. This gives that cap back to editors | |
* and above. | |
* | |
* @author Justin Tadlock | |
* @link http://themehybrid.com/board/topics/add-unfiltered_html-capability-to-editor-role#post-4629 | |
* @param array $caps An array of capabilities. | |
* @param string $cap The capability being requested. |
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
package main | |
import ( | |
"database/sql" | |
"gopkg.in/gorp.v1" | |
"log" | |
"strconv" | |
"github.com/gin-gonic/gin" | |
_ "github.com/go-sql-driver/mysql" |
package main | |
import ( | |
"fmt" | |
"io" | |
"os" | |
) | |
var path = "/Users/novalagung/Documents/temp/test.txt" |