Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| #!/usr/bin/env ruby | |
| # A pre-commit hook script to ensure that no local gem dependencies (gem 'asdf', path: '~/local') | |
| # exist in your Gemfile before commiting.` | |
| # Allows gems to be loaded from source within the current project directory, but not from outside. | |
| puts 'Checking for local dependencies in your Gemfile.' | |
| ROOT_PATH = File.expand_path('../../..', __FILE__) | |
| NESTED_GEMSPECS = Dir["#{ROOT_PATH}/**/*.gemspec"] | |
| GEMFILE = ENV['BUNDLE_GEMFILE'] || File.join(ROOT_PATH, 'Gemfile') |
| 'use strict' | |
| config = require './config' | |
| cache_lifetime = 10 # days | |
| module.exports = (grunt) -> | |
| grunt.loadNpmTasks 'grunt-s3' | |
| grunt.loadNpmTasks 'grunt-contrib-concat' | |
| grunt.loadNpmTasks 'grunt-contrib-clean' | |
| grunt.loadNpmTasks 'grunt-contrib-uglify' | |
| grunt.loadNpmTasks 'grunt-contrib-coffee' |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
| NOTE: Easier way is the X86 way, described on https://www.genymotion.com/help/desktop/faq/#google-play-services | |
| Download the following ZIPs: | |
| ARM Translation Installer v1.1 (http://www.mirrorcreator.com/files/0ZIO8PME/Genymotion-ARM-Translation_v1.1.zip_links) | |
| Download the correct GApps for your Android version: | |
| Google Apps for Android 6.0 (https://www.androidfilehost.com/?fid=24052804347835438 - benzo-gapps-M-20151011-signed-chroma-r3.zip) | |
| Google Apps for Android 5.1 (https://www.androidfilehost.com/?fid=96042739161891406 - gapps-L-4-21-15.zip) | |
| Google Apps for Android 5.0 (https://www.androidfilehost.com/?fid=95784891001614559 - gapps-lp-20141109-signed.zip) |
| sudo wget http://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo -O /etc/yum.repos.d/epel-apache-maven.repo | |
| sudo sed -i s/\$releasever/6/g /etc/yum.repos.d/epel-apache-maven.repo | |
| sudo yum install -y apache-maven | |
| mvn --version |
| 2.1.2 :004 > pp Google::Contacts.new(client).contacts | |
| [{:emails=>{:other=>{:address=>"[email protected]", :primary=>true}}, | |
| :phone_numbers=> | |
| {:main=>"(555) 123-1234", :home=>"123-123-1234", :mobile=>"555-555-5555"}, | |
| :handles=> | |
| {:home=>{:address=>"something", :protocol=>"AIM"}, | |
| :other=>{:address=>"something-else", :protocol=>"AIM"}}, | |
| :nickname=>nil, | |
| :websites=>[], |
| const arr1 = [1,2,3] | |
| const arr2 = [4,5,6] | |
| const arr3 = [...arr1, ...arr2] //arr3 ==> [1,2,3,4,5,6] |
| brew tap homebrew/versions | |
| brew install v8-315 | |
| gem install libv8 -v '3.16.14.13' -- --with-system-v8 | |
| gem install therubyracer -- --with-v8-dir=/usr/local/opt/v8-315 | |
| bundle install |