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 Foundation | |
/// A `Binding` connects two objects' properties such that if one object's property | |
/// value were to ever update, the other object's property value would do so as well. | |
/// Thus, both objects' properties are kept in sync. The objects and their properties | |
/// need not be the same, however, their individual properties' types must be the same. | |
public class Binding<T: NSObject, U: NSObject, X, Y> { | |
/// Describes the initial state the `Binding` should follow. That is, upon creation | |
/// whether to set the "left hand side" object's value to the "right hand side"'s |
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
#!/bin/bash | |
# modify this command to select what tool to daemonize. | |
CMD=top | |
# daemonizer: | |
case "$1" in | |
start) # start daemon | |
if [ -e "daemon.lock" ]; | |
NewerOlder