I hereby claim:
- I am danielfarrell on github.
- I am danielfarrell (https://keybase.io/danielfarrell) on keybase.
- I have a public key ASBB3j1toJr6T5Hl_UWECdXAnBmGajjX23ib78qAwWnZ2Qo
To claim this, I am signing this object:
import graphene | |
from graphene_django.types import DjangoObjectType | |
class Customer(graphene.Interface): | |
id = graphene.Int() | |
email = graphene.String() | |
name = graphene.String() | |
first_name = graphene.String() | |
last_name = graphene.String() | |
phone = graphene.String() |
I hereby claim:
To claim this, I am signing this object:
timezone = forms.ChoiceField(choices=[('', 'Timezone')] + [(x, x) for x in common_timezones]) |
The purpose of this document is to outline the Scrumban process for use in Mobelux projects. This is a living document, and subject to change.
Some teams may choose to implement a Scrumban(Hybrid Scrum and Kanban) process on development projects. This is a good fit for new products and other projects that could have lots of changes or team availability inconsistencies.
diff --git a/src/pdf2image.cc b/src/pdf2image.cc | |
index d0d5c95..4a8d359 100644 | |
--- a/src/pdf2image.cc | |
+++ b/src/pdf2image.cc | |
@@ -295,12 +295,6 @@ int main(int argc, char *argv[]) { | |
globalParams->setPSPaperHeight(h); | |
globalParams->setPSNoText(gFalse); | |
- psOut = new PSOutputDev(psFileName->getCString(), doc->getXRef(), | |
- doc->getCatalog(), firstPage, lastPage, psModePS); |
BackSupport.Preventable = (object) -> | |
prototype = object.prototype | |
init = prototype.initialize | |
prototype.initialize = -> | |
if @preventable | |
_.each @preventable, (func) => | |
@[func] = _.wrap @[func], (func, e) => | |
e.preventDefault() | |
func = _.bind func, @ |