http://fabricjs.com/fabric-intro-part-1/#path_and_pathgroup
Forked from Wade Harrell's Pen Fabric.js basic example.
A Pen by Pablo Formoso on CodePen.
| *.pbxproj -crlf -diff -merge |
| namespace :status do | |
| desc "Displays memory usage" | |
| task :memory do | |
| mem = capture("free -m | grep Mem").squeeze(" ").split(" ")[1..-1] | |
| total, used, free, shared, buffers, cached = mem | |
| puts "\nMemory in (MBs)" | |
| puts "----------------------------" | |
| puts "Total: #{total}" | |
| puts "Used: #{used}" |
| namespace :system_folder do | |
| desc "Download System Folder" | |
| task :sync do | |
| get "#{shared_path}/system/", "tmp/", :recursive => true | |
| end | |
| end |
| require File.expand_path(File.dirname(__FILE__) + "/../sanitize_tinymce_text") | |
| include SanitizeTinymceText | |
| namespace :html do | |
| desc "Limpiar descripciones guarrillas con css inline y spans" | |
| task :clean => :environment do | |
| Publication.all.each do |pub| | |
| pub.abstract = sanitize_text(pub.abstract) | |
| pub.save |
http://fabricjs.com/fabric-intro-part-1/#path_and_pathgroup
Forked from Wade Harrell's Pen Fabric.js basic example.
A Pen by Pablo Formoso on CodePen.
| import android.content.Context; | |
| import android.support.v7.widget.RecyclerView; | |
| import android.util.AttributeSet; | |
| import android.view.View; | |
| import org.jetbrains.annotations.NotNull; | |
| import org.jetbrains.annotations.Nullable; | |
| public class EmptyRecyclerView extends RecyclerView { | |
| @Nullable View emptyView; |