Skip to content

Instantly share code, notes, and snippets.

View azhsetiawan's full-sized avatar
🚬
black sebat

Ashar azhsetiawan

🚬
black sebat
View GitHub Profile
@azhsetiawan
azhsetiawan / ConvertMS.js
Created July 23, 2021 11:58 — forked from flangofas/ConvertMS.js
JS: Convert Milliseconds to days? minutes? seconds? or all!
function convertMiliseconds(miliseconds, format) {
var days, hours, minutes, seconds, total_hours, total_minutes, total_seconds;
total_seconds = parseInt(Math.floor(miliseconds / 1000));
total_minutes = parseInt(Math.floor(total_seconds / 60));
total_hours = parseInt(Math.floor(total_minutes / 60));
days = parseInt(Math.floor(total_hours / 24));
seconds = parseInt(total_seconds % 60);
minutes = parseInt(total_minutes % 60);
##     ## ######## ##       ##        #######      
##     ## ##       ##       ##       ##     ##     
##     ## ##       ##       ##       ##     ##     
######### ######   ##       ##       ##     ##     
##     ## ##       ##       ##       ##     ##     
##     ## ##       ##       ##       ##     ## ### 
##     ## ######## ######## ########  #######  ### 
Verifying my Blockstack ID is secured with the address 1QKn6nQPQGJRhsumqMq9B2aCyR6d1ncukM https://explorer.blockstack.org/address/1QKn6nQPQGJRhsumqMq9B2aCyR6d1ncukM

gif

img[alt="Online"] {
width: 12px;
height: 12px;
position: relative;
border-radius: 999px;
z-index: 1;
padding-left: 12px;
background-color: green;
}
#!/bin/bash
sudo apt-get update
# Check curl
if [ ! -z "$(command -v curl)" ]; then
curl --version | head -1
else
sudo apt-get install curl
curl --version | head -1
dbus-send --print-reply --session --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.freedesktop.DBus.Properties.Get string:'org.mpris.MediaPlayer2.Player' string:'Metadata'
@azhsetiawan
azhsetiawan / facebook-one-click-invite.js
Created July 18, 2016 03:01
Invite Facebook friends instant without click button
javascript:var inputs = document.getElementsByClassName('uiButton _1sm'); for(var i=0; i<inputs.length;i++) { inputs[i].click(); }
@azhsetiawan
azhsetiawan / dns-prefetch.php
Created June 7, 2016 17:28 — forked from leogopal/dns-prefetch.php
DNS Prefetching in WordPress
<?php
// Prefetch For Speed Up
function dns_prefetch() {
$prefetch = 'on';
echo "\n <!-- DNS Prefetching Start --> \n";
echo '<meta http-equiv="x-dns-prefetch-control" content="'.$prefetch.'">'."\n";
if ($prefetch != 'on') {
@azhsetiawan
azhsetiawan / sample.css
Created August 21, 2015 10:27
less mixins example for sribu developer's blog (2)
/* output - using default value and custom value */
.baz-class {
width: 100px;
height: 100px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
border: 1px solid #000;
}