Visit my blog or connect with me on Twitter
git init
or
# OBJS specifies which files to compile as part of the project | |
OBJS = main.cpp | |
# CC specifies which compiler we're using | |
CC = g++ | |
# INCLUDE_PATHS specifies the additional include paths we'll need | |
INCLUDE_PATHS = -I/usr/local/include -I/opt/X11/include | |
# LIBRARY_PATHS specifies the additional library paths we'll need |
Visit my blog or connect with me on Twitter
git init
or
# Project: https://github.com/getsentry/sentry | |
# Doc: https://docs.getsentry.com/on-premise/server/installation/python/ | |
udo apt-get update | |
sudo apt-get install python-virtualenv | |
sudo apt-get install python-setuptools | |
sudo apt-get install python-pip | |
sudo apt-get install libxslt1-dev | |
sudo apt-get install gcc |
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { | |
if ([application respondsToSelector:@selector(registerUserNotificationSettings:)]) { | |
UIUserNotificationSettings *userNotificationSettings = [UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeAlert | UIUserNotificationTypeBadge) | |
categories:nil]; | |
[application registerUserNotificationSettings:userNotificationSettings]; | |
} | |
return YES; | |
} |