This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
adb push filename /external_sd - to copy it to external SDcard, OR | |
adb push filename /sdcard - to put it in internal storage |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.ProfileCard-content').each(function(){ | |
var status = $(this).find('.FollowStatus').text(); | |
var unfollowButton = $(this).find('.user-actions-follow-button'); | |
if(!status){ | |
unfollowButton.click(); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- menu navigasi header --> | |
<li><a href='https://www.shebalack.com/search/label/Adsense'>Adsense</a></li> | |
<li><a href='https://www.shebalack.com/search/label/android'>Android</a></li> | |
<li><a href='https://www.shebalack.com/search/label/windows'>Windows</a></li> | |
<li><a href='#'>Other</a> | |
<ul> | |
<li><a href='https://www.shebalack.com/search/label/tutorial'>Tutorial</a></li> | |
<li><a href='https://www.shebalack.com/search/label/Blogger'>Blogger</a></li> | |
<li><a href='https://www.shebalack.com/search/label/software'>Software</a></li> | |
<li><a href='https://www.shebalack.com/search/label/template'>Template</a></li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
article,aside,body,details,figcaption,figure,footer,header,hgroup,html,menu,nav,section{display:block}*,.section,.widget{margin:0;padding:0}a:link,a:visited{color:#49ACE1;text-decoration:none}a:hover,a:link,a:visited{text-decoration:none}iframe,img,table{max-width:100%}.clear,.clear::after,.clearfix:after,.comments,.container:after,.main-header:after,.related-post-style-3 .related-post-item:nth-of-type(4n+1),.row:after,.search-box:after,nav:after{clear:both}#cssmenu ul ul li a,.FeaturedPost .post-summary p,.Label li a,.Label ul li span,.header{white-space:nowrap;text-overflow:ellipsis}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;bo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
set_time_limit(0); | |
function curl($fullurl, $kuki) | |
{ | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_HEADER, 0); | |
// curl_setopt($ch, CURLOPT_VERBOSE, 1); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); | |
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jwplayer("myElement").setup({ | |
sources: [{ | |
"type": "video/mp4", | |
"file": "http://techslides.com/demos/sample-videos/small.mp4" | |
}], | |
controls: true, | |
title: "asasas", | |
logo: { | |
"file": "https://avatars2.githubusercontent.com/u/39638126", | |
"hide": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. screen | |
2. {command run} | |
3. ctrl + a + d << Close screen | |
4. screen -d -r << List screen |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function whatsAppText(message) { | |
window.InputEvent = window.Event || window.InputEvent; | |
var event = new InputEvent('input', { | |
bubbles: true | |
}); | |
var textbox = document.getElementsByClassName('_3u328')[0]; | |
textbox.textContent = message; | |
textbox.dispatchEvent(event); | |
document.querySelector('[data-icon="send"]').click(); | |
} |