Skip to content

Instantly share code, notes, and snippets.

View JoshuaEstes's full-sized avatar
👨‍💻

Joshua Estes JoshuaEstes

👨‍💻
View GitHub Profile
@JoshuaEstes
JoshuaEstes / reset_admin.sql
Created April 27, 2011 14:47
Reset a magento admin user password
UPDATE admin_user SET password=CONCAT(MD5('qXpassword'), ':qX') WHERE username='admin';
@JoshuaEstes
JoshuaEstes / ssh-copy-id.sh
Created June 2, 2011 19:48
Command line example of how to add your key to a remote computer to avoid entering in a password out of laziness.
cat ~/.ssh/id_rsa.pub | ssh username@host "cat - >> ~/.ssh/authorized_keys"
@JoshuaEstes
JoshuaEstes / delete_categories.sql
Created September 14, 2011 00:33
Delete all categories in Magento
TRUNCATE TABLE `catalog_category_entity`;
TRUNCATE TABLE `catalog_category_entity_datetime`;
TRUNCATE TABLE `catalog_category_entity_decimal`;
TRUNCATE TABLE `catalog_category_entity_int`;
TRUNCATE TABLE `catalog_category_entity_text`;
TRUNCATE TABLE `catalog_category_entity_varchar`;
TRUNCATE TABLE `catalog_category_product`;
TRUNCATE TABLE `catalog_category_product_index`;
insert into `catalog_category_entity`(`entity_id`,`entity_type_id`,`attribute_set_id`,`parent_id`,`created_at`,`updated_at`,`path`,`position`,`level`,`children_count`) values (1,3,0,0,'0000-00-00 00:00:00′,'2009-02-20 00:25:34′,'1′,1,0,1),(2,3,3,0,'2009-02-20 00:25:34′,'2009-02-20 00:25:34′,'1/2′,1,1,0);
insert into `catalog_category_entity_int`(`value_id`,`entity_type_id`,`attribute_id`,`store_id`,`entity_id`,`value`) values (1,3,32,0,2,1),(2,3,32,1,2,1);
@JoshuaEstes
JoshuaEstes / delete_products.sql
Created September 14, 2011 00:32
Delete all products in magento
TRUNCATE TABLE `catalog_product_bundle_option`;
TRUNCATE TABLE `catalog_product_bundle_option_value`;
TRUNCATE TABLE `catalog_product_bundle_selection`;
TRUNCATE TABLE `catalog_product_entity_datetime`;
TRUNCATE TABLE `catalog_product_entity_decimal`;
TRUNCATE TABLE `catalog_product_entity_gallery`;
TRUNCATE TABLE `catalog_product_entity_int`;
TRUNCATE TABLE `catalog_product_entity_media_gallery`;
TRUNCATE TABLE `catalog_product_entity_media_gallery_value`;
TRUNCATE TABLE `catalog_product_entity_text`;
@JoshuaEstes
JoshuaEstes / .bashrc
Created September 16, 2011 16:04
Add this to the end of your ~/.bashrc to display what branch you are working in with git
parse_git_branch () {
git symbolic-ref HEAD 2> /dev/null | sed -e 's/\^0$//' | sed 's#refs\/heads\/\(.*\)#\1#'
}
BLACK="\[\033[0;38m\]"
RED="\[\033[0;31m\]"
RED_BOLD="\[\033[01;31m\]"
BLUE="\[\033[01;34m\]"
GREEN="\[\033[0;32m\]"
@JoshuaEstes
JoshuaEstes / moduleActionsTest.php
Created October 21, 2011 16:16
Test template for a symfony 1.4 admin generated action
<?php
/**
* Symfony admin generator test template
* @see https://gist.github.com/1304240
*/
/**
* The model name
*/
$model = 'ModelName';
@JoshuaEstes
JoshuaEstes / remove_svn.sh
Created October 22, 2011 00:41
remove all svn folders in a directory and sub directories
find . -name ".svn" -type d -exec rm -rf {} \;
@JoshuaEstes
JoshuaEstes / convert_to_csv
Created December 2, 2011 17:37
convert something to csv
perl -F"\t" -lane 'print join ",", map {s/"/""/g; /^[\d.]+$/ ? $_ : qq("$_")} @F '
@JoshuaEstes
JoshuaEstes / vim
Created December 12, 2011 21:10
vim sudo write
:w !sudo tee % > /dev/null
@JoshuaEstes
JoshuaEstes / search_and_replace.pl
Created December 13, 2011 17:29
command line function to search and replace text
perl -p -i -e 's/oldstring/newstring/g' `find ./ -name "*.html"`