- Ableton (Currently using)
- Bitwig (Comes highly recommended)
- Logic Pro (What I traditionally used)
This file contains hidden or 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
| # Build a Private Remote AI Engineering Cockpit | |
| You are a principal engineer responsible for designing and implementing a production-quality private remote AI system consisting of: | |
| 1. A secure bridge server running on a trusted home or office computer. | |
| 2. A native mobile application for interacting with the agent remotely. | |
| 3. A durable workspace system for projects, tasks, automations, source files, Git state, and engineering history. | |
| The result should feel like a private combination of an AI chat client, Linear, Vercel, GitHub, and a lightweight engineering control plane. It must be reliable enough for daily use—not a demo held together by scripts. |
This file contains hidden or 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, { Component } from 'react'; | |
| import { | |
| FlatList, | |
| StyleSheet, | |
| Text, | |
| View, | |
| Platform, | |
| ActivityIndicator, | |
| } from 'react-native'; |
This file contains hidden or 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 Whatever extends React.Component { | |
| constructor(props) { | |
| super(props); | |
| this.state = { | |
| a: 5 + props.b; | |
| }; | |
| this.offset = 0; | |
| this.someEvent = this.someEvent.bind(this); | |
| } | |
| componentWillReceiveProps(nextProps) { |
This file contains hidden or 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
| open ReactNative; | |
| /* Types */ | |
| type sourceItemDimensions = { | |
| x: float, | |
| y: float, | |
| width: float, | |
| height: float | |
| }; |
This file contains hidden or 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
| <html> | |
| <head> | |
| <title>Bluetooth Demo</title> | |
| </head> | |
| <body> | |
| <button type="button" id="connect">Connect</button> | |
| <button type="button" id="fire">FIRE</button> | |
| <input type="range" max="1023" min="0" value="512" id="pan" /> |
This file contains hidden or 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
| open ReactNative; | |
| /* Variables */ | |
| let windowWidth = (Dimensions.get `window)##width; | |
| let initialRegion = { | |
| "latitude": 47.651857, | |
| "longitude": (-122.3552919), | |
| "latitudeDelta": 0.001, | |
| "longitudeDelta": 0.001 |
This file contains hidden or 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
| let scheduleItemPress args self => { | |
| let (x, y, width, height, item, index) = args; | |
| /* Handle target dimensions */ | |
| let fx = float_of_int x; | |
| let fy = float_of_int y; | |
| let fw = float_of_int width; | |
| let fh = float_of_int height; | |
| let targetDimensions = {x: fx, y: fy, width: fw, height: fh}; | |
| self.ReasonReact.update handleTargetDimensions targetDimensions; | |
| /* Set modal coords based upon clicked item */ |
This file contains hidden or 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
| open ReactNative; | |
| type _state = {mutable elementRef: option ReasonReact.reactRef}; | |
| let setRef theRef {ReasonReact.state: state} => state.elementRef = Js.Null.to_opt theRef; | |
| type item = | |
| Js.t { | |
| . | |
| id : string, |
NewerOlder