Skip to content

Instantly share code, notes, and snippets.

@devtuitt
devtuitt / CopyARequest.js
Created February 4, 2020 14:54 — forked from jmbauguess/CopyARequest.js
Back end functionality to copy variables from one requested item to another
/**
* @description Allows users to copy a requested item on the form
* @extends {AbstractAjaxProcessor}
* @type {Class}
*/
var CopyARequest = Class.create();
CopyARequest.prototype = Object.extendsObject(AbstractAjaxProcessor, {
/**
* @description ServiceNow's ArrayUtil
* @type {ArrayUtil}
@devtuitt
devtuitt / CopyARequest.js
Created February 4, 2020 14:54 — forked from jmbauguess/CopyARequest.js
Back end functionality to copy variables from one requested item to another
/**
* @description Allows users to copy a requested item on the form
* @extends {AbstractAjaxProcessor}
* @type {Class}
*/
var CopyARequest = Class.create();
CopyARequest.prototype = Object.extendsObject(AbstractAjaxProcessor, {
/**
* @description ServiceNow's ArrayUtil
* @type {ArrayUtil}
@devtuitt
devtuitt / springer-free-maths-books.md
Created December 29, 2015 04:27 — forked from bishboria/springer-free-maths-books.md
Springer have made a bunch of maths books available for free, here are the direct links
@devtuitt
devtuitt / introrx.md
Created December 26, 2015 02:00 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@devtuitt
devtuitt / dash-listen-2.py
Last active September 9, 2015 17:16 — forked from eob/dash-listen-2.py
from scapy.all import *
def arp_display(pkt):
if pkt[ARP].op == 1: #who-has (request)
if pkt[ARP].psrc == '0.0.0.0': # ARP Probe
if pkt[ARP].hwsrc == '74:75:48:5f:99:30': # Huggies
print "Pushed Huggies"
elif pkt[ARP].hwsrc == '10:ae:60:00:4d:f3': # Elements
print "Pushed Elements"
else:
print "ARP Probe from unknown device: " + pkt[ARP].hwsrc
@devtuitt
devtuitt / Blockchain tutorial
Created September 9, 2015 17:10
Beginners Guide to Blockchain Technology
http://blockstrap.com/en/a-complete-beginners-guide-to-blockchain-technology/
@devtuitt
devtuitt / Patterns of Enterprise Architecture
Created September 9, 2015 17:09
martin fowlers examples of enterprise architecture
http://martinfowler.com/eaaCatalog/
@devtuitt
devtuitt / gist:00cfee3cb6d076f55607
Created September 9, 2015 17:06
Patterns of Enterprise Architecture
http://martinfowler.com/eaaCatalog/