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 ComposableArchitecture | |
struct Environment {} | |
// Account | |
struct AccountState: Equatable { | |
var username: String? | |
} |
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 | |
ARCHIVE_DEST_PATH="./archive" | |
ARCHIVE_PACKAGE="$ARCHIVE_DEST_PATH.xcarchive" | |
# Remove old archive | |
if [ -f "$ARCHIVE_PACKAGE/Info.plist" ]; then | |
rm -r "$ARCHIVE_PACKAGE" | |
fi |
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
angular.module('components.filters').filter('emoticonize', function emoticonize() { | |
'use strict'; | |
// Try to stick to the emoticon codes as used by GitHub, Campfire, Basecamp, Flowdock, Slack.. etc. | |
// See http://www.emoji-cheat-sheet.com for a list. | |
var table = { | |
'🔥': [':fire:'], | |
'💩': [':shit:', ':hankey:', ':poop:'], | |
'🙏': [':pray:'], |