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
@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'" }'
@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
{
  "bindings": [
    {
      "authLevel": "function",
      "type": "httpTrigger",
      "direction": "in",
      "name": "req",
      "methods": [
 "get"
function _displayModel (_private) {
console.log(_private.model);
}
function bind (that, func) {
return function(private) {
return func.bind(that, private);
};
}
@dualyticalchemy
dualyticalchemy / analysis-politics-praxis.md
Created July 12, 2020 21:44
analysis, politics, praxis: terms

by politics i understand the fundamental problem of supplying answers to matters of economic conflicts over resources inasmuch as conflicts are described from and through ontological positions and configurations concerning who, what, when, where, why and how those answers may satisfactorily address needs and wants with the most without giving rise to antagonism. who wants, who needs, what is wanted, what is needs, when, why, etc.

by praxis i understand the grounding of normativity in the recognition of ecologies of knowledge which depend on every species' ergnonomic fit to their environment such that it informs their practices of sacrifice,

@dualyticalchemy
dualyticalchemy / abolish.jquery.js
Last active September 29, 2020 15:56
abolish jquery, obviously, etc.
const $$ = (el) => document.querySelector(el);
const $ = (el) => ({
ready: (cb) => el.addEventListener('DOMContentLoaded', cb),
click: (cb) => $$(el).addEventListener('click', cb),
hide: () => $$(el).setAttribute('style', 'display: none;')
});
$(document).ready(() => {
$('button').click(() => {
$('p').hide();

Semiotic Web Architecture

This article explores various design patterns for developing ...

Addressing prior ReST constraints

Background

Design patterns were originally codified in Gang of Four's ... Today we develop using mixed patterns typically called MVC, MVVM, MVP, MOVE, etc.

.
├── config
│ └── development.json
├── fixtures
│ └── example.json
├── integration
│ ├── gherkin_spec.js
│ └── home-unit_spec.js
├── plugins
.
├── features
│ ├── ZOLL-UI__homeUnit--hamburgerMenu.feature
│ ├── given_test.feature
│ └── index.feature
├── index.js
└── utils
├── compose.js
├── getAngular.js
├── getElement.js
const compose = (...fns) => fns.reduce((f, g) => (...args) => f(g(...args)));
export {
compose
};