Skip to content

Instantly share code, notes, and snippets.

View joeldrapper's full-sized avatar
🇺🇦
Slava Ukraini

Joel Drapper joeldrapper

🇺🇦
Slava Ukraini
View GitHub Profile
@joeldrapper
joeldrapper / formatter.coffee
Created September 26, 2022 18:34
Trix stuff
class @TrixFormatter extends @BaseObject
constructor: (editor) ->
@editor = editor
format: ->
@position = @editor.getPosition()
@text = @editor.getDocument().toString()
@before = @text.substr 0, @position
@after = @text.substr @position, @text.length
@character = @text.charAt(@position - 1)
@joeldrapper
joeldrapper / attribute_memoization.rb
Last active December 13, 2022 12:24
Attribute Memoization
module AttributeMemoization
def attr_accessor(*names, &block)
return super(*names) unless block_given?
attr_reader(*names, &block)
attr_writer(*names)
end
def attr_reader(*names, &block)
return super(*names) unless block_given?
@joeldrapper
joeldrapper / object.rb
Last active October 20, 2022 15:28
Object yielders
class Object
def then_maybe
yield(self) || self
end
def then_if(condition)
condition ? yield(self) : self
end
def then_unless(condition)
@joeldrapper
joeldrapper / application_controller.coffee
Last active March 7, 2024 10:33
Stimulus Controller with CoffeeScript2 Getters and Setters
import { Controller } from "stimulus"
export default class extends Controller
@get: (name, getter) ->
Object.defineProperty @::, name,
get: getter
configurable: true
@set: (name, setter) ->
Object.defineProperty @::, name,

Keybase proof

I hereby claim:

  • I am joeldrapper on github.
  • I am joeldrapper (https://keybase.io/joeldrapper) on keybase.
  • I have a public key ASCZ2b-hvm_0Cs0MyWXInpqRI__fqd5wVAZBNBUe0nHaiQo

To claim this, I am signing this object:

@joeldrapper
joeldrapper / native.css
Last active April 13, 2017 12:22
Native Theme
.editor-content .editable#note-text-editor {
line-height: 1.6 !important;
font-family: -apple-system, BlinkMacSystemFont, 'avenir next', avenir, helvetica, 'helvetica neue', ubuntu, roboto, noto, 'segoe ui', arial, sans-serif !important;
padding: 21px;
}
/* General */
body {
# encoding: UTF-8
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
#
# Note that this schema.rb definition is the authoritative source for your
# database schema. If you need to create the application database on another
# system, you should be using db:schema:load, not running all the migrations
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
# you'll amass, the slower it'll run and the greater likelihood for issues).
@joeldrapper
joeldrapper / fout.css
Last active April 29, 2016 13:56
FOUT
@keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}
html {
animation-duration: 0.2s;
animation-delay: 2s;
animation-name: fadeIn;
animation-fill-mode: forwards;
@joeldrapper
joeldrapper / widowfix.liquid
Created January 25, 2016 23:50
Widowfix for Shopify
{% assign words = widowfix | split: ' ' %}
{% for word in words %}{% if forloop.first %}{{word}}{% elsif forloop.last %} {{word}}{% else %} {{word}}{% endif %}{% endfor %}
@joeldrapper
joeldrapper / cleanup.js
Last active November 23, 2016 12:12
Cleanup WordPress
function cleanup () {
var textContent = jQuery('.wp-editor-area').val();
textContent = textContent
.replace(/(\<center\>)(["a-z,.!?':;@£$%=\[\]{}^&*()_”“–—‘’\-\+0-9 \n]*)(\<\/center\>)/ig, "<blockquote>$2</blockquote>")
.replace(/(\<img.+\/\>)/g, "\n\n")
.replace(/(\<i\>)(.*)(\<\/i\>)/g, "<em>$2</em>")
.replace(/(\<b\>)(.*)(\<\/b\>)/g, "<strong>$2</strong>");
jQuery('.wp-editor-area').val(textContent);
};