I hereby claim:
- I am jauhari on github.
- I am jauhari (https://keybase.io/jauhari) on keybase.
- I have a public key ASDFJbH3CNGZHQYdO_GKKaBMSLm-Yp5USMd3CV4QFH9Hkgo
To claim this, I am signing this object:
/** | |
* Create an image with the desired size on-the-fly. | |
* | |
* @param $image_id | |
* @param $width | |
* @param $height | |
* @param $crop | |
* | |
* @return array | |
*/ |
I hereby claim:
To claim this, I am signing this object:
# Connect to your server as root via SSH | |
ssh [email protected] | |
# Download installation script | |
curl -O http://vestacp.com/pub/vst-install.sh | |
# Run it | |
bash vst-install.sh |
function pakdhw_move_admin_bar() { | |
echo ' | |
<style type="text/css"> | |
body.admin-bar #wphead { | |
padding-top: 0; | |
} | |
#wpadminbar { | |
top: auto !important; | |
bottom: 0; | |
position: fixed; |
body.admin-bar #wphead { | |
padding-top: 0; | |
} | |
#wpadminbar { | |
top: auto !important; | |
bottom: 0; | |
position: fixed; | |
} | |
#wpadminbar .quicklinks .menupop ul { | |
position: absolute; |
# --------------------------------------------------- | |
# Vimeo | |
# --------------------------------------------------- | |
151.101.0.217 player.vimeo.com | |
151.101.192.249 vimeo-hp-videos.global.ssl.fastly.net | |
151.101.2.109 f.vimeocdn.com | |
151.101.192.217 vimeo.com | |
151.101.66.109 i.vimeocdn.com | |
151.101.64.217 developer.vimeo.com |
<?php | |
// mengambil waktu lokal dari postingan dalam detik | |
$local_timestamp = get_the_time('U'); | |
// mengambil data waktu update terakhir tulisan | |
$lastModifiedTime = get_the_modified_time('U'); | |
if ($lastModifiedTime >= $local_timestamp + 86400) { | |
echo "<p>Update "; | |
the_modified_time('F jS, Y'); |
type $env:USERPROFILE\.ssh\id_rsa.pub | ssh {IP-ADDRESS-OR-FQDN} "cat >> .ssh/authorized_keys" |
ssh-keygen -t rsa |
#use this code on current folder and sub folder | |
find -name "*.ico" -mtime +7 -exec rm -f {} \; | |
#or use this one on current folder and sub folder | |
find -name "*.ico" -name "*.avi" -mtime +7 -delete |