- iTerm2 - 比內建的終端機漂亮且強大
- Sublime Text 3
- BetterTouchTool - 拖拉視窗最大化、增加特定程式的滑鼠手勢
- MacDown - 寫 Markdown 筆記方便,可以先寫好再貼到 GitHub、gist 作筆記。
- Alfred 2 - 取代內建的 Spotlight,可看 介紹。
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
#To Get List of Hardware | |
sudo networksetup -listallhardwareports | |
#To Disable IPv6 on Wifi Adapter | |
sudo networksetup -setv6off wi-fi | |
#To Disable IPv6 on Built-in Ethernet Adapter | |
sudo networksetup -setv6off Ethernet |
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
<?php namespace App\Services; | |
use GuzzleHttp\Client; | |
class OneSignal { | |
const API_URL_ADD_PLAYER = 'https://onesignal.com/api/v1/players'; | |
const API_URL_CREATE_PUSH = 'https://onesignal.com/api/v1/notifications'; | |
const DEVICE_TYPE_IOS = 0; | |
const DEVICE_TYPE_ANDROID = 1; |