Skip to content

Instantly share code, notes, and snippets.

View ku1ik's full-sized avatar
👋

Marcin Kulik ku1ik

👋
View GitHub Profile
type Process struct {
Monitor Monitor
}
func (p *Process) Kill(sig os.Signal) {
pid, err := p.Monitor.Pid()
if err != nil {
log.Println(err)
return
}
var Line = React.createClass({
render: function() {
return <span className="line">{this.props.text}</span>;
}
});
var Terminal = React.createClass({
render: function() {
var lines = this.props.lines.map(function(line) {
return <Line text={line} />; # how to add a new-line character after this?
>>> Compiling ruby 2.1.0 ...
CC = gcc
LD = ld
LDSHARED = gcc -shared
CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration -ansi -std=iso9899:199409
XCFLAGS = -D_FORTIFY_SOURCE=2 -fstack-protector -fno-strict-overflow -fvisibility=hidden -DRUBY_EXPORT -fPIE
CPPFLAGS = -I. -I.ext/include/x86_64-linux -I./include -I.
DLDFLAGS = -fstack-protector -pie
SOLIBS =
Using built-in specs.
# Running tests:
...........EF..................FFFFFFFFFF
Finished tests in 42.043389s, 0.9752 tests/s, 2.1406 assertions/s.
Error:
test: MergeRequestsShow should display watch/unwatch for signed in user. (MergeRequestsShowTest):
Capybara::ElementNotFound: Unable to find field "Email or login"
/srv/gitorious/app/vendor/bundle/ruby/1.9.1/gems/capybara-2.1.0/lib/capybara/node/finders.rb:41:in `block in find'
@ku1ik
ku1ik / Gemfile
Last active August 29, 2015 14:02
# A sample Gemfile
source "https://rubygems.org"
gem 'rugged', :git => 'https://github.com/libgit2/rugged.git', :branch => 'development', :submodules => true, :ref => 'fb28f860679f3a4bb29a9d1579f3b13754d81374'
@ku1ik
ku1ik / how-to-install-ruby-2.1
Last active August 29, 2015 14:07
Installing Ruby 2.1 on Ubuntu 14.04 with ansible
Install ansible on your laptop, then:
ansible-playbook -i production site.yml
After running this confirm ruby version on the server:
ubuntu@srv-blah:~$ which ruby
/usr/bin/ruby
ubuntu@srv-blah:~$ ruby -v
ruby 2.1.0p0 (2013-12-25 revision 44422) [x86_64-linux-gnu]
FROM ubuntu:14.04
RUN apt-get -y update
RUN apt-get -y install nginx
ADD example.conf /etc/nginx/conf.d/example.conf
RUN echo "daemon off;" >>/etc/nginx/nginx.conf
EXPOSE 3000
CMD ["/usr/sbin/nginx"]

asciicast PNG test

alt

alt

~ % brew info asciinema
asciinema: stable 1.0.0 (bottled), HEAD
https://asciinema.org/
Not installed
From: https://github.com/Homebrew/homebrew/blob/master/Library/Formula/asciinema.rb
==> Dependencies
Build: go ✘
Running ClojureScript test: test
Loading URL: env/test/unit-test.html
Running test.
Testing player.view-test
FAIL in (fg-color-test) (:)
expected: (= (v/fg-color 1 false) 111)
actual: (not (= 1 111))