I hereby claim:
- I am selecsosi on github.
- I am selecsosi (https://keybase.io/selecsosi) on keybase.
- I have a public key whose fingerprint is 64F2 EBCF 94C6 D354 E679 6A74 80D1 0CF2 621B 3B66
To claim this, I am signing this object:
| version: '3.5' | |
| services: | |
| nginx: | |
| build: | |
| context: . | |
| dockerfile: ./nginx/Dockerfile | |
| image: sngfnch/nginx | |
| restart: always | |
| ports: | |
| - "80:80" |
| var ObservableInputField = Backbone.View.extend({ | |
| dataKey: "", | |
| bindable: false, | |
| lastSavedValue: null, | |
| defaultOptions: { | |
| selectorPrefix: "" | |
| }, | |
| events: { | |
| "keyup": "onChange", | |
| "focus": "onFocus", |
I hereby claim:
To claim this, I am signing this object:
| def register_draft_only(model_class, fields, follow, format): | |
| """ | |
| version of the reversion register function that only registers drafts and | |
| ignores public models | |
| """ | |
| revision_manager = reversion.revision | |
| if revision_manager.is_registered(model_class): | |
| raise RegistrationError( | |
| "%r has already been registered with Reversion." % model_class) |
| /** | |
| * Task to lookup the LatLng of an address | |
| */ | |
| public class SearchForLocationTask extends AsyncTask<String, Void, LatLng> { | |
| private static final String TAG = SearchForLocationTask.class.getSimpleName(); | |
| Context mContext; | |
| //Get static reference to requestQueue | |
| RequestQueue mRequestQueue = MyApplication.getInstance().getRequestQueue(); |