This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="Assertion" /> | |
<meta charset=utf-8 /> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<ol id="results"></ol> | |
</body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="Overloading functions by argument count" /> | |
<meta charset=utf-8 /> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<ul id="results"></ul> | |
</body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.ir { | |
border: 0; | |
font: 0/0 a; | |
text-shadow: none; | |
color: transparent; | |
background-color: transparent; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[ | |
<VirtualHost *:80> | |
DocumentRoot "${1:project_path}" | |
ServerName ${2:project_domain} | |
<Directory "${1:project_path}"> | |
Options Indexes FollowSymLInks | |
AllowOverride all | |
Deny from all | |
Allow from 127.0.0.0/8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[ | |
bezierCurveTo(${1:controlPointX1}, ${2:controlPointY1}, ${3:controlPolintX2}, ${4:controlPointY2}, ${5:endingPointX}, ${6:endingPointY}); | |
]]></content> | |
<tabTrigger>bc</tabTrigger> | |
<description>bezierCurveTo()</description> | |
</snippet> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[ | |
arc(${1:centerX}, ${2:centerY}, ${3:radius}, ${4:startingAngle}, ${5:endingAngle}, ${6:counterclockwise}); | |
]]></content> | |
<tabTrigger>arc</tabTrigger> | |
<description>arc()</description> | |
</snippet> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[ | |
addColorStop(${1:0}, "${#000000}"); | |
]]></content> | |
<tabTrigger>cs</tabTrigger> | |
<description>addColorStop()</description> | |
</snippet> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[ | |
textBaseline = "${1:middle}"; | |
]]></content> | |
<tabTrigger>tb</tabTrigger> | |
<description>textBaseline</description> | |
</snippet> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[ | |
textAlign = "${1:left}"; | |
]]></content> | |
<tabTrigger>ta</tabTrigger> | |
<description>textAlign</description> | |
</snippet> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[ | |
strokeText("${1:text}", ${2:startX}, ${3:startY}); | |
]]></content> | |
<tabTrigger>st</tabTrigger> | |
<description>strokeText</description> | |
</snippet> |