This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@charset "UTF-8" | |
// ♫ | |
$medium: 64em | |
$small: 40.063em | |
// ----------------------------------------------- | |
@function rem($size) | |
$remSize: $size / 16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Prints out all finviz charts from a specific screen. | |
*/ | |
// ----------------------------------------------- | |
libxml_use_internal_errors(1); | |
DEFINE('F_BASE', 'http://finviz.com/screener.ashx?v=212&f=cap_midover,fa_eps5years_o15,sh_avgvol_o750,ta_perf_52w20o&ft=4&ta=0&o=-volume&r='); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<title>REPLACE_ME</title> | |
<style> | |
/* HTML Email Reset */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Simple file to help add manual entries to a gravity form, so we don't have to deal w/ GFs output. | |
*/ | |
require_once $_SERVER['DOCUMENT_ROOT'] . '/wp/wp-load.php'; | |
$data = $_REQUEST; | |
// ----------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gulp = require 'gulp' | |
gutil = require 'gulp-util' | |
watch = require 'gulp-watch' | |
sass = require 'gulp-sass' | |
coffee = require 'gulp-coffee' | |
imagemin = require 'gulp-imagemin' | |
minify = require 'gulp-minify-css' | |
uglify = require 'gulp-uglify' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source = require 'vinyl-source-stream' | |
buffer = require 'vinyl-buffer' | |
ftp = require 'vinyl-ftp' | |
rs = require 'run-sequence' | |
gulp = require 'gulp' | |
gulpif = require 'gulp-if' | |
sass = require 'gulp-sass' | |
gutil = require 'gulp-util' | |
notify = require 'gulp-notify' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const $container = document.getElementById('container') | |
window.onpageshow = (e) => e.persisted ? window.location.reload() : null | |
export default function(href) { | |
document.body.classList.remove('load-in') | |
document.body.classList.add('load-out') | |
;['animationend', 'webkitAnimationEnd'].map(evt => { | |
$container.addEventListener(evt, (e) => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"user": { | |
"debug": false, | |
"delay": 0, | |
"error_color": "D02000", | |
"gutter_theme": "Packages/Boxy Theme/extras/SublimeLinter/Boxy.gutter-theme", | |
"gutter_theme_excludes": [], | |
"lint_mode": "background", | |
"linters": { | |
"eslint": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// A File Icon Preferences – User | |
// ================================================================ | |
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
// ! PLEASE RESTART SUBLIME TEXT FOR THESE CHANGES TO TAKE EFFECT ! | |
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
} |
OlderNewer