This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| .wrapper { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| bottom: 0; | |
| right: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Faye | |
| class ClientMiddleware | |
| def initialize(app) | |
| @app = app | |
| end | |
| def get_client | |
| @fc ||= Faye::Client.new('http://localhost:3000/faye') | |
| end | |
| def call(env) | |
| env['faye.client'] = get_client |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require "net/http" | |
| require 'cgi' | |
| class Hash | |
| # Create a Query String from a Hash | |
| def to_query | |
| def to_query | |
| map { |k,v| | |
| ::CGI.escape(k.to_s)+"="+::CGI.escape(v) | |
| }.join("&") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Mediator = { | |
| events: {} | |
| listeners: {} | |
| fireEvent: (type,event)-> | |
| if @listeners[type] | |
| @listeners[type].apply @, event | |
| addListener: (type,callback) -> | |
| @listeners[type] = callback | |
| removeListener: (type) -> | |
| delete @listeners[type] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| convertCurrency = (input) -> | |
| value = $(input).val().replace /[^\d\.]/g, '' | |
| float = parseFloat(value) | |
| float = 0 if isNaN(float) | |
| precision = parseInt(input.attr('data-precision')) | |
| if precision is 0 | |
| val = float.toString().replace /\.\d*/, '' | |
| else | |
| val = float.toString().replace new RegExp("(\\.\\d{#{precision}})\\d*"), '$1' | |
| val = parseFloat val |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| WORDS = %w[a an app apple pi pie bug] | |
| class Applepie | |
| def initialize(text) | |
| @text = text | |
| end | |
| def words | |
| words = [] | |
| text = @text.dup |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AllCops: | |
| RunRailsCops: true | |
| Style/AccessModifierIndentation: | |
| EnforcedStyle: indent | |
| Style/AlignHash: | |
| Enabled: false | |
| Style/AlignParameters: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require "kemal" | |
| require "process" | |
| require "redis" | |
| require "secure_random" | |
| class Action | |
| def run | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Ext.Date where | |
| {-| Utility functions for dates. | |
| # Create | |
| @docs now, createDate | |
| # Querying | |
| @docs month, daysInMonth, datesInMonth |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type alias Model tag id err = | |
| { create : String -> List tag -> Task err tag | |
| , failAddress : Maybe (Signal.Address err) | |
| , remove : tag -> Task err tag | |
| , input : Ui.Input.Model | |
| , label : tag -> String | |
| , tags : List tag | |
| , removeable : Bool | |
| , id : tag -> id | |
| , disabled : Bool |