duplicates = multiple editions
A Classical Introduction to Modern Number Theory,Kenneth IrelandMichael Rosen
A Classical Introduction to Modern Number Theory,Kenneth IrelandMichael Rosen
/** | |
* @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} |
/** | |
* @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} |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
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 |
http://blockstrap.com/en/a-complete-beginners-guide-to-blockchain-technology/ |
http://martinfowler.com/eaaCatalog/ |
http://martinfowler.com/eaaCatalog/ |