Skip to content

Instantly share code, notes, and snippets.

Mandala

Each mandala is believed to be a representation of the metaphysical structure of the cosmos, as conceived by it’s creator. Versions of the Mandala have been created spontaneously by magicians, mystics and philosophers throughout the multiverse. They appear to be a natural product of meditations on the nature of consciousness and the cosmos, and the relationship between them. The resonances and congruities between mandalas, empowered by the psyche of someone contemplating them allow the opening of psychic connections between worlds. These connections can be used for perception, communication and travel.

Sigil

While the mandala is a representation of cosmos and consciousness, sigils are elements representing forces and principles that pervade the universe. Every mandala will incorporate sigils, sometimes in obvious ways but often in very subtle forms which the creator of the mandala might not even be conscious of. Some philosophers believe that it is possible to create a mandala without any sigi

@simon-hibbs
simon-hibbs / objc_util.py
Created June 27, 2019 20:15 — forked from tlinnet/objc_util.py
objc_util.py
# coding: utf-8
__all__ = ['c', 'LP64', 'CGFloat', 'NSInteger', 'NSUInteger', 'NSNotFound', 'NSUTF8StringEncoding', 'NS_UTF8', 'CGPoint', 'CGSize', 'CGVector', 'CGRect', 'CGAffineTransform', 'UIEdgeInsets', 'NSRange', 'sel', 'ObjCClass', 'ObjCInstance', 'ObjCClassMethod', 'ObjCInstanceMethod', 'NSObject', 'NSArray', 'NSMutableArray', 'NSDictionary', 'NSMutableDictionary', 'NSSet', 'NSMutableSet', 'NSString', 'NSMutableString', 'NSData', 'NSMutableData', 'NSNumber', 'NSURL', 'NSEnumerator', 'NSThread', 'NSBundle', 'UIColor', 'UIImage', 'UIBezierPath', 'UIApplication', 'UIView', 'ObjCBlock', 'ns', 'nsurl', 'retain_global', 'release_global', 'on_main_thread', 'create_objc_class',
'Structure', 'sizeof', 'byref', 'c_void_p', 'c_char', 'c_byte', 'c_char_p', 'c_double', 'c_float', 'c_int', 'c_longlong', 'c_short', 'c_bool', 'c_long', 'c_int32', 'c_ubyte', 'c_uint', 'c_ushort', 'c_ulong', 'c_ulonglong', 'POINTER', 'pointer', 'load_framework', 'nsdata_to_bytes', 'uiimage_to_png']
try:
import ctypes
except ImportErr
@simon-hibbs
simon-hibbs / GLSL-Noise.md
Created June 26, 2019 21:38 — forked from patriciogonzalezvivo/GLSL-Noise.md
GLSL Noise Algorithms

Generic 1,2,3 Noise

float rand(float n){return fract(sin(n) * 43758.5453123);}

float noise(float p){
	float fl = floor(p);
  float fc = fract(p);
	return mix(rand(fl), rand(fl + 1.0), fc);
}
@simon-hibbs
simon-hibbs / clock.py
Last active April 2, 2019 08:36
Pausable, restartable clock
#!/bin/python
import time
import logging
logger = logging.getLogger(__name__)
class Clock(object):
def __init__(self, stopped=False):
self._base = time.time()