Ingo Becker

Results 9 issues of Ingo Becker

Adds support for passing parameters to the haml partial like the normal include tag in jekyll does: `{% haml picture.haml path="yay.jpg" %}`. I'm not sure if this causes any side...

In case you write a [mountable enigine](http://guides.rubyonrails.org/engines.html), there is a so called dummy directory(test/dummy/) which contains a dummy app to mount the engine during testing and development. With the introduced...

As mentioned in #116 calls to `render_layer()` and `render_layers()` raise a `TypeError` exception but only if `pycairo` is used. This happens because `pycairo`s implementation of `Matrix` doesn't implement methods required...

``` from gerber import load_layer from gerber.render.cairo_backend import GerberCairoContext class Foo: def __init__(self): self.ctx = GerberCairoContext() def render(self): l = load_layer('gerbers/test.gbr') self.ctx.render_layer(l) def render(): ctx = GerberCairoContext() l = load_layer('gerbers/test.gbr')...

The images are compiled without `USE_SYSTEMD=yes`. While this makes sense for docker and k8s usecases having the image build with systemd support is benifitial if running them with podman. Podman...

The following code doesn't work as expected: ``` Tweene.defaultDriver = 'velocity' Tweene.to($('#circle'), {transform: 'translateX(12em)'}, 500) ``` Using ``` Tweene.to($('#circle'), {x: '12em)'}, 500) ``` does the job. The [documentation](http://tweene.com/html/docs/#propertiesSyntax) states >...

I'm having the following code: ``` Tweene.defaultDriver = 'velocity' Tweene.set($('#header'),{opacity: 0}) Tweene.to($('#header'), {opacity: 1}, {duration: 1000}) ``` I'm trying to set the opacity of this element to 0 instantly and...

PiPiper::Spi::set_mode is broken in stable as well as in pre versions because PiPiper::Spi::SPI_MODE\* constants are missing..

At the end of the section [The Model Hook](https://guides.emberjs.com/v2.8.0/tutorial/model-hook/) the tutorial reffers to a test named `should initially list 3 rentals`. I guess it's reffering to the test actually named...

help wanted
tutorial
good for new contributors