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
setInterval(() => { | |
for (const d of document.querySelectorAll( | |
'div[data-testid="unretweet"]' | |
)) { | |
d.click(); | |
} | |
for (const d of document.querySelectorAll( | |
'div[data-testid="unretweetConfirm"]' | |
)) { | |
d.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
setInterval(() => { | |
for (const d of document.querySelectorAll( | |
'div[aria-haspopup="menu"]' | |
)) { | |
d.click(); | |
} | |
for (const d of document.querySelectorAll( | |
'div[data-testid="removeFollower"]' | |
)) { | |
d.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
setInterval(() => { | |
for (const d of document.querySelectorAll( | |
'div[data-testid$="unfollow"]' | |
)) { | |
d.click(); | |
} | |
for (const d of document.querySelectorAll( | |
'div[data-testid="confirmationSheetConfirm"]' | |
)) { | |
d.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
setInterval(() => { | |
for (const d of document.querySelectorAll( | |
'div[data-testid="conversation"]' | |
)) { | |
d.click(); | |
} | |
for (const d of document.querySelectorAll( | |
'a[aria-label="Conversation info"]' | |
)) { | |
d.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
$.get("upload_file.php?q=" + url, function( data ) | |
{ | |
var str=data; | |
$("#uploadStatus").text(str); | |
}); |
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
public class FacadePatternClient { | |
public static void main(String args[]){ | |
ShopKeeper sk=new ShopKeeper(); | |
sk.iphoneSale(); | |
sk.samsungSale(); | |
} | |
} |
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
public class Blackberry implements MobileShop { | |
@Override | |
public void modelNo() { | |
System.out.println(" Blackberry Z10 "); | |
} | |
@Override | |
public void price() { | |
System.out.println(" Rs 55000.00 "); |
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
public class Samsung implements MobileShop { | |
@Override | |
public void modelNo() { | |
System.out.println(" Samsung galaxy tab 3 "); | |
} | |
@Override | |
public void price() { | |
System.out.println(" Rs 45000.00 "); |
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
public class ShopKeeper { | |
private MobileShop iphone; | |
private MobileShop samsung; | |
private MobileShop blackberry; | |
public ShopKeeper(){ | |
iphone= new Iphone(); | |
samsung=new Samsung(); | |
blackberry=new Blackberry(); |
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
public class Iphone implements MobileShop { | |
@Override | |
public void modelNo() { | |
System.out.println(" Iphone 6 "); | |
} |
NewerOlder