Skip to content

Instantly share code, notes, and snippets.

View irwandwiyanto's full-sized avatar

irwan dwiyanto irwandwiyanto

View GitHub Profile
<?php
//check for referal links
function referal()
{
$CI =& get_instance();
$cookie_value_set = $CI->input->cookie('_tm_ref', TRUE) ? $CI->input->cookie('_tm_ref', TRUE) : '';
if ($CI->input->get('ref', TRUE) AND $cookie_value_set == '') {
// referred user so set cookie to ref=username
$cookie = array(
'name' => 'ref',
[ req ]
default_bits = 2048
default_keyfile = server-key.pem
distinguished_name = subject
req_extensions = req_ext
x509_extensions = x509_ext
string_mask = utf8only
[ subject ]
@echo off
set /p domain="Enter Domain: "
set OPENSSL_CONF=../conf/openssl.cnf
if not exist .\%domain% mkdir .\%domain%
..\bin\openssl req -config cert.conf -new -sha256 -newkey rsa:2048 -nodes -keyout %domain%\server.key -x509 -days 365 -out %domain%\server.crt
echo.
echo -----
I use the first
—– BEGIN LICENSE —–
Michael Barnes
Single User License
EA7E-821385
8A353C41 872A0D5C DF9B2950 AFF6F667
C458EA6D 8EA3C286 98D1D650 131A97AB
AA919AEC EF20E143 B361B1E7 4C8B7F04
@irwandwiyanto
irwandwiyanto / csv2json.py
Created August 16, 2016 09:40
csv to json taxonomy database
import csv
import json
import sys
input = str(sys.argv[1])
output = str(sys.argv[2])
csvfile = open(input, 'r')
jsonfile = open(output, 'w')
#!/usr/bin/python
import simplejson as json
import optparse
import sys
input_file = str(sys.argv[1])
data = open(input_file, 'r')
location_database = open('/home/bioinformatics2/DW/taxo.json', 'r')