Click here for TTK Reveal - Week 1 notes
Click here for TTK Reveal - Week 2 notes
Court of Oryx
- On demand public events
- More than a patrol. Taken Ambush on the way to location
Click here for TTK Reveal - Week 1 notes
Click here for TTK Reveal - Week 2 notes
Court of Oryx
Click here for TTK Reveal - Week 1 notes
Artifacts
###Trials Tips for EMSC
I can't really tell you how to play since we all play differently and every round can be a different situation, but I hope that these tips will help you know what to look for.
More Resources
WildLeon touches on some points that came up during Week 3 (Widow's Court), but for the most part it follows a lot of what I wrote in the Skills Tips section.
###Avoiding redraw/repaint of an element with CSS
So I just came across a use case where I needed to hide/show certain sliders for a widget. The issue was that using display: none/block causes a redraw of the slider that messes up the text, prevents going the the next slide, etc. I couldn't use visibility: visible either, as the space where the sliders are would throw the layout off and the widget needs to be a specific height, this/that/other.
####Solution
######CSS .slider-element {
@mixin ie-opacity($value) { | |
$value: 100 * $value; | |
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=#{$value})"; | |
filter: alpha(opacity=$value); | |
} |
<? | |
//Server | |
$mysqli = new mysqli("hostname", "username", "pw", "database"); | |
//Check connection | |
if ($mysqli->connect_errno) { | |
printf("Connect failed: %s\n", $mysqli->connect_error); | |
exit(); | |
} |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
##Object-Oriented PHP Based on Object-Oriented PHP for Beginners on Tutsplus
######What is Object-Oriented Programing?
######Why DRY?
####Objects and Classes