Luís Filipe de Medeiros Rodrigues

Results 34 comments of Luís Filipe de Medeiros Rodrigues

Thanks @ReneNP - That solution in a ternary will work for me If it's gmail use Gmail extension otherwise use regular search command Would be nice to now why the...

This library isn't compatible with .NET Core As you can see if you open the csproj file, the target framework is .NET Framework 4.0 - `v4.0` There isn't an update...

Since last update to ramsey/uuid I've been having an oddissue using ramsey/uuid-doctrine in symfony My id is setup as ``` /** * @ORM\Id() * @ORM\Column(type="uuid_binary_ordered_time", unique=true) * @ORM\GeneratedValue(strategy="CUSTOM") * @ORM\CustomIdGenerator(class="Ramsey\Uuid\Doctrine\UuidOrderedTimeGenerator")...

I think the simplest solution to make all Win10 styles the default might be: 1. Rename `Controls.xaml` to `Controls.Legacy.xaml` 2. Create new `Controls.xaml` with the following content: ``` ``` The...

Why not just change that code to the safer: ``` $foo = getFoo(); if (is_string($foo)) { return $foo; } ``` this would call `getFoo()` only once and so: 1. there...

**EDIT** Ok I think I misread your intent You want both relationships to be from `entityA` to `entityA` - ok 1. create 2 `ManyToMany` relationships between `entityA` and itself 2....

It does create a name - however the name (if i remember correctly) is entityAHasentityB by default so both would many to many relationships would have the same name (hence...

To prevent backward compatibility issues you could have kept Header and just have added LeftHeader. Once there's a major version change that can break backwards compatibility then a name change...

Not sure how easy this would be to achieve but how about having Header on the side of the system buttons (as is now) and make Title work like Content...