In no particular order other than my Twitter list of follows...
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
#!/usr/bin/env python | |
import platform | |
import os | |
import sys | |
import io | |
import getopt | |
import subprocess | |
import shutil |
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
#!/usr/bin/env python | |
import platform | |
import os | |
import sys | |
import io | |
import subprocess | |
BASE_DIR = os.getcwd() | |
print("" + BASE_DIR) |
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 UIKit | |
// This code is based on implementing the following: | |
// Implement an algorithm to determine if a string has all unique characters. What if you cannot use any additional data structures? | |
extension Character { | |
func toString() -> String { | |
return String(self) | |
} | |
} |
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
extension UIView { | |
var isVisible: Bool { | |
set { | |
self.isHidden = !newValue | |
} | |
get { | |
return !self.isHidden | |
} | |
} | |
} |