supercollider.js - write javascript code, run it using node.js on the commandline. runs on a single computer.
- High-quality audio server
- Hundreds of UGens (unit generators)
- Complex low-level control system
| from django.contrib.auth.models import User | |
| from django.db import models | |
| class Message(models.Model): | |
| thread = models.ForeignKey(MessageThread) | |
| author = models.ForeignKey(User) | |
| created_on = models.DateTimeField(db_index=True) | |
| body = models.TextField() |
| import gql from "graphql-tag"; | |
| import ShowingRequest from "./ShowingRequest"; | |
| import Deals from "./Deals"; | |
| const query = gql` | |
| query Client($pk: ID!) { | |
| viewer { | |
| id | |
| agent { | |
| id |
| from decorator import decorator | |
| def _check_auth(args, pred): | |
| _, _, context, _ = args | |
| if not pred(context): | |
| raise Exception("Unauthorized") | |
| @decorator | |
| def is_user(fn, *args, **kwargs): |
| /** | |
| * A port, cleanup and simplification of https://github.com/thejameskyle/react-loadable | |
| * MIT License Copyright 2017 Chris Sattinger | |
| */ | |
| import React from "react"; | |
| export function Loading({ loading = true }) { | |
| return loading | |
| ? <i className="fa fa-spinner fa-spin" aria-hidden="true" /> | |
| : null; |
| import contextlib | |
| import hashlib | |
| import logging | |
| from collections import defaultdict | |
| from decimal import Decimal | |
| from django.db.models import DecimalField, ForeignKey | |
| log = logging.getLogger(__name__) |
| // A simple module. One function uses a function defined in the same file. | |
| // Easy as pie | |
| function project(functions, path, statsParams, mapParams) { | |
| // Undefined reference: loadDataset is not defined | |
| return loadDataset(path, functions, statsParams).then(dataset => { | |
| // etc | |
| // return mapDataset(functions, mapParams, dataset); | |
| }); | |
| } |
| /** | |
| * Prints contributors list sorted by number of issues and pull requests. | |
| * Closed issues and successfully merged pull-requests only. | |
| */ | |
| var fs = require('fs'); | |
| var _ = require('lodash'); | |
| var ib = []; | |
| var pb = []; | |
| var milestone = '3.8'; |
React, Relay, webpack. Includes express-graphql server which you will need to turn off in favor of the django one.
Solid ORM migrations, easy configuration of a full graphql server using your django models.
| github_changelog_generator -t MY_GITHUB_API_KEY --since-tag=Version-3.7.1 --future-release=3.7.2 --exclude-tags=Version-3.2rc1,Version-3.2rc3,Version-3.2rc5,Version-3.2rc6,Version-3.4alpha,Version-3.4rc1,Version-3.5beta1,Version-3.5beta2,Version-3.5beta3,Version-3.5beta4,Version-3.5rc1,Version-3.5rc2,Version-3.5rc3,Version-3.6alpha1,Version-3.6alpha2,Version-3.6alpha3,Version-3.6beta1,Version-3.6beta2,Version-3.6beta3,Version-3.7.0-alpha0,Version-3.7.0-alpha1,Version-3.7.0-beta1,Version-3.7.0-beta2,after-qt5,before-qt5,pre-gui-review,start,validated-linux,pre-gui-review,before-sclang.app,travis-temp |