Please refer to this blogpost to get an overview.
Replace *-INSTANCE
with one of the public instances listed in the scrapers section. Replace CAPITALIZED
words with their corresponding identifiers on the website.
Please refer to this blogpost to get an overview.
Replace *-INSTANCE
with one of the public instances listed in the scrapers section. Replace CAPITALIZED
words with their corresponding identifiers on the website.
A simple JavaScript script that adds a floating "Archive" button to specific news websites, allowing quick archiving via archive.md.
# The Caddyfile is an easy way to configure your Caddy web server. | |
# | |
# Unless the file starts with a global options block, the first | |
# uncommented line is always the address of your site. | |
# | |
# To use your own domain name (with automatic HTTPS), first make | |
# sure your domain's A/AAAA DNS records are properly pointed to | |
# this machine's public IP, then replace ":80" below with your | |
# domain name. |
Note: I don't know where does this thread belongs. If I'm on the incorrect section, move it to the correct one. | |
Many people are literally just selling this method and I feel like sharing this out so that you don't have to pay because the seller just don't do a minute of work to get you the drive. | |
So moving straight towards the method: | |
Step I: | |
Go to this link: https://td.fastio.me/ (mirrors to be left at the last) | |
Step II: | |
Type your desired drive's name at the first field and your Gmail on the bottom field. |
import javax.crypto.Cipher; | |
import javax.crypto.spec.IvParameterSpec; | |
import javax.crypto.spec.SecretKeySpec; | |
import java.util.Base64; | |
public class Encryptor { | |
public static String encrypt(String key, String initVector, String value) { | |
try { | |
Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5PADDING"); | |
IvParameterSpec iv = new IvParameterSpec(initVector.getBytes("UTF-8")); |
node_modules |
from selenium.webdriver import Chrome, ChromeOptions | |
from selenium.webdriver.common.keys import Keys | |
import time | |
email = '[email protected]' | |
password = 'yourpassword' | |
browser = Chrome() | |
url = 'https://www.facebook.com/' | |
browser.get(url) |
#!usr/bin/python3 | |
# created by namph | |
# link lyric file: https://zingmp3.vn/api/song/get-lyric?id=ZWAFE897&ctime=1592657865&sig=a79a3de95632ac37d116c01755f216e965784f2cf2ce13dac1ced62a3f08430438691484848bf685903c363a367eec12d1379c13f6d25288488b59b2fac1b091&api_key=38e8643fb0dc04e8d65b99994d3dafff | |
import json | |
import time | |
import os | |
with open('banhmikhong.json', 'r') as f: | |
song = json.loads(f.read()) |
#!usr/bin/python3 | |
# created by namph | |
from selenium.webdriver import Chrome, ChromeOptions | |
from selenium.webdriver.common.keys import Keys | |
import time | |
import json | |
import os | |
email = 'email1' |