- ใใงใใใใใใญ
- I would like to ~
- ๏ผๆบๅใงใใใ๏ผๅฃฐใใใฆใญ
- Tell me something when youโre ready.
- ใกใขใใจใ
- take a note
- ็ถใใใใใ
- Let's continue.
- ใใฎ่ฉฑใฏ็ฝฎใใจใใฆใ
- Putting that aside...
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
#!/bin/sh | |
VAR1=`xcodebuild -version | head -1` | |
VAR2=`echo $VAR1 | sed -e "s/ /-/"` | |
VAR3=`echo $VAR2 | sed -e "s/$/.app/"` | |
VAR4=`defaults read /Applications/$VAR3/Contents/Info DVTPlugInCompatibilityUUID` | |
echo $VAR1 : $VAR4 |
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
[branchname] | |
# ==== Emojis ==== | |
# โ๏ธ :pencil2: Writing docs | |
# ๐ :bug: Fix bugs | |
# ๐ :+1: Feature improvements | |
# โจ :sparkles: Additional partial feature | |
# ๐ :tada: Grand major features added to celebrate | |
# โป๏ธ :recycle :Refactoring | |
# ๐ฟ :shower: Removal of obsolete functions or features. |
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
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { | |
FIRApp.configure() | |
let types: UIUserNotificationType = [UIUserNotificationType.Badge, UIUserNotificationType.Alert, UIUserNotificationType.Sound] | |
let settings: UIUserNotificationSettings = UIUserNotificationSettings( forTypes: types, categories: nil ) | |
application.registerUserNotificationSettings( settings ) | |
application.registerForRemoteNotifications() | |
return true | |
} |
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
local function keyCode(key, modifiers) | |
modifiers = modifiers or {} | |
return function() | |
hs.eventtap.event.newKeyEvent(modifiers, string.lower(key), true):post() | |
hs.timer.usleep(1000) | |
hs.eventtap.event.newKeyEvent(modifiers, string.lower(key), false):post() | |
end | |
end | |
local function remapKey(modifiers, key, keyCode) |
OlderNewer