This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# deep ignore both files and folders called 'tags' | |
tags | |
# un-ignore folders called 'tags' | |
!tags/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
/** | |
* | |
* An Angular Jasmine testing utility | |
* | |
* @copyright 2013 Chris Sattinger | |
* MIT License | |
* | |
* automatically injects these services: | |
* '$httpBackend', '$rootScope', '$controller', '$compile' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Supercollider < Formula | |
homepage "https://supercollider.github.io" | |
url "https://github.com/supercollider/supercollider.git", :using => :git | |
depends_on :xcode => :build | |
depends_on :macos => :lion | |
depends_on "cmake" => :build | |
depends_on "qt5" => :build | |
depends_on "readline" => :build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// add this to your startup file | |
{ | |
var flash = { | |
Window.allWindows.do { arg w; | |
var c; | |
c = w.background; | |
w.background = Color.red; | |
{ w.background = c; }.defer(0.5); | |
}; | |
nil |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// sc.msg.status() returns this object: | |
// { | |
// call: [‘/status’], | |
// response: [‘/status.reply’] | |
// } | |
sc.server.boot().then(function(server) { | |
// initiate a call and response using that object: | |
server.callAndResponse(sc.msg.status()) | |
.then(function(reply) { // returns a Promise |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scsynth | |
------- | |
CoreAudio - Fix DriverStop function | |
Fix PingPong clicking bug | |
PortAudio: scale CPU load data to represent percentage | |
prevent empty newline on when dumping omitted /status message | |
prevent possible buffer overflow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// these return more than one track | |
// they take a stereo in and return an array of stereo outs | |
Instr("splits.two",{ arg audio=0.0,lpf=200, lprq=0.5,hipass=100; | |
var lo,hi; | |
lo = RLPF.ar( audio, lpf,lprq); | |
hi = HPF.ar( audio, hipass); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
export const Cover = (props) => { | |
if (props.src) { | |
return <img className="mw-100 w-100 db" src={props.src} alt={props.alt || ''} />; | |
} else { | |
if (props.alt) { | |
return ( | |
<div className="dt w-100 h-100 ba"> | |
<div className="dtc v-mid tc f5 ttu tracked pa1">{props.alt}</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Having downloaded all the quarks, load and interpret each .quark file and dump them all to quarks.json | |
var dir = "/Users/crucial/Desktop/DOING/quarks/quarks/DIRECTORY"; | |
var all = (), f; | |
PathName(dir).filesDo({ arg f; | |
var data; | |
if(f.isFile, { | |
data = f.absolutePath.loadPath; | |
all[data['name']] = data; |
OlderNewer