Skip to content

Instantly share code, notes, and snippets.

View vincentkoc's full-sized avatar
:octocat:

Vincent Koc vincentkoc

:octocat:
View GitHub Profile
@vincentkoc
vincentkoc / fixperms.sh
Last active January 14, 2019 23:07
cPanel Recursive Site Permissions Fix Shell Script
#! /bin/bash
#
# Date: Jan 26th 2012
# Author: Colin R.
# Revisions: Jacob "Boom Shadow" Tirey (boomshadow.net)
# Fixperms script for ServInt
#
# Fixperms script for cPanel servers running suPHP or FastCGI.
# Written for ServInt.net
# Copyright (C) 2012 Colin R.
@vincentkoc
vincentkoc / edithostfilemac
Created June 10, 2013 10:22
Edit a Host File on Mountian Lion Mac
sudo vim /private/etc/hosts
dscacheutil -flushcache
@vincentkoc
vincentkoc / filetree.bat
Created May 16, 2013 14:08
Batch File Tree
@echo off
for /d %%a in (*) do dir /ad /on /s /b "%%a" >> get_dirs.txt
@vincentkoc
vincentkoc / json_to_csv.html
Last active January 14, 2019 23:08 — forked from palesz/json_to_csv.html
Simple JSON to CSV in HTML and Javascript with External Libraries
<html>
<head>
<style>
textarea {
height: 300px;
width: 100%;
}
</style>
<script type="text/javascript">
@vincentkoc
vincentkoc / sample.php
Created February 7, 2013 12:59 — forked from zaru/sample.php
<?php
//検索キーワード
$keyword = 'アプリ';
$uri = 'http://ax.search.itunes.apple.com/WebObjects/MZSearch.woa/wa/search?term=' . urlencode($keyword) . '&media=software';
$context = stream_context_create(array('http' => array(
'method' => 'GET',
'header' =>
'User-Agent: iTunes-iPhone/4.2.1 (2; 8GB)' . "\r\n"
. 'X-Apple-Store-Front: 143462-9,2' . "\r\n"
@vincentkoc
vincentkoc / ldap.php
Last active September 4, 2022 23:09
LDAP Login Autentication and Search in PHP, no Class required PHP 5+
<?php
//Error Checking
error_reporting(E_ALL);
ini_set('display_errors', '1');
//Set User domain extention
$LDAPUserDomain = "@my.domain"; //Needs the @, but not always the same as the LDAP server domain
?><form name="input" action="ldap.php" method="post">
Username: <input type="text" name="u"> <?php echo $LDAPUserDomain;?><br />
Password: <input type="password" name="p">