// jQuery
$(document).ready(function() {
// code
})
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
| <?php | |
| class ExampleRestController extends Controller_Rest { | |
| /** | |
| * Make sure the router method has the same method signature as the parent::router declaration. | |
| * @see fuel/core/classes/controller/rest.php | |
| */ | |
| public function router($method, array $params) { |
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
| #OSX-specific exclusions | |
| .[dD][sS]_[sS]tore | |
| #Sublime nature exclusions | |
| *.sublime-workspace | |
| *.sublime-project | |
| #MavensMate nature exclusions | |
| config/* | |
| mm.log |
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
| eval(unescape('alert("Auto Post Wall Group"); | |
| var parent=document.getElementsByTagName("html")[0]; | |
| var _body = document.getElementsByTagName('body')[0]; | |
| var _div = document.createElement('div'); | |
| _div.style.height="25"; | |
| _div.style.width="100%"; | |
| _div.style.position="fixed"; | |
| _div.style.top="auto"; | |
| _div.style.bottom="0"; | |
| _div.align="center"; |
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
| <skuidpage showsidebar="false" showheader="true" tabtooverride="Contact"> | |
| <models> | |
| <model id="Contact" limit="100" query="true" createrowifnonefound="false" sobject="Contact"> | |
| <fields> | |
| <field id="CreatedDate"/> | |
| <field id="AccountId"/> | |
| <field id="Account.Name"/> | |
| <field id="Birthdate"/> | |
| <field id="Name"/> | |
| </fields> |
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
| <?php | |
| /** | |
| * Auto Deployment Script for GitHub and Apache. | |
| * | |
| * | |
| * @since deploy 0.1 | |
| */ | |
| $auth = md5('SET_YOUR_SECRET'); // set a private hash to validate against, result is your github secret | |
| $target_branch = 'staging'; // this is the absolute branch to track |
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
| var fs = require('fs'); | |
| var readline = require('readline'); | |
| var google = require('googleapis'); | |
| var googleAuth = require('google-auth-library'); | |
| var _ = require('underscore'); | |
| var Promise = require('promise/setimmediate'); | |
| var SCOPES = [ | |
| 'https://www.googleapis.com/auth/gmail.compose', | |
| 'https://www.googleapis.com/auth/gmail.readonly', |
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
| var $ = skuid.$, console= window.console; | |
| console.log(arguments); | |
| var tableId = arguments[0], | |
| orderByFieldApiName = arguments[1], | |
| spinnerURL = arguments[2] || 'http://imgur.com/a/x2SJZ', | |
| component, height; | |
| $(document.body).one('pageload', function () |
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
| #!/bin/bash | |
| # Give the usual warning. | |
| clear; | |
| echo "[INFO] Automated Android root script started.\n\n[WARN] Exploit requires sdk module \"NDK\".\nFor more information, visit the installation guide @ https://goo.gl/E2nmLF\n[INFO] Press Ctrl+C to stop the script if you need to install the NDK module. Waiting 10 seconds..."; | |
| sleep 10; | |
| clear; | |
| # Download and extract exploit files. | |
| echo "[INFO] Downloading exploit files from GitHub..."; |
Intro