Skip to content

Instantly share code, notes, and snippets.

View ravachol70's full-sized avatar

ravachol ravachol70

View GitHub Profile
@ravachol70
ravachol70 / ke_efficacy.md
Created July 17, 2024 12:20
Karen's Recovery

SQL Query: Selecting Data Indicative of Positive Trends

SELECT ke.timestamp, ke.efficacy, ke.negativity, ke.internet_usage,
       iw.idiocy, iw.worthlessness,
       (ke.efficacy - ke_prev.efficacy) AS efficacy_increase,
       (ke_prev.negativity - ke.negativity) AS negativity_decrease,
       (ke.internet_usage - ke_prev.internet_usage) AS internet_usage_change,
       (iw_prev.idiocy - iw.idiocy) AS idiocy_decrease,
       (iw_prev.worthlessness - iw.worthlessness) AS worthlessness_decrease
@ravachol70
ravachol70 / memetic-template.dot
Last active June 18, 2024 13:32
The Memetic Template: Crypto-Semiotic Adaptation as the Basis of Culture
digraph TheMemeticTemplate {
rankdir=LR;
label="The Memetic Template";
labelloc=top;
fontsize=23;
node [shape=box, style=filled, color=lightblue];
// Core Elements
Agency [label="Agency\n{Executive Redemption}"];
Value [label="Value"];
@ravachol70
ravachol70 / crypto-semiotic-principles.dot
Last active June 17, 2024 14:40
Crypto-Semiotic Principles: the Function of the Meme
digraph TheMemeticTemplate {
rankdir=LR;
label="The Memetic Template";
labelloc=top;
fontsize=23;
node [shape=box, style=filled, color=lightblue];
// Elements
Agency [label="Agency\n{Executive Redemption}"];
Value [label="Value"];
@ravachol70
ravachol70 / semiotic_crypto.dot
Created June 5, 2024 20:43
Crypto-Economics as Cultural Semiotics
digraph G {
subgraph cluster_1 {
subgraph cluster_2 {
style=solid;
color=lightblue;
label="Historical &\nSocial Processes";
Gadamer_Resists;
Temporally_Situated_Emplotment;
Ricoeur_Obviates;
Peirce;
@ravachol70
ravachol70 / ai_memelord.dot
Last active June 4, 2024 22:09
AI Memelord & Cultural Analysis
digraph KnowledgeGraph {
// Define node shapes and styles
node [shape=ellipse, style=filled, color=lightblue2];
edge [color=gray];
// Ontology nodes
Ontology [label="Ontology", shape=box, color=lightcoral];
Value [label="Value"];
Meme [label="Meme"];
@ravachol70
ravachol70 / memelord_culture.dot
Last active June 4, 2024 14:51
Memelord as Agentic Idealism
digraph IntegratedGraph {
rankdir=LR;
node [shape=box, style=filled, color=lightblue];
// Elements
Agency [label="Agency\n{Executive Redemption}"];
Value [label="Value"];
Agency -> Value;
Temporal_Structuring_Synthetic_Value [label="Temporal Structuring\n& Synthetic Value"];
@ravachol70
ravachol70 / memetic-cultural-impact.dot
Last active June 4, 2024 14:42
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
@ravachol70
ravachol70 / roland-gmk-76.md
Last active June 2, 2024 13:09
Hypothetical Roland GMK-76

Technical Specification: Portable Signal Recorder with Stereo Haptic User Interface

1. Overview

This document provides a detailed technical specification for the Portable Signal Recorder with Stereo Haptic User Interface, designed for an international audience. This device integrates advanced Japanese technology and is intended for use by professional audio engineers.

2. Features

  • Stereo Haptic User Interface: Provides tactile feedback for enhanced user interaction.
  • Clock Division Detection: Continuously measures and detects clock divisions to apply musical derivations to the onboard sequencer and sample slicer/arranger.
  • FM Radio Multi-Sampler: Functions as a multi-sampler for FM radio, generating random noise and micro-beats.
  • Handset Interface: Allows for keyword entry and audio cues, enabling remote control of all device functions.
digraph D {
node [shape=box, style=filled, color=lightblue];
rankdir=TB;
// Gadamer-related elements
Gadamer_Resists [label="Gadamer Resists"];
Hermeneutic_Cycles [label="Hermeneutic Cycles"];
Money_And_Debt [label="Money and Debt"];
Gadamerian_Ricoeurian_Hermeneutics [label="Gadamerian Ricoeurian Hermeneutics"];
Textual_Interpretation [label="Textual Interpretation (Code)"];
@ravachol70
ravachol70 / micro-cartel-bidding.sol
Created October 20, 2023 12:21
Mini Micro-Cartelism in a Nutshell
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract MicroCartelBidding {
address public owner; // The owner of the bidding contract
address[] public cartelMembers; // Addresses of cartel members
uint public highestBid; // Highest bid amount
constructor() {
owner = msg.sender;