phiresky
phiresky
This comparison is nice, though I think it underrepresents motion interpolation a bit. I'm mostly talking about SVP (via vapoursynth like MVTools) here which sadly doesn't really have any alternatives....
soweit ich sehe ist das falsch, der Footprint ist ~10x10 pixel, also müsste man log₂(max(10,10)) = 3.3 nehmen also die Mipmap-Stufen 3 und 4.
When the input element is hidden on first render (e.g. a parent element has display: none set), then the computed size of the sizer element is "auto" instead of "123px",...
Works flawlessly with python2, but with python3 this error appears: ``` > python3 main.py Traceback (most recent call last): File "main.py", line 7, in from pyglet.gl import * File "/usr/lib/python3.4/site-packages/pyglet/gl/__init__.py",...
for example, the following ```js Lazy(function*(){yield 1; yield 2;}).forEach(x => console.log(x)) ``` works fine in node: ``` 1 2 > undefined ``` but not in the JS console on http://danieltao.com/lazy.js/...
jxl allows "quality" values between -inf and 100. trying to use a negative quality value with jxlpy gives this error: `_jxlpy.JxlPyArgumentInvalid: quality (should be in range 0..100)`
The following query throws "More than one row returned": db.singleOrUndefined(select(tbl.$all).from(tbl).where({a:b}).orderBy(tbl.id.desc()).limit(1)) Even though it does only return one row because of the limit(1). Because the library replaces the limit 1 with...
all transactions including serializable ones are executed as read commited see https://github.com/hediet/ts-typed-sql/blob/7b4e1ac04a429c139bd6467d65e90089fb41eb0a/src/SqlGenerator.ts#L65 vs https://github.com/hediet/ts-typed-sql/blob/7b4e1ac04a429c139bd6467d65e90089fb41eb0a/src/AST/SqlStatement.ts#L40
With pg you can get the number of updated / inserted rows like this: `const {rowCount} = await db.query("update ....");` without needing a `RETURNING` statement. specifically, the return type of...
int -> bigint bigint -> numeric float -> double precision other -> other ([see here](https://www.postgresql.org/docs/current/static/functions-aggregate.html))