DENTOMATIQ
2013-05-15 16:05:42

last time i used the jQuery.pulsate method from the UI effects bank i found the IE with ugly rectanglish outline box. without outline-radius it was annoying. unluckily enough, the pulsate method doesn't give you the opportunity to switch the outline off. the following customized jQuery.pulsate method call is enriched by the outline-option:

outline: false

completed with others:

$(".element").pulsate({ 
    color: '#00a', 
    reach: 50, 
    speed: 2000, 
    pause: 3, 
    glow: true, 
    outline: false, 
    repeat: true, 
    onHover: false 
});
Direct link
2012-09-03 16:05:38

They did it again and now the thing is somewhat faster. Needless to say that it could be useful and sometimes consumes more time then thought.

Do this:

rvm get head && rvm reinstall 1.9.3-perf --patch falcon --force-autoconf -j 3

and that:

export RUBY_HEAP_MIN_SLOTS=1000000
export RUBY_HEAP_SLOTS_INCREMENT=1000000
export RUBY_HEAP_SLOTS_GROWTH_FACTOR=1
export RUBY_GC_MALLOC_LIMIT=100000000
export RUBY_HEAP_FREE_MIN=500000
Direct link
2012-07-25 18:10:21
$('#navigation ul li a').each(function() { 
$(this).addClass(($(this).attr('href') == document.URL) ? 'current' : ''); 
});
Direct link
2012-01-18 17:46:39
gem 'ruby-debug19', :require => "ruby-debug" 
gem 'pry' 
gem 'pry-doc' 
gem 'ruby-debug-pry', :require => 'ruby-debug/pry'
Direct link
2012-01-09 11:05:46

there is a zsh-shell solution for the mac osx operating system.

get it here: https://github.com/robbyrussell/oh-my-zsh

have a .zshrc configuration file:

# Path to your oh-my-zsh configuration. 
ZSH=$HOME/.oh-my-zsh 

# Set name of the theme to load. 
# Look in ~/.oh-my-zsh/themes/ 
# Optionally, if you set this to "random", it'll load a random theme each 
# time that oh-my-zsh is loaded. 
ZSH_THEME="mh" 

# Example aliases 
alias zshconfig="mate ~/.zshrc" 
alias ohmyzsh="mate ~/.oh-my-zsh" 

# Set to this to use case-sensitive completion 
# CASE_SENSITIVE="true" 

# Comment this out to disable weekly auto-update checks 
# DISABLE_AUTO_UPDATE="true" 

# Uncomment following line if you want to disable colors in ls 
# DISABLE_LS_COLORS="true" 

# Uncomment following line if you want to disable autosetting terminal title. 
# DISABLE_AUTO_TITLE="true" 

# Uncomment following line if you want red dots to be displayed while waiting for completion 
# COMPLETION_WAITING_DOTS="true" 

# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) 
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ 
# Example format: plugins=(rails git textmate ruby lighthouse) 
plugins=(git battery bundler gem github history-substring-search osx rails3 rvm ruby svn textmate zsh-syntax-highlighting) 

source $ZSH/oh-my-zsh.sh 

# Customize to your needs... 
export PATH=/Users/%username/.rvm/gems/ruby-1.9.2-p290-patched@tmpapi/bin:/Users/%username/.rvm/gems/ruby-1.9.2-p290-patched@global/bin:/Users/%username/.rvm/rubies/ruby-1.9.2-p290-patched/bin:/Users/%username/.rvm/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/opt/local/bin:/opt/local/sbin

# load RVM 
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" 

export CLICOLOR=1 
export EDITOR="~/bin/mate -w" 
export SVN_EDITOR="~/bin/mate -w" 
export TEXEDIT='~/bin/mate -w -l %d "%s"'
Direct link

No documents to show.
You may write some.