This file contains hidden or 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
const link = `curl -H "Hs-Id: SSAI::A_U:D_NA:G_U:S_MH:M_PUN:N_NA:C1_1:C2_NA:C3_NA:C4_NA:C5_NA:C6_NA:C7_NA:C8_NA:C9_NA:C10_NA:C11_NA:C12_NA:C13_NA:C14_NA:C15_NA:P_P_AN" -H "hotstarauth: st=1697120728~exp=1697121328~acl=/*~hmac=33c9b2a5583084ca86c02f0948ef7bbde271d3a90638a5c56dae911f5e52b2e4" -H "User-Agent: Hotstar;in.startv.hotstar/23.09.29.2.9131 (Android/12)" -H "X-HS-Platform: android" -H "X-HS-Request-Id: 039e1db6-3d9f-46b5-a6ea-1aeabb6da4be" -H "X-HS-Device-Id: 15d2aaf7-6cad-42c9-a93b-4af8e4e47153" -H "Accept-Language: eng" -H "X-HS-Accept-Language: eng" -H "app_name: android" -H "X-HS-Client: platform:android;app_id:in.startv.hotstar;app_version:23.09.29.2;os:Android;os_version:12;schema_version:0.0.1017;brand:Xiaomi;model:M2010J19CI;carrier:JIO%204G;network_data:UNKNOWN" -H "X-HS-Schema-Version: 0.0.1017" -H "X-HS-Client-Targeting: ad_id:15d2aaf7-6cad-42c9-a93b-4af8e4e47153;user_lat:false;hw_id:95efeb4e249078c8" -H "X-HS-APP-ID: e161099e-445a-458f-ae8c-63a57d76f4a1" -H "X-HS-App: 9131" -H "capability: |
This file contains hidden or 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
// Dependenices | |
const cheerio = require("cheerio"); | |
const axios = require("axios").default; | |
const fs = require("fs/promises"); | |
const fscore = require("fs"); | |
const path = require("path"); | |
// constants | |
const BASE_URL = "https://tokyorevengersmanga.com/"; | |
const FOLDER_NAME = "manga"; |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Audio Visualizer 🎵</title> | |
<style> | |
* { |
This file contains hidden or 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
nodemon -e 'go,html' --watch './**/*' --signal SIGTERM --exec 'go' run ./main.go |
This file contains hidden or 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
package main | |
import ( | |
"fmt" | |
en "github.com/go-playground/locales/en_IN" | |
ut "github.com/go-playground/universal-translator" | |
"github.com/go-playground/validator/v10" | |
entrans "github.com/go-playground/validator/v10/translations/en" | |
) |
This file contains hidden or 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
# https://askubuntu.com/questions/64222/how-can-i-create-launchers-on-my-desktop | |
sudo gedit /usr/share/applications/example.desktop | |
# example.desktop | |
[Desktop Entry] | |
Type=Application | |
Terminal=false | |
Icon=/path/to/icon/icon.png | |
Name=give-name-here |
This file contains hidden or 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
# Note requires [email protected] or higher | |
npm install node-sass --save | |
# or | |
yarn add node-sass | |
# Rename all files from *.css to *.scss |