This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# THEMEN | |
## ANT und lokal/global | |
* 95,105 ANT ist nicht lokaler oder weniger Abstrakt als andere Soziologische Theorien (auch: 392, 352) | |
* Akteur/Netzwerk entspricht Lokales/verbundenes | |
* 315 Abstraktes soll werden zu: "Wo", "Wann", "Womit" | |
* 352 Nichts ist nur lokal oder nur global | |
* 392 Globales und Lokales existieren gleichzeitig, nicht entweder oder | |
* 407 Je mehr verknüpfungen, desto besser |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var s = document.createElement("script"); | |
s.type = "text/javascript"; | |
s.src = "https://cdnjs.cloudflare.com/ajax/libs/mark.js/8.11.0/mark.js"; | |
$("head").append(s); | |
var markinstance = new Mark(document.querySelectorAll("p,ul,li,quote, cite"));//all common elements pandoc puts out. | |
markinstance.markRegExp(/(\.|;|—|\:)/gim, {className:"strongHighlight"}); //sentence lenght | |
markinstance.markRegExp(/(was |will |do |is |of )/gim); //simple passive verbs | |
markinstance.markRegExp(/( is that)/gim); //no "is that" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Data for testing it | |
var dataobject = { | |
rows:[ | |
{Preis:"100",Geraet:"Android Phone"}, | |
{Preis:"600",Geraet:"iPad"}, | |
{Preis:"1000",Geraet:"Thinkpad"} | |
] | |
}; | |
//get all column names. Use the first object in rows for that. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
The function call behaviour seems to be identical to the javascript version; I could not find any differences | |
However, the resulting tree is not identical, the javascript version "reuses" the paths, | |
whereas the python one seems to create a new path on every occasion. | |
''' | |
#following adapted from https://stackoverflow.com/a/44185784/263398 and ported to Python | |
from functools import reduce |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//following adapted from https://stackoverflow.com/a/44185784/263398 | |
var data2 = [{ | |
name: "Children C1", | |
paths: [["A", "B", "C"],["A", "B"]] | |
}, { | |
name: "Children C2", | |
paths: [["A", "B", "C"]] | |
}, { | |
name: "Children C3", | |
paths: [["A", "B", "C"]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Output: Sentence "\n"; | |
Sentence: SentenceIamGreat, SentenceBlaming, SentenceProduct, AdviceStupid, SentenceMake; | |
SentenceIamGreat: "It is a " HowItIs " "Thing ". " ParticleAfterMe; | |
AdviceStupid: "They say: " Advice "." ("I mean, like " areLike " programmers do?!",ParticleAfterOthers); | |
SentenceBlaming: (mainAntagonist=Antagonist) ParticleBefore ": The " mainAntagonist "is " evil (".","!"{1,6}) ParticleAfterMe; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="us"> | |
<head> | |
<!-- | |
needs jquery.js, jqueryUI.js, jquerUI.css | |
and an image showing the revision slider bars like http://imgur.com/e7LNEDA | |
--> | |
<meta charset="utf-8"> | |
<title>Slider Prototype</title> | |
<link href="jquery-ui.css" rel="stylesheet"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Output: whatPart " " changePart ".\n"; | |
changePart: "will " changes " " bigThing; | |
whatPart: AnswerQuestion " the " comeIntoBeing " of " adjectives " " changeAgent; | |
changes: "disrupt", "change", "revolutionize", "remake", "turn over"; | |
bigThing:"the world", "our thinking", "IT", "everything", "education", "society", "humanity", "your brain"; | |
AnswerQuestion: "Why", "How", "What happens when"; | |
comeIntoBeing: "raise", "growth", "invention"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Why the invention of big information will remake everything. | |
- What happens when the raise of big data will turn over your brain. | |
- How the invention of smart information will change your brain. | |
- How the raise of smart algorithms will change our thinking. | |
- What happens when the raise of virtual AI will remake IT. | |
- What happens when the growth of virtual AI will turn over our thinking. |