Chrome standalone download
Default
[info]kossoy

Here:
http://www.google.com/chrome/eula.html?extra=devchannel&hl=en&standalone=1

comment in blog.kossoy.com
Tags:
  • Add to Memories

Command line clipboard copy from file in Mac OS X
Default
[info]kossoy
cat ~/.ssh/id_rsa.pub | pbcopy
comment in blog.kossoy.com
Tags:
  • Add to Memories

Nginx on Mac OS X
Default
[info]kossoy

Modified from Nginx on Mac OS X Snow Leopard in 2 Minutes post.

#!/usr/bin/env bash

PCRE_DIR="pcre-8.12"
PCRE_LINK="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/$PCRE_DIR.tar.gz"

NGNIX_DIR="nginx-0.8.54"
NGNIX_LINK="http://nginx.org/download/$NGNIX_DIR.tar.gz"

## DOWNLOADS
curl -OL h $PCRE_LINK > $PCRE_DIR.tar.gz
curl -OL h http://nginx.org/download/$NGNIX_DIR.tar.gz > $NGNIX_DIR.tar.gz

## Install PCRE
tar xvzf $PCRE_DIR.tar.gz
cd $PCRE_DIR
./configure --prefix=/usr/local
make
sudo make install
cd ..

## Install Nginx
tar xvzf $NGNIX_DIR.tar.gz
cd $NGNIX_DIR
./configure --prefix=/usr/local --with-http_ssl_module
make
sudo make install

To run:

sudo /usr/local/sbin/nginx -p /usr/local/

To stop

sudo /usr/local/sbin/nginx -s stop
comment in blog.kossoy.com
Tags:
  • Add to Memories

Cat’s gopniks
Default
[info]kossoy

what do you want?

comment in blog.kossoy.com
Tags:
  • Add to Memories

ABiBas is alive!
Default
[info]kossoy

Road Nr. 4 real photo (SuRaBu vehicle):
Surabu is a new abibas

comment in blog.kossoy.com
Tags: ,
  • Add to Memories

SSL connect from RubyMine (win32)
Default
[info]kossoy

SSL connection is used when using, for example, RubyMine integration with bugtrackers or Task servers, like Redmine
or Jira.

If certificate is not installed to RubyMine’s keystore within jre,
it fails with an error:

sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

To avoid this:
1. Export certificate *.cer

2.

cd c:\Program Files (x86)\JetBrains\RubyMine 3.0.1\jre\jre\lib\security\

3.

keytool -import -alias myAlias -keystore cacerts -file c:\myCertificate.cer
comment in blog.kossoy.com
Tags:
  • Add to Memories

700 percent downloaded
Default
[info]kossoy

comment in blog.kossoy.com
Tags:
  • Add to Memories

Internet from HOT/013 — tryout
Default
[info]kossoy

Test passed

comment in blog.kossoy.com
  • Add to Memories

Installing mysql gem on Leopard
Default
[info]kossoy
  • Get MySQL from http://dev.mysql.com/downloads/mysql/. (Get 64-bit dmg)
  • Install it
  • Command for gem install:
    sudo env ARCHFLAGS="-arch x86_64" \
    gem install mysql -- \
    --with-mysql-config=/usr/local/mysql/bin/mysql_config
    
comment in blog.kossoy.com
Tags:
  • Add to Memories

Are you russian?
Default
[info]kossoy
You are 23% Russian!
 

Who are you kidding? Just because you took a summer language course in Petersburg doesn’t make you a Russian.

How Russian Are You?
Take More Quizzes

comment in blog.kossoy.com
Tags:
  • Add to Memories

You are viewing [info]kossoy's journal