Getting started:
Related tutorials:
(ns example.update | |
(:require [clojure.set :as set] | |
[clojure.walk :as walk])) | |
;; 두 해시맵에서 값이 다른 키들을 찾는 함수 | |
(defn diff-keys [old new] | |
(filter (fn [k] (not= (get old k) (get new k))) | |
(set/union (set (keys old)) (set (keys new))))) | |
;; SQL UPDATE 쿼리를 생성하는 함수 |
<?php | |
// Kimsq RB (1.x) php 7.0 patch | |
// 문의: https://github.com/damulhan | |
// | |
// File: /_core/function/db.mysql.func.php | |
// Kimq RB -- database 관련 루틴이며, php 7.0에서 mysql_* 관련 함수들이 동작하지 | |
// 않으며 mysqli_* 로 변경해야 합니다. | |
// 이와 같이 변경을 함으로서 기본적인 동작이 될 수 있도록 하였습니다. | |
function isConnectDb($db) |
Getting started:
Related tutorials:
{ | |
"require": { | |
"illuminate/database": "5.0.28", | |
"illuminate/events": "5.0.28", | |
} | |
} |
/* USAGE: | |
This script create automatic links in html source excluding <A href=""> anchor and other tags. | |
<div class="content"> | |
example text : http://www.jeungsando.org <br> | |
example html : <a href="www.jeungsando.org">jeungsando</a> | |
</div> | |
<script> |