Install Maya 2015 SP5 on Ubuntu 14.04
Not in development, see Dockerfile
$ git clone https://gist.github.com/6a12bc322b8b334250cf.git maya && cd maya
$ . install.sh
import QtQuick 1.1 | |
Item { | |
width: 200 | |
height: 300 | |
ListView { | |
anchors.fill: parent | |
model: nestedModel | |
delegate: categoryDelegate |
Install Maya 2015 SP5 on Ubuntu 14.04
Not in development, see Dockerfile
$ git clone https://gist.github.com/6a12bc322b8b334250cf.git maya && cd maya
$ . install.sh
/* Getopt for GNU. | |
NOTE: getopt is now part of the C library, so if you don't know what | |
"Keep this file name-space clean" means, talk to [email protected] | |
before changing it! | |
Copyright (C) 1987,88,89,90,91,92,93,94,95,96,98,99,2000,2001 | |
Free Software Foundation, Inc. | |
This file is part of the GNU C Library. | |
The GNU C Library is free software; you can redistribute it and/or | |
modify it under the terms of the GNU Lesser General Public |
FROM ringo/scientific:6.6 | |
MAINTAINER [email protected] | |
# Prerequisities | |
RUN yum install -y \ | |
wget \ | |
zlib-devel && \ | |
yum groupinstall -y \ | |
"Development Tools" \ |
Just tried to put this in a more readable format: https://github.com/svanderbleek/haskellandchill.com/blob/master/a-conversation-about-oop-vs-fp-turns-constructive.md
Person | Time | Message |
---|---|---|
sagar | 10:47 | why is that, why is OOP trash |
katychuang | 10:48 | excellent question |
katychuang | 10:49 | I've been told FP and OOP are different paradigms |
katychuang | 10:52 | I'm going to butcher a quote from a talk by Evie so I'm going to paraphrase… She said something like when you work with OOP you create lots of objects and rules on how they should interact and yet somehow end up having to touch each other a lot and inappropriately |
katychuang | 10:53 | On the other hand FP (especially Haskell) is like working with shapes, like that baby shape fitting toy where you focus more on fitting the type parameters correctly |
katychuang | 10:56 | I think of programming as building a piping system. FP (especia |
As opposed to the parent gist, this version supports 8.5.x and above, and stores the database on the host drive as opposed to within the postgres container.
$ git clone https://gist.github.com/6a3cd5f9fad4e17e6c6ccbac801303fe.git sentry
$ . sentry/run.sh
Your server is accessible via http://localhost
redis: | |
image: redis | |
postgres: | |
image: postgres | |
environment: | |
- POSTGRES_PASSWORD=sentry | |
- POSTGRES_USER=sentry | |
volumes: | |
- /var/lib/postgresql/data |
""" | |
This is what you need to do in order to get a qt window to dock next to maya channel box, | |
In all maya versions, including 2017 with PySide2 | |
""" | |
__author__ = "[email protected]" | |
import sys | |
import os | |
import logging | |
import xml.etree.ElementTree as xml |
from maya import cmds, OpenMayaUI as omui | |
from Qt import QtWidgets, QtCore, QtCompat | |
def Dock(Widget, width=300, show=True): | |
"""Dock `Widget` into Maya | |
Arguments: | |
Widget (QWidget): Class | |
show (bool, optional): Whether to show the resulting dock once created |