I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| * { | |
| font-size: 12pt; | |
| font-family: monospace; | |
| font-weight: normal; | |
| font-style: normal; | |
| text-decoration: none; | |
| color: black; | |
| cursor: default; | |
| } |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| {% get_blocks_for campaign 'area' as foo %} | |
| @register.assignment_tag | |
| def get_blocks_for_campaign(campaign, area): | |
| return campaign.whatever_dict.get(area) |
| var ImgWidget = function(){ | |
| // Keeps "currently" up to date next to the image widget | |
| // HELPERS | |
| ////////// | |
| var _truncate_temp_file = function(filename){ | |
| value = filename.split('/'); | |
| value = value[0].split('\\'); // appease windows | |
| value = value[value.length - 1]; |
| # {}.get()'s second argument only kicks in if there's no key. | |
| # None, '', or falsy values are perfectly okay. | |
| # If you actually want ot fall back to a default, use or. | |
| In [1]: data = {'red':None} | |
| In [2]: data.get('red','backup') | |
| In [3]: data.get('red') or 'backup' | |
| Out[3]: 'backup' |
| /* | |
| SHOEBOX v4.0 | |
| */ | |
| // SHIMS | |
| //////// | |
| if (typeof(log) === 'undefined') { | |
| function log(s) { |
| import sys | |
| if 'runserver' in sys.argv: | |
| from django.conf import settings | |
| urlpatterns += patterns('', | |
| (r'^media/(?P<path>.*)$', 'django.views.static.serve', | |
| {'document_root': settings.MEDIA_ROOT, 'show_indexes': True}), | |
| (r'^static/(?P<path>.*)$', 'django.views.static.serve', | |
| {'document_root': "%s/static/" % settings.PROJECT_ROOT, 'show_indexes': True}), | |
| ) |
| FileDiffs | |
| Gist | |
| Git | |
| HTML (Django) | |
| Indent XML | |
| Pretty JSON | |
| SFTP | |
| SVN | |
| SideBarEnhancements | |
| SublimeEvernote |
| In [1]: from django.utils.translation import ugettext as _ | |
| In [2]: [_('red'),_('blue')] | |
| Out[2]: [u'red', u'blue'] | |
| In [3]: [_('red'),_('blue')] | |
| TypeError Traceback (most recent call last) | |
| /Users/jg026715/.virtualenvs/iqh/lib/python2.7/site-packages/django/core/management/commands/shell.pyc in <module>() | |
| ----> 1 [_('red'),_('blue')] |