Skip to content

Instantly share code, notes, and snippets.

View reactormade's full-sized avatar

Reactormade reactormade

View GitHub Profile
Class Type 1 Stat 1 Type 2 Stat 2 Type 3 Stat 3
Coil Corruption 49 Handling 33 Shock 17
Coil Corruption 49 Handling 33 Shock 17
Coil Corruption 45 Shock 16
Coil Corruption 44
Coil Corruption 43 Tear 11
Coil Corruption 43 Shock 15
Coil Corruption 43 Shock 15
Coil Corruption 42
Coil Corruption 41
@reactormade
reactormade / _settings.scss
Last active August 29, 2015 14:06
Change Zurb Foundation 5 topbar responsive breakpoints in SCSS
$topbar-breakpoint: #{upper-bound($medium-range)}; // Change to 9999px for always mobile layout
$topbar-media-query: "only screen and (min-width: #{upper-bound($medium-range)})";
// Source: http://foundation.zurb.com/forum/posts/1772-foundation-5-top-bar-breakpoint
@reactormade
reactormade / .htaccess
Created September 6, 2014 02:23
Resource interpreted as image but transferred with mime type text/xml svg
AddType image/svg+xml svg
@reactormade
reactormade / remove-sidebar-folder-icon.sublime-theme
Last active September 25, 2018 23:27
Remove folder icons from sidebar in Sublime Text 3 build 3065
// place this anywhere in a .sublime-theme
{
"class": "icon_file_type",
"content_margin": [0,0]
},
{
"class": "icon_folder",
"content_margin": [0,0]
},
@reactormade
reactormade / gist:c281e1df9cd70e468826
Created July 1, 2014 19:03
Add page tab on Facebook
https://www.facebook.com/dialog/pagetab?app_id={YOUR_APP_ID}&redirect_uri=https://facebook.com
@reactormade
reactormade / gist:6cf353acf2782db01317
Last active August 29, 2015 14:02
Git ignore sass-cache
**/.sass-cache
**/.sass-cache/*
**.sass-cache**
@reactormade
reactormade / variables_get_template_part.php
Created April 27, 2014 23:54
Passing variables to get_template_part() in WordPress
include(locate_template('your-template-name.php'));
//original here: http://keithdevon.com/passing-variables-to-get_template_part-in-wordpress/
@reactormade
reactormade / mysql_result_array_to_array_of_objects.php
Created February 22, 2014 14:40
Simple MySQL query result to array of objects conversion
if(!function_exists('converte_query_result_em_array_of_objects')):
/**
* CONVERTE ARRAY DE QUERY RESULT
* EM ARRAY DE OBJETOS PARA ACESSO DIRETO
**/
function converte_query_result_em_array_of_objects($array){
if(is_array($array) && is_resource($array)):
$output = array();
while($row = mysql_fetch_assoc($array)): $output[] = (object)$row; endwhile;
return $output;
@reactormade
reactormade / remove-touch-delay-ie.css
Created February 19, 2014 18:00
Remove 300ms touch delay in IE
html {
/* Remove 300ms touch delay in IE */
-ms-touch-action: manipulation;
touch-action: manipulation;
}
@reactormade
reactormade / responsive-facebook-comments.css
Created February 13, 2014 21:02
Responsive Facebook Comments box CSS
.fb_iframe_widget > span {
}
.fb-comments,
.fb-comments iframe[style],
.fb-comments > span {
width: 100% !important;
}