Skip to content

Instantly share code, notes, and snippets.

View koryteg's full-sized avatar
🏠
Working from home

Kory Tegman koryteg

🏠
Working from home
View GitHub Profile
@koryteg
koryteg / settings.json
Last active September 16, 2019 21:22
vim test workflow in vs code
//this file is an example of using leader + t to runn the current spec in vs code.
// you need two extentions:
// vim-mode
// rails run specs
// once those are installed add this to the config:
{
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "T"],
"commands": ["extension.runFileSpecs"]
@koryteg
koryteg / targets.js
Created July 18, 2017 16:11
adjusting eh target!
/* eslint-env node */
var EmberApp = require('ember-cli/lib/broccoli/ember-app');
var ENV = {
browsers: [
'last 1 Chrome versions',
'last 1 Firefox versions'
]
};
@koryteg
koryteg / rspec_config.rb
Created April 7, 2016 20:56
rspec filter gist
RSpec.configure do |config|
config.filter_run :focus => true
config.run_all_when_everything_filtered = true
end
@koryteg
koryteg / new_gist_file_0
Created December 4, 2013 22:56
setup htaccess passwords
http://www.htaccesstools.com/htaccess-authentication/
AuthType Basic
AuthName "staging"
AuthUserFile /home/content/84/10444784/html/staging/.htpasswd
Require valid-user
<?php
$dir = dirname(__FILE__);
@koryteg
koryteg / Common_Magento_Things.php
Created November 14, 2013 22:12
common Magento things
<?php // adding the product and helper objects in magento
$_helper = $this->helper('catalog/output');
$_product = $this->getProduct();
// getting a product from the what was registered on the page
$_product = Mage::registry('product');
@koryteg
koryteg / back it up.sh
Created November 13, 2013 00:38
command line backup reference
mySQL dump:
backup: #
mysqldump -u root -p[root_password] [database_name] > dumpfilename.sql
restore:#
mysql -u root -p[root_password] [database_name] < dumpfilename.sql
<script>
function myRegistryValidate(){
var formToValidate = $('Insert Magento Form ID');
var validator = new Validation(formToValidate);
if(validator.validate()) {
//Do Stuffs
}
}
</script>
@koryteg
koryteg / 0_reuse_code.js
Created November 12, 2013 17:36
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@koryteg
koryteg / virtualhost
Created October 30, 2013 21:01
apache/mamp local virtualhost settings
NameVirtualHost *
<VirtualHost *>
DocumentRoot "/Applications/MAMP/htdocs"
ServerName localhost
</VirtualHost>
<VirtualHost *>
DocumentRoot "/Applications/MAMP/htdocs/magento"
ServerName magento.dev
@koryteg
koryteg / test.rb
Created December 16, 2015 01:58
factory girl test
require "rails_helper"
RSpec.describe CampaignMailingTemplate, type: :template_object do
before(:all) do
# old factory girl code
# @entity = create(:entity)
# @campaign = create(:campaign, entity: @entity)
# @campaign_mailing = create(:campaign_manual_reminder, campaign: @campaign)
# @invitation = build(:invitation, guest: build(:user))
create_entity