Test web application using Internet Explorer locally with or without VM in OSX.
Install WineBottler in case you want to check IE6, IE7 or IE8, if you want to check others you need to use a VM.
#!/bin/bash | |
# Vars | |
java="java" | |
xsltproc="xsltproc" | |
node="node" | |
phantomjs="phantomjs" | |
grunt="grunt" | |
bower="bower" | |
compass="compass" |
<?php | |
define( 'WP_DEBUG', true ); | |
if ( WP_DEBUG ) { | |
define( 'WP_DEBUG_LOG', true ); | |
define( 'WP_DEBUG_DISPLAY', false ); | |
define( 'SAVEQUERIES', true ); | |
define( 'SCRIPT_DEBUG', true ); | |
@ini_set( 'display_errors', 0 ); | |
if ( function_exists( 'xdebug_disable' ) ) { |
# Don't show errors which contain full path diclosure (FPD) | |
# Use that line only if PHP is installed as a module and not per CGI | |
# try using a php.ini in that case. | |
# Change mod_php5.c to mod_php7.c if you are running PHP7 | |
<IfModule mod_php5.c> | |
php_flag display_errors Off | |
</IfModule> | |
# Don't list directories | |
<IfModule mod_autoindex.c> |
sys.path.insert(0, '.') | |
extensions.append('sphinxcontrib_awesome') |
Test web application using Internet Explorer locally with or without VM in OSX.
Install WineBottler in case you want to check IE6, IE7 or IE8, if you want to check others you need to use a VM.
http://redd.it/1xizt0 Gentoo? | |
strebl.ch/21ai Ajenti | |
strebl.ch/1u0w Vesta Control Panel | |
strebl.ch/to6 cPanel | |
strebl.ch/1usg Choosing control panel management | |
strebl.ch/qrr ServerPilot | |
strebl.ch/1dz6 ServerPilot Experience | |
strebl.ch/ntg PuPHPet - A simple GUI to set up virtual machines for Web development. | |
strebl.ch/1ucq Phansible provides an easy-to-use interface to generate Ansible provisionings. |
##Configurations for Raspberry Pi Home Server## #####Using Raspbian##### (although the procedures are similar/compatible with most debian based systems.)
###Added###
<?php | |
//* Force auto-updates for WordPress plugins | |
add_filter( 'auto_update_plugin', '__return_true' ); |
class Dashing.Outboard extends Dashing.Widget | |
ready: -> | |
# This is fired when the widget is done being rendered | |
onData: (data) -> | |
# Handle incoming data | |
# You can access the html node of this widget with `@node` | |
# Example: $(@node).fadeOut().fadeIn() will make the node flash each time data comes in. |
Custom recipe to get OS X 10.10 Yosemite running from scratch, setup applications and developer environment. I use this gist to keep track of the important software and steps required to have a functioning system after a semi-annual fresh install. On average, I reinstall each computer from scratch every 6 months, and I do not perform upgrades between distros.
This keeps the system performing at top speeds, clean of trojans, spyware, and ensures that I maintain good organizational practices for my content and backups. I highly recommend this.
You are encouraged to fork this and modify it to your heart's content to match your own needs.