Contributions welcome.
| Service | CLI? | Max Size | Direct Access | Files Expire? | Can Limit Download Count? | Password Protection | HTTPS |
|---|---|---|---|---|---|---|---|
| c-v.sh | curl -F |
4 GB | Yes | Yes, by Mister Alg. | No | No | Enforced |
| FileIO | Yes | 5 GB | Yes | Optionally | Fixed @ 1 | No | Yes |
| // Or any object that yields a set of { key: value } pairs. | |
| const x = { | |
| * [Symbol.iterator] () { | |
| yield { done: false, value: { dog: 'cat' } } | |
| yield { done: false, value: { dawg: 'cayt' } } | |
| } | |
| } | |
| function ES7ObjectAssign (target, source) { | |
| for (const sourceObject of source) { |
| maps.googleapis.com/* | |
| jivosite.com/* | |
| connect.facebook.net/* | |
| syndication.twitter.com/* | |
| small.chat/* | |
| pubnub.com/time/* | |
| pubnub.com/v2/* | |
| disqus* |
| #!/bin/zsh | |
| # Defines transfer alias and provides easy command line file. | |
| # | |
| # Authors: | |
| # Remco Verhoef <[email protected]> | |
| # Prajjwal Singh <[email protected]> | |
| # | |
| # Dependencies: | |
| # * curl |
| <!DOCTYPE HTML> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Canvas Minesweeper</title> | |
| <style type="text/css"> | |
| #container { width: 1250px; margin: 0 auto } | |
| </style> | |
| </head> | |
| <body> |
I hereby claim:
To claim this, I am signing this object:
| class User < ApplicationRecord | |
| # === [Constants] ========== | |
| # === [Attributes] ========= | |
| # === [Extensions] ========= | |
| # === [Relationships] ====== | |
| # === [Validations] ======== |
| require_relative 'library' | |
| # This is the library: | |
| # | |
| # class Lord | |
| # def self.printar(x) | |
| # puts x.reverse | |
| # end | |
| # end |
| point | |
| hermite | |
| cubic | |
| box | |
| gaussian | |
| catrom | |
| triangle | |
| quadratic | |
| mitchell | |
| lanczos |
| class Array | |
| def m_return(value) | |
| [value] | |
| end | |
| def m_bind(f) | |
| self.map(&f).flatten | |
| end | |
| end |