List of amazing websites for developers.

amazing tutorial for the new rubist on the ruby…

JavaScript, and other

  • The modular backend platform for web developers.stamplay
  • JavaScript, Agular blog scotch
  • Effortless web publishing through Dropbox harp
  • Zapier connects the web apps you use to easily move your data and automate tedious tasks Zapier
  • For the data storing like firebse parse)

hosting, cloud editor, terminals

Good websites with great content and blogs.


Ruby/Rails gems, Good resouces, Tricks

  • ParallelTest
  • Sucker_puch Sucker Punch is a Ruby asynchronous processing library using Celluloid, heavily influenced by Sidekiq and girl_friday.
  • Ror, ruby tricks
    • Bundle install is slow for this, There is parallel bundle options What is the number for the parallel jobs It will be N-1 (N:number of core cpu have) how to find number of core machine have. sysctl -n hw.ncpu, lscpu.

      ```
      		  
        //Save time using parallel install
          $ bundle config --global --jobs 7 // total cup(8) - 1
          $ time bundle install
      
      ```
      
      If you have problem with the parallel bundle than fallback to the default
      `vim ~/.bundle/config`
      
      • To serve precomplied assets on the develpment

        			
              RAILS_EVN=development rake assets:precomplie