I hereby claim:
- I am RodrigoEspinosa on github.
- I am rec (https://keybase.io/rec) on keybase.
- I have a public key whose fingerprint is 03EF 561A 10C2 77E6 1A76 EDDF AA1E BB6C 30D9 DA76
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # Testing. |
| ## | |
| # Based on http://support.ghost.org/how-to-upgrade/ | |
| # Backup the content. | |
| # TODO: Add date suffix. | |
| cp -R ./content /tmp/content-backup | |
| cp ./config.js /tmp/config.js-backup | |
| # Download latest version of Ghost. | |
| curl -LOk https://ghost.org/zip/ghost-latest.zip |
| var Blessed = require('blessed'); | |
| var screen = Blessed.screen({ | |
| smartCSR: true, | |
| useBCE: true | |
| }); | |
| var ChatHistory = function (options) { | |
| if (!(this instanceof Blessed.Node)) { | |
| return new ChatHistory(options); |
| from __future__ import unicode_literals | |
| import functools | |
| from django.core.cache import cache | |
| class cached(object): | |
| """Save the return of the function on the cache. | |
| """ |
| mov-to-gif() { | |
| ffmpeg -i $1 -vf "scale=1024:-1:flags=lanczos" -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=0 --delay=7 # | |
| } |
| import logging | |
| from haystack.management.commands import update_index | |
| class Command(update_index.Command): | |
| help = 'Custom haystack update index command that disable logging' | |
| def handle(self, *args, **option): |
| import json | |
| class Model(object): | |
| __json_file = None | |
| __dict_file = None | |
| def __init__(self, *args, **kwargs): | |
| for item in kwargs: |
| Date.prototype.getThisWeek = function () { | |
| var y = this.getFullYear(), | |
| m = this.getMonth(), | |
| f = this.getDate() - this.getDay(), | |
| l = f + 6; | |
| return [new Date(y, m, f), new Date(y, m, l)]; | |
| }; | |
| Date.prototype.getThisMonth = function () { |
| (function ($) { | |
| $.fn.fileUpload = function (options) { | |
| var opts = $.extend({}, $.fn.fileUpload.defaults, options); | |
| this.on('change', function (event) { | |
| event.preventDefault(); | |
| createAjaxRequest(createFormData(this)); | |
| }); | |
| function createFormData (self) { |