<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
<!DOCTYPE HTML> | |
<html lang="en-US"> | |
<head> | |
<meta charset="UTF-8"> | |
<title></title> | |
</head> | |
<body> | |
<script type="text/javascript" src="jquery.js"></script> | |
<script type="text/javascript"> |
(function () { | |
var NS = NS || {}; | |
NS.SomeObject = (function () { | |
var defaults = { | |
a: "A" | |
} | |
function Constr(options) { |
// Check how the APK is signed | |
jarsigner -verify -verbose -certs myapk.apk |
(function(){$('h1,h2,h3,h4,h5').each(function(){var t=$(this),n=t[0].tagName,i=parseInt(new String(n).substr(1,1));console.log(new Array(i).join(' ')+n+': '+t.text().replace(/\s{2,}/g,' '));});})(); |
(function(){if(!window.jQuery){var s=document.createElement('script'), d = document.body;s.src='//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js';d.appendChild(s);}else{console.log('jQuery found!')}})(); |
<?php | |
/** | |
* Encodes or Decodes some string | |
* | |
* @param string $string The string to encode or the string to decode | |
* @param string $secretkey The key to encode or decode with | |
*/ | |
function encodeDecode($string, $secretkey) { |
<!DOCTYPE HTML> | |
<html lang="en-US"> | |
<head> | |
<meta charset="UTF-8"> | |
<title></title> | |
</head> | |
<body> | |
<script type="text/javascript"> | |
if (typeof Object.create === 'undefined') { |
javascript: (function() {var vid = document.getElementById('player'); vid.className = vid.className + " watch-large";})() |
{ | |
"vars": { | |
"@gray-darker": "#000", | |
"@gray-dark": "#1a171b", | |
"@gray": "lighten(@gray-dark, 33.5%)", | |
"@gray-light": "lighten(@gray-dark, 60%)", | |
"@gray-lighter": "lighten(@gray-dark, 93.5%)", | |
"@brand-primary": "#df0b25", | |
"@brand-success": "#5cb85c", | |
"@brand-info": "#5bc0de", |