Monday, December 3, 2012

Erlang web framework comparison char

https://github.com/evanmiller/ChicagoBoss/wiki/Comparison-of-Erlang-Web-Framewo...

Saturday, September 22, 2012

Easing functions

http://easings.net...

Sunday, September 2, 2012

A substitute for 'ruby-debug' gem

Solution is here: http://archimedesnewton.com/2012/05/30/installing-ruby-debug-ide19-on-ruby-1-9-3-p125-from-railsinstaller-2-1-0/ http://stackoverflow.com/questions/8087610/ruby-debug-with-ruby-1-9-3 https://github.com/cldwalker/debug...

RVM cheat sheets

Source: http://cheat.errtheblog.com/s/rvm/ RVM home page: https://rvm.beginrescueend.com Install RVM ------------ See https://rvm.beginrescueend.com/rvm/install/ bash -s stable < <(curl -s \ https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer) Update RVM ---------- rvm get stable In case of problems try first with development version (maybe it's already fixed): rvm get head Very old installations might not support those update methods, just run the installer and reopen your terminal. List known rubies ----------------- ...

Installing MongoDB with Homebrew

Installation of mysql and mongodb with brew sometimes could end with an access error, for example: Error: Permission denied - /usr/local/var/log/mongodb Actually, there is no proper decision yet, so the short term solution might be the following: ls -al /usr/local/bin/brew #confirm brew ownership sudo chown root:wheel /usr/local/bin/brew sudo brew install mongodb sudo chown <your user>:<your group> /usr/local/bin/brew  #revert ownersh...

Wednesday, August 1, 2012

Working with a git branches

Addition info could be found at: http://evasive.ru/articles/git_kung-fu.html http://git-scm.com/about http://www.gitguys.com http://gitref.org First, clone a remote git repository and cd into it:     $ git clone git://example.com/myproject     $ cd myproject Next, look at the local branches in your repository:     $ git branch     * master But there are other branches hiding in your repository! You can see these using the `-a` flag:     $ git branch -a     * master    ...

Wednesday, July 25, 2012

Rails Best Practices | Use memoization

Rails Best Practices | Use memoizat...

Rails Best Practices | Use Observer

Rails Best Practices | Use Obser...

Saturday, July 7, 2012

Getting started Spree

Full documentation can be found here: http://railscasts.com/episodes/298-getting-started-with-spree http://guides.spreecommerce.com/getting_started.html https://github.com/spree/spree This is an approximate way of spree installation. Why 'approximate' - because docs may differ, and if installing with rails '3.2.3' causes no troubles, '3.2.6' version pulls with itself, in my case, an outdated versions of spree_core, _api and so on. 1. Create rails application rails new app cd app bundle install 2. In gemfile add gem 'spree', '1.1.1' bundle install This...

Saturday, June 30, 2012

Nokogiri installation error in Rails

Building native extensions.  This could take a while... ERROR:  Error installing nokogiri:     ERROR: Failed to build gem native extension.         /Users/user/.rvm/rubies/ruby-1.8.7-p352/bin/ruby extconf.rb checking for libxml/parser.h... yes checking for libxslt/xslt.h... yes checking for libexslt/exslt.h... yes checking for iconv_open() in iconv.h... no checking for iconv_open() in -liconv... yes checking for xmlParseDoc() in -lxml2... yes checking for xsltParseStylesheetDoc() in -lxslt... yes checking...

Tuesday, June 26, 2012

Dispatcher and SynchronizationContext classes in WPF

Use the Dispatcher when your code is tightly coupled to WPF.  Use the AsyncOperationManager when you need to queue something on the 'Context' thread. This works with Windows Forms, ASP .NET and WCF applications as well.  Avoid using the SynchronizationContext yourself. The AsyncOperationManager uses this mechanism internally.  Note:SynchronizationContext.Current object is of type DispatcherSynchronizationContext which is actually just a wrapper around the Dispatcher object and the Post and Send methods just delegate to Dispatcher.BeginInvoke...

Monday, June 25, 2012

A Tour of ParallelExtensionsExtras

http://blogs.msdn.com/b/pfxteam/archive/2010/04/04/9990342.a...

Monday, June 11, 2012

Using form_tag in Ruby on Rails

In controller a "new" action creates a sample object that is just a simple object, not ActiveRecord :   def new     @item = Item.new   end "Create" action is a post action   def create   end And in the view the following code just displays Item object fields and posts back a hash with fields filled in on the client side: This will create the following markup: Relevant references: http://guides.rubyonrail...

Friday, May 25, 2012

OpenSSL Errors and Rails – Certificate Verify Failed – Gem::RemoteFetcher::FetchError

A comprehensive guide that encompasses some posts below and different platforms to deal with this Ruby on Rails ssl error. http://railsapps.github.com/openssl-certificate-verify-failed.h...

Saturday, May 19, 2012

Updating OpenSSL on Mac OS 10.5.x

If you don't want to build OpenSSL from source and want an easy way of upgrading to the latest version of OpenSSL, I'd suggest taking the MacPorts route. Download the correct .dmg file from http://www.macports.org/install.php. Open it and run the installer. In the terminal, type: $ sudo port sync; sudo port selfupdate; sudo port install openssl Older versions OpenSSL may require installing newer zlib, and zlib in it's turn may require installing XCode 3.1.4: Here is the link to get XCode 3.1.4 somewhere at bottom of the page: http://connect.apple.com/cgi-bin/WebObjects/MemberSite.woa/wo/5.1.17.2.1.3.3.1.0.1.1.0.3.1.3.3.1 http://matthew.mceachen.us/blog/download-xcode-3-1-4-for-leopard-716.html To...

Wednesday, May 16, 2012

Ruby SSL Certificate Verify Failed

http://jimneath.org/2011/10/19/ruby-ssl-certificate-verify-failed.html http://www.macfreek.nl/memory/Install_CA_Certificates http://martinottenwaelter.fr/2010/12/ruby19-and-the-ssl-error http://stackoverflow.com/questions/4528101/ssl-connect-returned-1-errno-0-state-sslv3-read-server-certificate-b-certifi...

Saturday, May 5, 2012

Rails ExecJS::RuntimeError

(With the help of www.railszilla.com) If you’re riding Ruby on Rails V3.11 and get the error get rails ExecJS::RintimeError Then try installing the V8 Javascript interpreter into Ruby. Just edit your Gemfile and add gem 'therubyracer' then execute the famous bundle install This has also several advantages, such like: Evaluate Javascript from with in Ruby Embed your Ruby objects into the Javascript world Manipulate JavaScript objects and call JavaScript functions from Ruby API compatible with the The Ruby Rhi...

Friday, May 4, 2012

Rails 3.1 and Ruby 1.9.3p125: ruby-debug19 crashes with “Symbol not found: _ruby_threadptr_data_type”

download linecache19 and ruby-debug-base19 from RubyForge: % curl -OL http://rubyforge.org/frs/download.php/75414/linecache19-0.5.13.gem % curl -OL http://rubyforge.org/frs/download.php/75415/ruby-debug-base19-0.11.26.gem compile the two gems % gem install linecache19-0.5.13.gem Building native extensions.  This could take a while... Successfully installed linecache19-0.5.13 1 gem installed... % gem install ruby-debug-base19-0.11.26.gem -- --with-ruby-include=$SANDBOX/packages/ruby-1.9.3-p0Building native extensions.  This could...

Powered by Blogger.