Skip to content

Instantly share code, notes, and snippets.

View recked's full-sized avatar

Arissa "Reck" Brown recked

  • Fort Lauderdale, Florida
View GitHub Profile
TTK Reveal - Week 2

Click here for TTK Reveal - Week 1 notes

Artifacts

  • Artifact isn't a visible item, just gives you extra perks and abilities.
  • Appears to be class based
  • From Luke Smith via Twitter: Artifacts: Provide a talent with a chance to generate Orbs in an alternate way: E.g., Elemental Melee/Grenade/Precision kills
@recked
recked / TTK_reveal_1.md
Last active August 29, 2015 14:27
TTK Reveal - Week 1
  • dont dismantle because they are going to use your gear to determine where you need to be lvl wise
  • light amount replaces grimoire spot on emblem
  • level 40 required items (purple)
  • quests separate from bounty slots
  • pulling up ghosts, shows active bounties
  • quests have garaunteed rewards
  • "Spark of Light" consumable - immediately makes a character who is not already 25 a level 25. considered the starting line for the taken king
  • class items have perks
  • ghost shells have perks too, for more stength, intellect, etc and defense
  • costs only 250 glimmer for the rare shells
@recked
recked / trials.md
Last active August 29, 2015 14:22
Trials Tips for EMSC

###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.

@recked
recked / resources.md
Last active August 29, 2015 14:16
Some free web (and graphic) design resources
@recked
recked / no-redraw.md
Created December 17, 2014 16:20
Avoiding redraw/repaint of an element with CSS + jQuery

###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 {

@recked
recked / mixins.scss
Created December 11, 2014 22:58
Sass mixins
@mixin ie-opacity($value) {
$value: 100 * $value;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=#{$value})";
filter: alpha(opacity=$value);
}
@recked
recked / dash.php
Created August 12, 2014 15:17
mysqli connection
<?
//Server
$mysqli = new mysqli("hostname", "username", "pw", "database");
//Check connection
if ($mysqli->connect_errno) {
printf("Connect failed: %s\n", $mysqli->connect_error);
exit();
}
@recked
recked / .gitignore
Created August 12, 2014 14:51
.gitignore
# 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?

  • It's a style of coding that is used to group similar tasks into classes keeping the code DRY (don't repeat yourself) and easily maintainable. Seems scary because it introduces new syntax and appears more complex than inline code.

######Why DRY?

  • If information changes in your program, usually only one change is needed to update the code. More on DRY here and here (bonus DAMP).

####Objects and Classes