Skip to content

Instantly share code, notes, and snippets.

View dandyraka's full-sized avatar
🚶‍♂️
Lontang lantung

Dandy Raka dandyraka

🚶‍♂️
Lontang lantung
View GitHub Profile
adb push filename /external_sd - to copy it to external SDcard, OR
adb push filename /sdcard - to put it in internal storage
$('.ProfileCard-content').each(function(){
var status = $(this).find('.FollowStatus').text();
var unfollowButton = $(this).find('.user-actions-follow-button');
if(!status){
unfollowButton.click();
}
});
<!-- 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>
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
<?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);
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,
var dandy = document.getElementsByClassName('btn btn-default btn-sm wo_follow_btn');
var i = 0;
var timer = setInterval(function() {
if( i < dandy.length) {
dandy[i].click();
console.log("Ngeadd ke-" + i);
} else {
clearInterval(timer);
}
i = i + 1;
var dandy = document.getElementsByClassName('btn btn-default btn-sm btn-active');
var i = 0;
var timer = setInterval(function() {
if( i < dandy.length) {
dandy[i].click();
console.log("Acc ke-" + i);
} else {
clearInterval(timer);
}
1. screen
2. {command run}
3. ctrl + a + d << Close screen
4. screen -d -r << List screen
@dandyraka
dandyraka / WhatsappSpam.js
Created September 24, 2019 10:28
Whatsapp Web Spammer for Console
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();
}