- Have google doc open and ready.
- Start 45 minute timer and place it somewhere closeby.
- Eliminate the nerves bro. Imagine you're just doing some leetcode with a shitty startup.
- Quick and friendly introduction and begin.
- UNDERSTAND AJATT CORE PHILOSOPHY!!! The following resources are all aimed at Japanese learners, but look closely and you’ll see the fundamental principles still apply. Your goal now is to go through these to understand the why behind this guide.
- The owner, Matt vs Japan, used to post incredibly high quality videos on language acquisition and AJATT. Sort videos by oldest and watch the ones related to AJATT philosophy. Or go through the most important ones listed [here](https://gist.github.com/askoufis/e67e637918e5b16d6f4a4da6b0bbe74d#
This file contains 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
// ==UserScript== | |
// @name Hard Sub Blocker | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Script to block hard coded subs | |
// @author Kamui7 | |
// @match https://mcloud2.to/embed/* | |
// @match https://streamtape.com/* | |
// @match https://www.mp4upload.com/* | |
// @match https://vidstream.pro/* |
This file contains 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
from random import shuffle | |
from subprocess import check_call, check_output, call | |
from pathlib import Path | |
from glob import glob | |
from tqdm import tqdm | |
import os | |
import shutil | |
HOME = Path(".") |
This file contains 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
import os, sys, re | |
from glob import glob | |
import pathlib | |
class substation: | |
def __init__(self, filepath): | |
self.filepath = filepath | |
self.raw_text = self.get_text() | |
self.full_info = {} |
This file contains 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
import pathlib | |
from selenium import webdriver | |
from selenium.webdriver.support.wait import WebDriverWait | |
from selenium.webdriver.support import expected_conditions as EC | |
from selenium.webdriver.common.by import By | |
LINKS_PATH = "links.txt" | |
beatmap_file = pathlib.Path(LINKS_PATH) | |
beatmaps = [x.strip() for x in beatmap_file.read_text("utf-8").split("\n")] |
This file contains 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
from pathlib import Path | |
from pprint import pprint | |
from shutil import copyfile | |
import os | |
import argparse | |
import tqdm | |
import json | |
""" | |
usage: main.py [-h] [--outputinfo] [--type TYPE] source destination |