Skip to content

Instantly share code, notes, and snippets.

View Cojad's full-sized avatar
🤣
Hacking for blockchain

Jason Chiang Cojad

🤣
Hacking for blockchain
View GitHub Profile
@Cojad
Cojad / mac_office2011_uninstall.sh
Created November 24, 2016 05:12
Remove Office 2011 completely
#!/bin/sh
# IMPORTANT!!!
# This script try to wipe out all office 2011 files but would also delete some other Microsoft files.
# So you are adviced to reinstall other microsoft product which not belong to office 2011.
osascript -e 'tell application "Microsoft Database Daemon" to quit'
osascript -e 'tell application "Microsoft AU Daemon" to quit'
osascript -e 'tell application "Office365Service" to quit'
#Closes all Office applications
osascript -e 'tell application "Microsoft Excel.app" to quit without saving'
@Cojad
Cojad / child_values.js
Last active September 7, 2016 08:55
list hierarchy javascript object values
child = function(obj,name){
for( var index in obj){
switch(typeof obj[index]) {
case "object": child(obj[index],name+"."+index);break;
case "string": console.log(name+"."+index+" = \"" + obj[index] + "\"");break;
case "number": console.log(name+"."+index+" = " + obj[index]);break;
case "boolean": console.log(name+"."+index+" = \""+ (obj[index]) ? "true":"false" + "\"");break;
}
}
}
@Cojad
Cojad / PHP_delete_a_folder_recursively
Last active August 29, 2015 13:58
A simple function to delete a folder recursively. Very danger! Watch out!
<?php
// A simple function to delete a folder recursively. Very danger! Watch out!
// PHP用遞迴把資料夾給砍掉,殺傷力強大,請謹慎使用。
// V1.1 use readdir() instead of glob() for better non-english file name support in php4
// source unknown, modified by Jason Chiang
// xcojad at gmail.com
$folder_name="PEAR";
$folder_name="upload";