<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"> | |
if (typeof Object.create === 'undefined') { |
<?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) { |
(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!')}})(); |
(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,' '));});})(); |
// Check how the APK is signed | |
jarsigner -verify -verbose -certs myapk.apk |
(function () { | |
var NS = NS || {}; | |
NS.SomeObject = (function () { | |
var defaults = { | |
a: "A" | |
} | |
function Constr(options) { |
<!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"> |
/** | |
* Change only the text content of some element | |
* | |
* @method changeText | |
* @param element {Object} Element | |
* @param text {String} New text | |
* @param prepend {Boolean} If set to true, the text will be prepended to the element | |
* @return {Boolean} True if the change was successfull, false if not | |
*/ | |
function changeText(element, text, position) { |
(function () { | |
$('h4 a').each(function() { | |
var $this = $(this), | |
content = $this.html(), | |
wordsArray = content.split(" "), | |
newcontent = []; | |
$this.html(''); | |
$.each(wordsArray, function(i, e) { |