Skip to content

Instantly share code, notes, and snippets.

View dualyticalchemy's full-sized avatar
💤
asleep in my own mind

⚫️ nothingness negates itself dualyticalchemy

💤
asleep in my own mind
View GitHub Profile
function _displayModel (_private) {
console.log(_private.model);
}
function bind (that, func) {
return function(private) {
return func.bind(that, private);
};
}
@dualyticalchemy
dualyticalchemy / EntityRemovedById.sh
Last active April 7, 2020 00:37
EntityRemovedById.sh
curl -X DELETE https://anotherfaileddeployment.azurewebsites.net/humans/ca1595d2-0fc4-4cfb-bd55-95e1ec652aa3
@dualyticalchemy
dualyticalchemy / EntityCreated.sh
Last active April 6, 2020 00:54
EntityCreated.sh
echo "last: "$RANDOM && export RANDOMSTRING="$(md5 -s $RANDOM | cut -d' ' -f4)" && export DATENOW="$(date)" && curl -X POST https://anotherfaileddeployment.azurewebsites.net/humans -d '{ "beds": { "quantity": 100 }, "profile": [{ "name": "profileX" }], "name": "NewName", "location": "Anywhere", "randomString": "'$RANDOMSTRING'", "createdAt": "'$DATENOW'" }'
{
  "bindings": [
    {
      "authLevel": "function",
      "type": "httpTrigger",
      "direction": "in",
      "name": "req",
      "methods": [
 "get"