I hereby claim:
- I am skyuplam on github.
- I am terrencelam (https://keybase.io/terrencelam) on keybase.
- I have a public key ASCpnW1doCBHumcvha9IukxW2DvxyCIXJcRTo3MtjKtEuAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
set -g default-command 'reattach-to-user-namespace $SHELL --login' | |
set-option -g default-shell $SHELL | |
set -g default-terminal 'screen-256color' | |
setw -g automatic-rename off | |
setw -g mode-keys vi | |
setw -g mode-mouse on | |
setw -g mouse-select-pane on | |
setw -g mouse-utf8 on | |
unbind C-b |
# Example of combining Flask-Security and Flask-Admin. | |
# by Steve Saporta | |
# April 15, 2014 | |
# | |
# Uses Flask-Security to control access to the application, with "admin" and "end-user" roles. | |
# Uses Flask-Admin to provide an admin UI for the lists of users and roles. | |
# SQLAlchemy ORM, Flask-Mail and WTForms are used in supporting roles, as well. | |
from flask import Flask, render_template | |
from flask.ext.sqlalchemy import SQLAlchemy |
// ReadWriter.h | |
@interface ReadWriter | |
- (id)initWithFile:(NSString *)file; | |
@end | |
@interface ReadWriter (Reader) | |
- (NSData *)readError:(NSError * __autoreleasing *)error; | |
@end | |
@interface ReadWriter (Writer) // by using informal protocols we skip not implemented warnings from the compiler |