Luca Béla Palkovics

Results 47 comments of Luca Béla Palkovics

Here is the result: ``` Jän 21 18:39:40 LucaArch systemd-sleep[13669]: thinkpad-yoga: Going to suspend... Jän 21 18:39:40 LucaArch systemd-sleep[13669]: ● [email protected] - [ThinkPad Yoga] Rotation with accelerometer Jän 21 18:39:40...

I did check this already, If one of them is started, suspend wont work. But I will retry/reconfirm, this evening (GMT+1).

Found the problem. Reading from the accelerometer aborts the suspend.. Simple test case: ``` while [ true ]; do cat /sys/bus/iio/devices/iio:device1/in_accel_x_raw sleep 1 done ``` My system if it helps:...

Since 2.6.2 the code writes new js-files for each build https://github.com/embroider-build/ember-auto-import/blob/v2.6.3/packages/ember-auto-import/ts/webpack.ts#L366 These files don't get cached like in https://github.com/embroider-build/ember-auto-import/blob/v2.6.3/packages/ember-auto-import/ts/inserter.ts#L228 From my testing .. caching these files should solve the reload...

I get the the same error but with pytorch. I suspect the `F.interpolate` function... ```python class ScaleDown(nn.Module): def __init__(self, a=1): super().__init__() self.a = a def forward(self, x): return F.interpolate(x, (x.size(-2)//self.a,...

@manwatermelon my current workaround is rendering the page as PDF and then use muPDF to rasterize it to a PNG

`#in-element` just attaches its children dom-elements to the target dom element. inside embers component-tree nothing changes, the children of `#in-element` are still in the "original" place like defined in the...