vidalsasoon


Comments:

Thinking only of the Junior Developer

posted by vidalsasoonvidalsasoon(0) 3 years, 4 months ago 0

Junior devs can be absolutely terrible and can ruin a project if you don't watch them (i.e. reinventing a date class (poorly)). The better one learn quick and on their own but they still suck coming out of school no matter what.

If there are techniques that they aren't familiar with, give them some links to read and then if they still don't understand, you can walk them through it.

I prefer to not work with juniors at all but we all gotta start somewhere i suppose.

Reply

WebForms or MVC? What about the third option?

posted by vidalsasoonvidalsasoon(0) 3 years, 3 months ago 0

[quote]ASP.NET is 50% brilliant and 50% junk. [/quote]


PHP is 50% junk and 50% brilliant.

Reply

Creating a WPF / Silverlight Control With a Semi Transparent Backgroun

posted by vidalsasoonvidalsasoon(0) 3 years, 3 months ago 0

do not follow this person advice. they skipped the chapter on using layouts properly.

Reply

Creating a WPF / Silverlight Control With a Semi Transparent Backgroun

posted by vidalsasoonvidalsasoon(0) 3 years, 3 months ago 0

<Grid>
<Label Margin="57,101,21,101">hiding behind everything</Label>
<Grid Opacity="0.5">
<Border Margin="57,61,21,101" Name="border1" Background="blue" />
<Button Height="23" Margin="94,103,109,0" Name="button1" VerticalAlignment="Top">Button</Button>
</Grid>
<Rectangle Width="50" Height="50" Fill="Pink" ></Rectangle>
</Grid>

Reply

Creating a WPF / Silverlight Control With a Semi Transparent Backgroun

posted by vidalsasoonvidalsasoon(0) 3 years, 3 months ago 0

Take it easy. There's just too many noobs writing blog articles and it can create problems for other noobs learning (I was a Silverlight noob just 6 months ago...). Your blog was trying to show unexpected behavior when it was in fact completely expected. You found a solution but it was the wrong one.

I had the same problems with layouts as you learning this stuff initially.

Reply

Code Generation Should be the Nuclear Option

posted by vidalsasoonvidalsasoon(0) 3 years ago 0

This guy is so good he codes in 1's and 0's

Reply