Skip to content

Instantly share code, notes, and snippets.

@maxd
maxd / restart_lan.sh
Created May 9, 2013 14:49
Script for restart LAN in Hackintosh
ifconfig en0 down
ifconfig en0 up
@yireo
yireo / vm2mage_reset_categories.sql
Created May 6, 2013 13:18
Vm2Mage SQL-file to wipe out all Magento categories
-- Disable foreign key checks temporarily --
SET SQL_MODE='';
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO';
-- Reset all vm2mage information
TRUNCATE TABLE `vm2mage_categories`;
-- Reset all category information
TRUNCATE TABLE `catalog_category_entity`;
@davidruhmann
davidruhmann / VDHOSTSUpdate.bat
Created May 2, 2013 23:06
Update HOSTS file for Virtual Domains
:: Hide Commands
@echo off
:: Setup User Interface
title Virtual Domain HOSTS Update
setlocal EnableExtensions
pushd "%~dp0"
:: Verify Administrator Access
call :IsAdmin 1 %* || exit /b 1