Skip to content

Instantly share code, notes, and snippets.

Hi John,

Our PRO features are:

Keep your murals organized in Rooms

  • Create rooms and manage your different murals, just like creating folders
  • Invite people directly to a room. Room members get access to all murals inside a room

Export and backup your Murals

  • Save static versions of your murals as high-resolution JPG images, so you don't miss any detail

Borrar un Mural requiere de dos pasos:

  • Primero, haz click en ... y selecciona Archive Mural

  • Después, selecciona de los filtros de la barra superior la opción "Archived"

Deleting a Mural is a two-step process:

  • First, click on the ... and then select Archive Mural

  • Then, select the filter that says "Archived" from the filters bar

if(!e['feed']['entry']) return;
var data = e['feed']['entry'].map(function(e){
if(!e['gd$email']) return null;
var entry = { name: e['title']['$t'], email: e['gd$email'][0]['address'] };
if(entry.email.indexOf('+') >= 0 || entry.email.indexOf('reply.mural.ly') >= 0 ) return null;
return entry;
}).filter(function(e){ return !!e; });
var unique = goog.array.uniq(data, false, function(e){ return e['email']; });
var util = require('util-ext'),
oauth = require('oauth');
module.exports.link = function(req, res) {
var url = util.format("https://api.singly.com/oauth/authenticate?client_id=%s&redirect_uri=%s&scope=%s&service=%s",
process.env.SINGLY_APP_ID,
process.env.MURALLY_HOST + "/connect/success",
"https://www.google.com/m8/feeds",
req.params.service);
def save_image(img_name, image_content, container_name, image_type)
WAZ::Storage::Base.establish_connection(options) do
cont = container(container_name)
cont.store(img_name, image_content, image_type) if cont
end
end
Delivery to the following recipient failed permanently:
notifications@github.com
Technical details of permanent failure:
Google tried to deliver your message, but it was rejected by the recipient domain. We recommend contacting the other email provider for further information about the cause of this error. The error that the other server returned was: 550 550-5.1.1 The email account that you tried to reach does not exist. Please try
550-5.1.1 double-checking the recipient's email address for typos or
550-5.1.1 unnecessary spaces. Learn more at
550 5.1.1 http://support.google.com/mail/bin/answer.py?answer=6596 in3si6651392igc.17 (state 13).
@johnnyhalife
johnnyhalife / gist:4226524
Created December 6, 2012 17:54
install imagemagick
cd /tmp
curl -OL ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz
tar -xzf ImageMagick.tar.gz
cd ImageMagick-6.8.0-7/
./configure --prefix=/usr/local --disable-static --with-modules --without-perl --without-magick-plus-plus --with-quantum-depth=8 --disable-openmp --with-gs-font-dir=/usr/local/share/ghostscript/fonts
make
brew uninstall imagemagick
make install
sudo gem install rmagic
@johnnyhalife
johnnyhalife / upload.js
Created December 2, 2012 20:34
Backup to Azure
var azure = require('azure'),
fs = require('fs');
var container = "mongo-backups"
var blobService = azure.createBlobService();
blobService.createContainerIfNotExists(container, {}, function (error) {
if(error) return console.error(error);
var fileName = process.argv[2];
module.exports = function(grunt){
// Google Closure Tools for Grunt
grunt.loadNpmTasks('grunt-closure-tools');
grunt.initConfig({
/** Minification using Uglify.js **/
concat: {
/** External Dependencies **/
external: {
src: ['./static/js/lib/jquery.1.7.1.min.js', './static/js/lib/jquery-ui.1.8.14.min.js', './static/js/lib/iscroll.js', './static/js/lib/browserDetect.js', './static/js/lib/json2.js', './static/js/lib/color.js', './static/js/lib/scrollfix.js', './static/js/lib/querystring-0.9.0-min.js', './static/js/lib/jquery-plugin/jquery.ui.ipad.js', './static/js/lib/jquery-plugin/jquery.tapandhold.js', './static/js/lib/jquery-plugin/transform.js', './static/js/lib/jquery-plugin/jgestures.js', './static/js/lib/jquery-plugin/jquery.qtip-1.0.0-rc3.js', './static/js/lib/px-loader/PxLoader.js', './static/js/lib/px-loader/PxLoaderImage.js', './static/js/lib/jquery-plugin/jquery.imageLoaded.js', './static/js/lib/jquery-plugin/jquery.infinitescroll.min.js', './static/js/lib/shadowbox.js', './st