Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iex| def delete(api, date, r): | |
| with open("likes.csv") as file: | |
| count = 0 | |
| for row in csv.DictReader(file): | |
| tweet_id = int(row["tweet_id"]) | |
| try: | |
| print "Deleting like" | |
| api.CreateFavorite(status_id=tweet_id) |
| #!/usr/bin/env ruby | |
| require 'twitter' | |
| client = Twitter::REST::Client.new do |config| | |
| config.consumer_key = "" | |
| config.consumer_secret = "" | |
| config.access_token = "" | |
| config.access_token_secret = "" | |
| end |
| #!/usr/bin/env ruby | |
| require 'twitter' | |
| client = Twitter::REST::Client.new do |config| | |
| config.consumer_key = "YOUR_CONSUMER_KEY" | |
| config.consumer_secret = "YOUR_CONSUMER_SECRET" | |
| config.access_token = "YOUR_ACCESS_TOKEN" | |
| config.access_token_secret = "YOUR_ACCESS_SECRET" | |
| end |
| #!/usr/bin/env bash | |
| set -e | |
| VOLUME_PATH=/Volumes/installer | |
| while getopts ":d:h" opts; do | |
| case $opts in | |
| d) | |
| VOLUME_PATH=$OPTARG | |
| ;; |
| ################################################################################## | |
| # ELIMINATE SPOTIFY ADS (VERSION 1.2 - 8.5) - ABANDONED FOR NOW # | |
| ################################################################################## | |
| # | |
| # NOTE: SOMETIMES ONLY ANNOUNCEMENT OF AN AD WHILE USING APP VERSION 7.5-7.9?-8.x. | |
| # USING AN OFFICIAL OLDER VERSION SOLVES THIS. TEST IT (APKMIRROR). THIS WILL NOT | |
| # OCCUR USING CHROMECAST / GOOGLE HOME. | |
| # | |
| # COULD NOT SOLVE THE AUDIO AD INRO/OUTRO IN THE APP. | |
| # SUGGESTIONS? WRITE A COMMENT BELOW. |
| $domainSearchList = Read-Host "Please enter a list of domain suffixes separated by semicolons (e.g. domain.local;domain.tld;int.domain.tld)" | |
| $scopeToConfigure = Read-Host "Please enter the scope id of the scope to be configured (e.g. 192.168.1.0)" | |
| $splittedDomainSearchList = $domainSearchList -split "\;" | |
| $domainSearchListHexArray = @(); | |
| Foreach ($domain in $splittedDomainSearchList) | |
| { | |
| $splittedDomainParts = $domain -split "\." | |
| Foreach ($domainPart in $splittedDomainParts) |
| import tweepy | |
| from time import sleep | |
| # creds.py is a custom file that holds all of your consumer keys and API keys. you will need to make it. | |
| from creds import * | |
| import os | |
| from datetime import datetime as dt | |
| import random | |
| auth = tweepy.OAuthHandler(consumer_key=consumer_key, consumer_secret=consumer_secret) | |
| auth.set_access_token(access_key, access_secret) |
| import re | |
| import sys | |
| from datetime import datetime | |
| from b2.api import B2Api | |
| def parse(inp, mformat=None, thing=None): | |
| if thing is None: | |
| thing = 'th' | |
| if mformat is None: |
Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iex