Skip to content

Instantly share code, notes, and snippets.

View gothburz's full-sized avatar
🎯
Focusing

Peter Girnus gothburz

🎯
Focusing
View GitHub Profile
@gothburz
gothburz / var_export.php
Last active September 14, 2015 04:26
Using var_export to debug, returns a "parsable string representation of a variable".
$debug = var_export($your_function, true);
var_export($debug);
@gothburz
gothburz / Bootstrap Carousel - Fade Edition.markdown
Created September 14, 2015 23:39
Bootstrap Carousel - Fade Edition
@gothburz
gothburz / Angular AdSense Calculator.markdown
Created September 28, 2015 01:54
Angular AdSense Calculator

Angular AdSense Calculator

Pen showing Angular MVC capabilities by building a simple AdSense Calculator. Calculates based on today, and so far monthly. Returns a projected value for the end of the month, based on a 30 day calendar, tax rate of 1.33, and gives output in USD.

A Pen by Petrus Rex on CodePen.

License.

@gothburz
gothburz / Angular BMI Calculator.markdown
Created September 28, 2015 06:13
Angular BMI Calculator

Angular BMI Calculator

This awesome Angular pen calculates your Body Mass Index (BMI)! BMI is the measure of body fat, and this calculator applies to both men and women. Enter your weight in pounds and height in inches, your result will be rounded up to the nearest whole number. I will make a metric one as well in the future for the rest of the world xP

A Pen by Petrus Rex on CodePen.

License.

@gothburz
gothburz / Angular Mortgage Calculator.markdown
Created September 28, 2015 23:49
Angular Mortgage Calculator

Angular Mortgage Calculator

Angular App developed for a real estate client, calculates your monthly mortgage payments in a USD amount. App based on the mortgage equation M = P[i(1+i)^n]/[(1+i)^n -1]. In the future variables such as insurance rates, property tax, and down payments can also be applied.

A Pen by Petrus Rex on CodePen.

License.

@gothburz
gothburz / vertical-align.scss
Created October 28, 2015 19:25
Vertical align an element inside a div
/* Mixin */
@mixin vertical-align($position: relative) {
position: $position;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
/* Call */
@gothburz
gothburz / Star Wars - The Imperial Loader.markdown
Created October 31, 2015 23:05
Star Wars - The Imperial Loader
@gothburz
gothburz / Center Anything in the Dead Center of the Page Always!.markdown
Created November 9, 2015 05:11
Center Anything in the Dead Center of the Page Always!
@gothburz
gothburz / sharedmedia.lua
Created December 5, 2015 20:24
Add new fonts to ElvUI complete UI system for World of Warcraft
--[[
Navigate to your main WoW installation folder then go into Interface/AddOns/ElvUI
Steps:
1) Drop .ttf files into ElvUI/media/fonts
2) Go up a directory into ElvUI/media and open sharedmedia.lua, add this line
LSM:Register("font","XX", [[Interface\AddOns\ElvUI\media\fonts\XX.ttf]])
@gothburz
gothburz / index.html
Created February 2, 2016 18:49
Center Bootstrap Columns inside Rows
<div class="container">
<div class="row row-centered">
<div class="col-xs-6 col-centered"></div>
<div class="col-xs-6 col-centered"></div>
<div class="col-xs-3 col-centered"></div>
<div class="col-xs-3 col-centered"></div>
<div class="col-xs-3 col-centered"></div>
</div>
</div>