Adres: ul. Juliusza Lea 10a/7, ul. Królewska 2/2
- miesiąc - 420 + VAT
- 10 dni - 230 + VAT
sinon / chai / mocha / js-tests | |
_____________________________________ | |
#### chai | |
expect(subject).not.equal(expected) | |
.a('string') | |
.instanceof(Foo) |
#!/bin/bash | |
#byzanz-record-window | |
#dependency checks | |
if ! which xwininfo &>/dev/null; then | |
echo "Dependency xwininfo not met." | |
deps_ok=NO | |
fi | |
if ! which byzanz-record &>/dev/null; then | |
echo "Dependency byzanz not met." |
app = angular.module "rcm" | |
### | |
Equalize panel heights inside the info section. | |
Example usage: | |
<tabset> | |
<tab rcm-equal-panel-heights> | |
</tab> | |
</tabset> |
Adres: ul. Juliusza Lea 10a/7, ul. Królewska 2/2
> cat /etc/fstab | |
# /etc/fstab: static file system information. | |
# | |
# Use 'blkid' to print the universally unique identifier for a | |
# device; this may be used with UUID= as a more robust way to name devices | |
# that works even if disks are added and removed. See fstab(5). | |
# | |
# <file system> <mount point> <type> <options> <dump> <pass> | |
/dev/mapper/sil_bjagdiceacde6 / ext4 noatime,nodiratime,nobarrier,errors=remount-ro 0 1 | |
/dev/mapper/sil_bjagdiceacde1 /boot ext4 noatime,nodiratime,defaults 0 2 |
#!/usr/bin/env bash | |
apt-get -y update | |
apt-get -y install build-essential zlib1g-dev libssl-dev libreadline5-dev libyaml-dev | |
cd /tmp | |
wget ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p125.tar.gz | |
tar -xvzf ruby-1.9.3-p125.tar.gz | |
cd ruby-1.9.3-p125/ | |
./configure --prefix=/usr/local | |
make | |
make install |
class ListenersController < ApplicationController | |
def paypal_ipn | |
raw_post = request.raw_post | |
notification = ActiveMerchant::Billing::Integrations::Paypal::Notification.new(raw_post) | |
@ipn_log = PaypalIpnLog.new(:raw_post => raw_post) | |
if development? || notification.acknowledge | |
recurring_payment_id = notification.params['recurring_payment_id'] | |
@ipn_log.recurring_payment_id = recurring_payment_id |
require 'selenium-webdriver' | |
require 'selenium/webdriver/remote/http/curb' | |
Capybara.register_driver :selenium do |app| | |
client = Selenium::WebDriver::Remote::Http::Curb.new | |
Capybara::Selenium::Driver.new(app, http_client: client) | |
end | |
Capybara.javascript_driver = :selenium |
Finished "EnableLogging" with response "Success()" | |
Wrote response true "" | |
Received "Visit" | |
Started "Visit" | |
Load started | |
"Visit" started page load | |
Started request to "http://127.0.0.1:48751/" | |
Finished "Visit" with response "Success()" | |
Started request to "http://127.0.0.1:48751/users/sign_in" | |
Started request to "http://127.0.0.1:48751/users/sign_in?_subdomain=launchpad" |
This script installs a patched version of ruby 1.9.3-p286 with patches for boot-time performance improvements (#66 and #68), and runtime performance improvements (#83 and #84). It also includes the new backported GC from ruby-trunk.
Huge thanks to funny-falcon for the performance patches.