Skip to content

Instantly share code, notes, and snippets.

@saclychan
saclychan / Linux Static IP
Created October 9, 2018 04:13 — forked from fernandoaleman/Linux Static IP
How To Configure Static IP On CentOS 6
## Configure eth0
#
# vi /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE="eth0"
NM_CONTROLLED="yes"
ONBOOT=yes
HWADDR=A4:BA:DB:37:F1:04
TYPE=Ethernet
BOOTPROTO=static
@saclychan
saclychan / gist:f54671e0afb315066130426df091e551
Created March 19, 2018 16:25 — forked from thachpham92/gist:d57b18cf02e3550acdb5
Tất cả các tham số trong WP_Query
// Source: https://gist.github.com/luetkemj/2023628
// Xem hướng dẫn WP_Query toàn tập: http://goo.gl/kRpzTz
<?php
$args = array(
//////Author Parameters - Tham số lấy bài viết theo tác giả
//http://codex.wordpress.org/Class_Reference/WP_Query#Author_Parameters
'author' => '1,2,3,', //(int) - Các ID tác giả cần lấy bài viết (thêm dấu - vào để loại trừ tác giả, ví dụ: -14, -20)
'author_name' => 'luetkemj', //(string) - Lấy bài viết dựa theo tên nick name của tác giả
'author__in' => array( 2, 6 ), //(array) - Lấy bài dựa theo ID của tác giả
@saclychan
saclychan / gist:6116001d97789d5b041efda0cefd341d
Created January 11, 2018 07:28
Subtract 2 number string - trừ 2 string theo kiểu số nguyên
function super_substract($str1, $str2){
$result = "";
$arrs1 = str_split($str1);
$arrs2 = str_split($str2);
$r_arrs1 = array_reverse($arrs1);
$r_arrs2 = array_reverse($arrs2);
for($index = 0; $index < count($r_arrs1);$index++ ){
$i1 = 0;
if(isset($r_arrs1[$index]) ){
<div class="item active">
<img data-src="images/slider1.jpg" src="images/slider1.jpg">
<div class="container">
<div class="carousel-caption">
<h1>One more for good 3.</h1>
<p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
<p><a class="btn btn-lg btn-primary" href="#" role="button">Browse gallery</a></p>
</div>
</div>
</div>