Skip to content

Instantly share code, notes, and snippets.

@nl5887
nl5887 / DutchSec CLA
Last active April 4, 2019 09:55 — forked from CLAassistant/SAP_CLA
DutchSec Individual Contributor License Agreement
###DutchSec Individual Contributor License Agreement
Thank you for your interest in contributing to open source software projects (“Projects”) made available by DutchSec or
its affiliates (“DutchSec”). This Individual Contributor License Agreement (“Agreement”) sets out the terms governing
any source code, object code, bug fixes, configuration changes, tools, specifications, documentation, data, materials,
feedback, information or other works of authorship that you submit or have submitted, in any form and in any manner, to
DutchSec in respect of any of the Projects (collectively “Contributions”). If you have any questions respecting this
Agreement, please contact opensource@dutchsec.com.
diff --git a/binr/Makefile b/binr/Makefile
index e9876a2..ef0e7d6 100644
--- a/binr/Makefile
+++ b/binr/Makefile
@@ -14,6 +14,8 @@ BINS=rax2 rasm2 rabin2 rahash2 radiff2 radare2 rafind2 rarun2 ragg2 r2agent
# this command needs more love to bring it back
#BINS+=ranal2
+LIBR2=$(call libname-version,libr2.$(EXT_SO),${LIBVERSION})
+
@nl5887
nl5887 / ng_initial.js
Last active December 30, 2015 09:39
app.directive 'ngInitial', ->
restrict: 'A'
controller: ['$scope', '$element', '$attrs', '$parse', ($scope, $element, $attrs, $parse) ->
val = $attrs.sbInitial || $element.val()
getter = $parse($attrs.ngModel)
setter = getter.assign
setter($scope, val)
]