Skip to content

Instantly share code, notes, and snippets.

@ravachol70
Last active June 4, 2024 14:42
Show Gist options
  • Save ravachol70/0080b6de5fcf7d1005785da74497f628 to your computer and use it in GitHub Desktop.
Save ravachol70/0080b6de5fcf7d1005785da74497f628 to your computer and use it in GitHub Desktop.
Memetic Cultural Impact
digraph IntegratedGraph {
rankdir=LR;
node [shape=box, style=filled, color=lightblue];
// Elements
Agency [label="Agency (Executive Redemption)"];
Value [label="Value"];
Temporal_Structuring_Synthetic_Value [label="Temporal Structuring & Synthetic Value"];
// Define the root node
memelord [label="{Memelord}"];
culture [label="Culture"];
Value -> memelord -> culture;
Temporal_Structuring_Synthetic_Value -> memelord;
// Define sibling nodes
philology [label="Philology"];
ontology [label="Ontology"];
memetics [label="Memetics"];
// Define edges
culture -> philology;
culture -> ontology;
culture -> memetics;
// Define sub-nodes for Memetics
memetic_theory [label="Memetic Theory"];
memetic_practice [label="Memetic Practice"];
// Connect sub-nodes to Memetics
memetics -> memetic_theory;
memetics -> memetic_practice;
// Define sub-nodes for Memetic Theory
semiological_thing [label="Meme"];
thing_itself [label="The Thing Itself"];
// Connect sub-nodes to Memetic Theory
memetic_theory -> semiological_thing;
memetic_theory -> thing_itself;
// Define sub-nodes for Memetic Practice
memetic_idealism [label="Dasein"];
the_real [label="The Real"];
dasein [label="Personal Significance\n{Social Significance}"];
// Connect sub-nodes to Memetic Practice
memetic_practice -> memetic_idealism;
memetic_practice -> the_real;
memetic_practice -> dasein;
// Connect Ontology to relevant sub-nodes
ontology -> thing_itself;
the_real -> ontology;
ontology -> dasein;
// Additional connections
memetic_idealism -> semiological_thing [style=dashed, dir=none];
semiological_thing -> thing_itself;
dasein -> culture;
philology -> memetic_practice;
the_real -> dasein [style=dashed, dir=none];
// Define sub-graph for Cultura under Memeology
subgraph cluster_cultura {
label="Ontic Tribalism";
style=dashed;
color=lightgrey;
cultural_norms [label="Cultural Norms"];
societal_values [label="Societal Values"];
cultural_commentary [label="Cultural Commentary"];
mimetic_subjectivity [label="Subjectivity"];
memetic_idealism [label="Memetic Idealism"];
}
// Connect nodes within the sub-graph
memetic_idealism -> cultural_commentary [style=dashed, dir=none];
memetic_idealism -> ontology [style=dashed, dir=none];
memetic_idealism -> mimetic_subjectivity;
// Connect Cultura nodes to Culture
culture -> cultural_norms;
culture -> societal_values;
culture -> cultural_commentary;
// Define sub-nodes for Mimetic Subjectivity under Memeology
imitation [label="Imitation"];
adaptation [label="Adaptation"];
personal_significance [label="Personal Significance"];
social_significance [label="Social Significance"];
mimetic_subjectivity -> imitation;
dasein -> adaptation;
dasein -> personal_significance;
dasein -> social_significance;
subjective_experience -> cultural_commentary;
semiological_thing -> mimetic_subjectivity [dir=both];
mimetic_subjectivity -> cultural_commentary [style=dashed, dir=none];
// Define sub-nodes for Potentiality-for-being
potentiality_for_being [label="Potentiality-for-being"];
memetic_theory -> potentiality_for_being;
memetic_practice -> potentiality_for_being;
dasein -> potentiality_for_being;
// Integrate the sub-graph for Normativity and Accountability in Memetic Practices
subgraph cluster_normativity_accountability {
label="Memetic Practice";
style=dashed;
color=lightgrey;
// Define nodes within the sub-graph
normativity [label="Normativity"];
accountability [label="Accountability"];
ethical_standards [label="Ethical Standards"];
meme_creation [label="Meme Creation"];
meme_sharing [label="Meme Sharing"];
societal_impact [label="Societal Impact"];
individual_responsibility [label="Individual Responsibility"];
community_guidelines [label="Community Guidelines"];
authenticity [label="Authenticity"];
integrity [label="Integrity"];
influence [label="Influence"];
ethical_boundaries [label="Ethical Boundaries"];
// Define edges within the sub-graph
normativity -> ethical_standards;
normativity -> community_guidelines;
accountability -> individual_responsibility;
accountability -> societal_impact;
meme_creation -> authenticity;
meme_creation -> integrity;
meme_sharing -> influence;
meme_sharing -> ethical_boundaries;
ethical_standards -> meme_creation;
ethical_standards -> meme_sharing;
community_guidelines -> meme_creation;
community_guidelines -> meme_sharing;
individual_responsibility -> meme_creation;
individual_responsibility -> meme_sharing;
societal_impact -> influence;
societal_impact -> ethical_boundaries;
}
// Connect the sub-graph to the main graph
memetic_practice -> normativity;
memetic_practice -> accountability;
cultural_impact -> societal_impact;
cultural_impact -> influence;
}
@ravachol70
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment