Sebastian Gassner

Results 18 issues of Sebastian Gassner

[Unsemantic](http://www.unsemantic.com), the successor of the [960.gs grid system](http://960.gs/), would be a good addition. Unsemantic uses only percentages instead of fixed widths.

Create a parser with a single boolean flag, `-t`/`--test`, with a default value of `true`. When parsing an empty command, both `opts['test']` and `opts.test?` should return `true`. Only `opts['test']` returns...

Does brozzler have support for adding new, or customizing existing behaviors? From what I understood, this requires both a yaml file matching urls to behaviors, and the actual behaviors in...

The `--help` of `ocrd-anybaseocr-tiseg` states a _default wiring_ of `['OCR-D-IMG-CROP'] -> ['OCR-D-SEG-TISEG']`. ``` root@38fa7aad0b43:/data/ocrd_workspace# ocrd-anybaseocr-tiseg --help Using TensorFlow backend. Usage: ocrd-anybaseocr-tiseg [OPTIONS] separate text and non-text part with anyBaseOCR Options:...

Hi, I have rewritten `capistrano-unicorn` to work with capistrano 3.x, check out [sepastian-capistrano-unicorn](https://github.com/sepastian/capistrano-unicorn). This is still in an early stage and not at all tested; but I can use it...

I have updated sprockets and now get `ActionView::Template::Error (undefined method`find_asset' for nil:NilClass)`. `Rails.application.assets` is `nil` unless `assets.compile` is set, which defaults to `false` in production. See https://github.com/rails/sprockets-rails/issues/237, i.e.: > So...

Use `asset_path` instead. See #105.

**Description** The documentation describes hot to store login credentials in the user's keyring, either by specifying `use_keyring=true` in the configuration or by specifying `--use-keyring` on the command line. The documentation...

bug

How does one use resque-batched-job with activejob? My `self.after_batch_finished` hook never gets invoked. ``` require 'resque/batched_job' class MyJob < ActiveJob::Base extend Resque::Plugins::BatchedJob def perform(bid, args) # Perform job. end def...