Skip to content

Instantly share code, notes, and snippets.

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

xoanthony anthonyabraira

🏠
Working from home
  • Asheville, NC
  • 18:39 (UTC -04:00)
View GitHub Profile
@henryaj
henryaj / keepalive.applescript
Created March 10, 2016 13:41
AppleScript to keep a VPN connection alive
repeat
tell application "System Events"
tell current location of network preferences
set myConnection to the service "YOUR_VPN_NAME"
if myConnection is not null then
if current configuration of myConnection is not connected then
connect myConnection
end if
end if
end tell
@ramseyp
ramseyp / hide-editor.php
Created November 12, 2012 15:48
Hide the content editor for certain pages in WordPress
<?php
/**
* Hide editor on specific pages.
*
*/
add_action( 'admin_init', 'hide_editor' );
function hide_editor() {
// Get the Post ID.