- paste in dev console
- call
autofillAnswersfunction - pass answer string eg.
"DBCCBDBCADCBADBADABC" - eg.
autofillAnswers("DBCCBDBCADCBADBADABC")autofillAnswers function"DBCCBDBCADCBADBADABC"autofillAnswers("DBCCBDBCADCBADBADABC")| First of all have a brief look at xda threads about compiling rom from source dont follow all stuff from there tho.. just have a look on those threads specially that jackeagle thread. | |
| now first what you need : | |
| If on local | |
| -> Fast internet connection (fast enough to download 50GB rom source without waiting for a day or two xD ) | |
| -> 4core cpu(or higher) | |
| -> 8gb minimum ram | |
| -> Linux (Ubuntu for this guide) |
| import fs from 'fs' | |
| import { FileMagic, MagicFlags } from '@npcz/magic' | |
| import { extension } from 'mime-types' | |
| import path from 'path' | |
| import os from 'os' | |
| FileMagic.magicFile = require.resolve( | |
| '@npcz/magic/dist/magic.mgc' | |
| ) |
| import { AnyZodObject, ZodTypeAny } from 'zod' | |
| import { | |
| NextFunction, | |
| Request, | |
| RequestHandler, | |
| Response | |
| } from 'express' | |
| import { HttpError } from '@/lib/errors.lib' | |
| type RequestPayloadIn = 'body' | 'query' | 'params' |
Warning: Long post PROGRAMMING FOR BEGINNERS Here, I am going to share stuff how I learned programming and how i progress everyday. Inshort a guide to become self taught programmer. (Ps: I'm no pro or anything Im just a failure and complete noob and telling how to improve everyday and try to be better in your interest, and I also have an anime dp xD iykwim)
| import re | |
| # Edit these | |
| SOURCE_VCF = "27jan22.vcf" # Your source file | |
| COUNTRY_CODE = "+91" # Country code you want to add (Tested for India only) | |
| OUTPUT_VCF = "27jan22-modded.vcf" # The output file you want | |
| # Dont edit below | |
| to_save = [] |
Things you need...
chrome browser in your system chromdervier (add it in your environment PATH) https://chromedriver.chromium.org/downloads
install selenium with pip
pip install selenium
then use below script
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| from __future__ import print_function | |
| from selenium import webdriver | |
| from selenium.webdriver.chrome.options import Options | |
| def create_proxyauth_extension(proxy_host, proxy_port, |