I hereby claim:
- I am pbalduino on github.
- I am pbalduino (https://keybase.io/pbalduino) on keybase.
- I have a public key ASCW2vRNEzDLsc5fyymfU6m4lOcuPRluzS0WqxyxkLMWnQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
;; :dependencies [[org.clojure/clojure "1.10.1"] | |
;; [overtone/overtone "0.10.6"] | |
;; [leipzig "0.10.0"]] | |
;; Reference: https://musescore.com/user/5715836/scores/2665176 | |
(ns jukebox.megalovania | |
(:require [overtone.live :refer :all] | |
[leipzig.melody :refer [all bpm is phrase tempo then times where with]] | |
[leipzig.live :as live] |
(ns generate-dates | |
(:require [clojure.spec.alpha :as s] | |
[clojure.spec.gen.alpha :as gen])) | |
(def positive-long (s/and integer? pos?)) | |
(s/def ::timestamp | |
(s/with-gen | |
positive-long | |
#(gen/fmap (fn [number] (- (inst-ms (java.time.Instant/now)) number)) (s/gen positive-long)))) |
/* component */ | |
<script> | |
export default { | |
name: 'sample', | |
filters: { | |
round: function (value) { | |
if (!value) return NaN; | |
return Math.round(value); | |
} |
https://www.slideshare.net/nzakas/high-performance-javascript-yuiconf-2010 | |
https://www.slideshare.net/nzakas/writing-efficient-javascript/24-Scope_Chain_Augmentation_The_with | |
https://www.slideshare.net/caelumdev/otimizaes-de-performance-web-desafios-do-mundo-mobile | |
https://www.slideshare.net/caelumdev/performance-web-alm-do-carregamento | |
https://www.w3schools.com/js/js_performance.asp | |
Compute | |
EC2/AMI -> Compute Engine | |
Elastic Beanstalk -> App Engine | |
ECS -> Container Engine | |
Lambda -> Cloud Functions | |
Storage | |
S3 -> Cloud Storage |
TO star | |
repeat 5 [ repeat 100 [ fd 1 wait 1 ] rt 144 ] | |
END | |
clearscreen | |
star |
source 'http://gemcutter.org' | |
gem "bj" | |
gem "hpricot", "~> 0.6" | |
gem "sqlite3-ruby", "~> 1.3.1", :require => "sqlite3" | |
gem "aws-s3", :lib => "aws/s3" | |
gem "rails", "= 2.3.10" | |
gem "authlogic", "~> 2.1.6" | |
group :development, :test do | |
gem 'mongrel', :require => false |
# Be sure to restart your server when you modify this file | |
# Specifies gem version of Rails to use when vendor/rails is not present | |
RAILS_GEM_VERSION = '2.3.10' unless defined? RAILS_GEM_VERSION | |
# Bootstrap the Rails environment, frameworks, and default configuration | |
require File.join(File.dirname(__FILE__), 'boot') | |
Rails::Initializer.run do |config| | |
# Settings in config/environments/* take precedence over those specified here. |