Skip to content

Instantly share code, notes, and snippets.

# Boxstarter options
$Boxstarter.RebootOk=$true # Allow reboots?
$Boxstarter.NoPassword=$false # Is this a machine with no login password?
$Boxstarter.AutoLogin=$true # Save my password securely and auto-login after a reboot
#### .NET 3.5 ####
cinst dotnet3.5 -y # Not automatically installed. Includes .NET 2.0. Uses Windows Features to install.
if (Test-PendingReboot) { Invoke-Reboot }
@woakes070048
woakes070048 / win7
Last active December 5, 2015 14:33
cinst flashplayerplugin
cinst javaruntime
cinst flashplayeractivex
cinst adobeshockwaveplayer
cinst jdk8
cinst silverlight
cinst dotnet4.5
cinst adobeair
@woakes070048
woakes070048 / gist:d07e8b2a867e56c5eba6
Created January 8, 2016 02:55 — forked from dalers/gist:e763aefd7e1793528397
ERPNext good install on Centos 7
[root@hotstuff ~]# sudo bash setup_frappe.sh --setup-production
Installing for centos 7 amd64
In case you encounter an error, you can post on https://discuss.frappe.io
Adding centos mariadb repo
Installing packages for centos. This might take time...
Installing wkhtmltopdf
Cannot install wkhtmltodpdf. Skipping...
Configuring CentOS services
Starting services
@woakes070048
woakes070048 / erpnext_magento.php
Created January 17, 2016 11:46 — forked from rmehta/erpnext_magento.php
Sample ERPNext Magento Connector
<?php
// contributed by supplify.com
error_reporting(E_ALL);
ini_set('display_errors', 1);
require_once '../curl/Zebra_cURL.php';
require_once '../app/Mage.php';
Mage::app();
class action extends Zebra_cURL{
Addons for ERPnext
Whiteout for email
New point of sale –this will be connected though api and will be able to be installed on mobile devices
Intergrate rocket.chat
Intergrate hubot
Joomla intergrations
Opencart intergration
Magento 2 intergrations
Paypal intergration
@woakes070048
woakes070048 / pci_dss.md
Created June 2, 2016 20:03 — forked from diyan/pci_dss.md
PCI DSS. Useful resources
# A sample configuration file to setup a converged ovirt/gluster install
# using gdeploy: https://github.com/gluster/gdeploy
# edit hosts to match your environment
[hosts]
ovirt01.nlcsvr.net
[yum0]
action=install
[environment:default]
OVEHOSTED_STORAGE/storageDomainConnection=str:host1:/engine
OVEHOSTED_STORAGE/mntOptions=str:backup-volfile-servers=host2:host3
# Boxstarter options
$Boxstarter.RebootOk=$false # Allow reboots?
$Boxstarter.NoPassword=$false # Is this a machine with no login password?
$Boxstarter.AutoLogin=$true # Save my password securely and auto-login after a reboot
# Basic setup
Update-ExecutionPolicy Unrestricted
Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
Enable-RemoteDesktop
@woakes070048
woakes070048 / .htaccess
Created June 5, 2018 01:38 — forked from ScottPhillips/.htaccess
Common .htaccess Redirects
#301 Redirects for .htaccess
#Redirect a single page:
Redirect 301 /pagename.php http://www.domain.com/pagename.html
#Redirect an entire site:
Redirect 301 / http://www.domain.com/
#Redirect an entire site to a sub folder
Redirect 301 / http://www.domain.com/subfolder/