Tim Glabisch
Tim Glabisch
can you add some kind list of open todo's / issues?
When sorting lists / tables it's nice when the dragged element could stay at an fixed X or Y position while dagging. i could not find such an example, it...
i am not 100% sure what kind of code is responsible for this exception but wenn running taint analysis on a codebase i work with i get this: ``` Uncaught...
the function [generateTemplateParameters](https://github.com/psalm/psalm-plugin-symfony/blob/2992656853b564fa18cdf45d446ecb80cbf7fa0b/src/Twig/AnalyzedTemplatesTainter.php#L114) just supports very basic array types. for exampe this code ends up in an exception: ``` this->templating->render('@xxxxx.html.twig', array_merge($commonParams, [])) ``` ``` this->templating->render('@xxxxx.html.twig', $commonParams + []) ``` https://github.com/psalm/psalm-plugin-symfony/blob/2992656853b564fa18cdf45d446ecb80cbf7fa0b/src/Twig/AnalyzedTemplatesTainter.php#L114
Returning `Container` does not work, you've to write `Container`. the problem is annoying in that phpstan wants to have exactly the other way around and i can not find a...
when returning objects from a computed function the value always changes. i guess the compare function here is a simple `===`. And `{} === {}` is `false` . is there...
Hello, today i created this docker container and tryed to compile a project for RPi 3. i've am using serde (*) as a dependency, whis results in: ``` .... Downloading...
i created a minimalistic presentation mode. most time if i give talks about languages i embed a live editor like the rust-playground. when i tryed to embed the rust playground...
the syntax `$var{$i}`is deprecated: ``` PHP Deprecated: Array and string offset access syntax with curly braces is deprecated in ./src/ForceUTF8/Encoding.php on line 196 ```
i have a launchpad1 and wanted to create a simple program for my 1 year old daughter. Just a few buttons that are clickable. using trial and error i managed...