Skip to content

Instantly share code, notes, and snippets.

View hashemsh's full-sized avatar
😎
Working

hashem sheikhypour hashemsh

😎
Working
  • Earth
View GitHub Profile
function main() {
// Create a phone number builder.
var phoneNumberBuilder = AdsApp.extensions().newPhoneNumberBuilder();
// Create a phone number operation.
var phoneNumberOperation = phoneNumberBuilder
.withCountry("IR") // required
.withPhoneNumber("02188888888") // required
.withMobilePreferred(true) // optional
.build();
@hashemsh
hashemsh / List.md
Created December 9, 2019 12:53 — forked from msurguy/List.md
List of open source projects made with Laravel

Other people's projects:

My projects (tutorials are on my blog at http://maxoffsky.com):

@hashemsh
hashemsh / gist:02faf0f2b5c77b3c57946fbbd1d6d0fd
Created October 7, 2019 13:11
instagram recovery account
https://youtu.be/9_92LqvJg6M
@hashemsh
hashemsh / instalike.js
Last active August 3, 2019 16:30 — forked from jadeallencook/instalike.js
Scripts that auto likes posts on instagram via tag.
let likesGiven = 0;
setInterval(() => {
let heart = document.getElementsByClassName('glyphsSpriteHeart__outline__24__grey_9'),
arrow = document.querySelector('.coreSpriteRightPaginationArrow');
if (heart[1]) {
heart = heart[1].parentElement;
likesGiven++, heart.click();
}
arrow.click();
console.log(`You've liked ${likesGiven} post(s)!`);