Use Git and git-flow to manage code.
If we're working across multiple major Drupal versions, prefix the branch with d7-
, d8-
etc.
Two options:
Use Git and git-flow to manage code.
If we're working across multiple major Drupal versions, prefix the branch with d7-
, d8-
etc.
Two options:
The philosophy behind Documentation-Driven Development is a simple: from the perspective of a user, if a feature is not documented, then it doesn't exist, and if a feature is documented incorrectly, then it's broken.
#!/usr/bin/perl -w | |
use 5.010; | |
use strict; | |
use warnings; | |
use autodie; | |
use WWW::Twilio::API; | |
my $lucky_person = shift || die "Usage: $0 phone-number"; | |
my $rick = WWW::Twilio::API->new( |
THIS GIST WAS MOVED TO TERMSTANDARD/COLORS
REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ | |
/* ========================================================================== | |
HTML5 display definitions | |
========================================================================== */ | |
/** | |
* Correct `block` display not defined in IE 8/9. | |
*/ |
/* | |
* I add this to html files generated with pandoc. | |
*/ | |
html { | |
font-size: 100%; | |
overflow-y: scroll; | |
-webkit-text-size-adjust: 100%; | |
-ms-text-size-adjust: 100%; | |
} |
Official Django Documentation: https://docs.djangoproject.com | |
The Django Book: http://www.djangobook.com | |
Django 1.5 Application Development Starter: http://www.packtpub.com/django-1-5-application-development-starter/book | |
Getting Started With Django: www.gettingstartedwithdjango.com | |
2 Scoops of Django: https://django.2scoops.org/ | |
Django in Depth: http://www.youtube.com/watch?feature=player_detailpage&v=t_ziKY1ayCo | |
Classy Class-Based Views: http://ccbv.co.uk/ | |
#django on irc.freenode.net |
core = 7.x | |
api = 2 | |
; Copy of core | |
projects[drupal][version] = "7.20" | |
projects[ascm_profile][type] = "profile" | |
projects[ascm_profile][download][type] = "git" | |
projects[ascm_profile][download][url] = "[email protected]:claudinec/ascm_profile.git" |
# /usr/bin/perl -w | |
use 5.010; | |
use strict; | |
use warnings; | |
use threads; | |
use Thread::Queue; | |
use autodie qw(:all); | |
use Image::ExifTool qw(ImageInfo); | |
use Data::Dumper; | |
use Imager; |