Skip to content

Instantly share code, notes, and snippets.

@openp2pdesign
openp2pdesign / DDD Systems third simulation.ipynb
Last active September 16, 2021 23:03
DDD Systems a third rough simulation
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@openp2pdesign
openp2pdesign / DDD Systems second simulation.ipynb
Last active January 3, 2020 22:50
DDD Systems a second rough simulation
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@openp2pdesign
openp2pdesign / S1.txt
Created March 10, 2018 13:18
Storyboards for 3 scenarios of appliation of the OpenMetaDesign platform. To be rendered with: https://github.com/kesiev/StripThis
“S1. LET'S DEVELOP A DESIGN PROCESS ONTOLOGY"
A NEW OFFICE PANIC PANEL
BIANCA SMILING SAYS "I LOVE HOW DESIGNERS WORK!"
KESIEV SMILING SAYS "ME TOO!! THEIR IDEAS, THEIR PROCESS..."
A NEW OFFICE PANEL
BIANCA SAYS "MMH... WAIT, BUT WHAT REALLY IS A DESIGN PROCESS?"
KESIEV SAYS "WHY ARE YOU INTERESTED IN THIS?"
@openp2pdesign
openp2pdesign / metadesign.py
Last active January 5, 2018 18:02
v0.3 draft of the classes that define the Open Meta-Design framework. To be developed in a complete repository soon.
# -*- coding: utf-8 -*-
#
# Open MetaDesign Classes v0.3
#
# Author:
# Massimo Menichinelli
# Website:
# http://openmetadesign.org
# http://openp2pdesign.org
# E-mail:
@openp2pdesign
openp2pdesign / DDD Systems first simulation.ipynb
Last active April 7, 2019 12:38
DDD Systems first simulation
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@openp2pdesign
openp2pdesign / metadesign.py
Last active June 23, 2016 19:06
A first draft of the classes that define the Open Meta-Design framework. To be developed in a complete repository soon.
# -*- coding: utf-8 -*-
#
# Open MetaDesign Classes v0.2
#
# Author:
# Massimo Menichinelli
# Website:
# http://openmetadesign.org
# http://openp2pdesign.org
# E-mail:
@openp2pdesign
openp2pdesign / GourceGravatarHG.py
Created July 2, 2015 22:08
Grab avatars for Gource, using HG
# -*- coding: utf-8 -*-
#
# Based on:
# https://code.google.com/p/gource/wiki/GravatarExample
# https://gist.github.com/macagua/5c2f5e4e38df92aae7fe
# Usage with Gource: gource --user-image-dir .git/avatar/
#
# Get list of authors + email with hg log (todo)
# hg log --template '{author}\n'
# -*- coding: utf-8 -*-
#
# Based on:
# https://code.google.com/p/gource/wiki/GravatarExample
# https://gist.github.com/macagua/5c2f5e4e38df92aae7fe
# Usage with Gource: gource --user-image-dir .git/avatar/
# Get list of authors + email with git log
# git log --format='%aN|%aE' | sort -u
@openp2pdesign
openp2pdesign / template.py
Last active August 29, 2015 14:22
A wxGestalt template
# -*- coding: utf-8 -*-
# License: Public Domain (use it as you like!)
# Import main wxPython libraries
import wx
import wx.xrc
# Import the wxGestalt module for Gestalt Machines
import Machines.wxMachines as wxMachines
@openp2pdesign
openp2pdesign / kivy-serialdata.py
Last active November 29, 2023 12:13
Drawing serial data with Kivy (Python)
# -*- coding: utf8 -*-
from kivy.app import App
from kivy.uix.floatlayout import FloatLayout
from kivy.graphics import Line
from kivy.uix.label import Label
from kivy.core.window import Window
from kivy.clock import Clock
import serial