Skip to content

Instantly share code, notes, and snippets.

View Frenzycore's full-sized avatar
💭
I know what you're looking for...

Chizuru Frenzycore

💭
I know what you're looking for...
View GitHub Profile
a = "Everything's gonna be okay"
b = 1
while b <= 100:
print(a)
b = b + 1
a = "Are you still there?"
b = 1
while b <= 100:
print(a)
b = b + 1
import time
a = "I hate programming"
b = "It works!"
c = "I love programming"
def aaa():
for _ in range(3):
print(a)
time.sleep(1)
@Frenzycore
Frenzycore / weirdcore-lang.py
Created December 17, 2025 12:18
language i made
weirdcore = {
"A": "?",
"B": "☻",
"C": "Θ",
"D": "♠",
"E": "3",
"F": "O",
"G": "8",
"H": "☹",
"I": "5",
@Frenzycore
Frenzycore / nasa.js
Created December 22, 2025 10:07
scraper for site https://www.nasa.gov
import axios from "axios";
import * as cheerio from "cheerio"
async function scrapeNasa() {
try {
const { data: html } = await axios.get('https://www.nasa.gov/', {
headers: { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36' }
});
const $ = cheerio.load(html);
@Frenzycore
Frenzycore / bing.js
Created December 23, 2025 03:50
scraper for site https://www.bing.com
import axios from "axios";
import * as cheerio from "cheerio";
async function scrapeBingSearch(q) {
let query = q || "Hello, World!";
const url = 'https://www.bing.com/search?q=' + encodeURIComponent(query);
try {
const { data: html } = await axios.get(url, {
headers: {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',
import axios from "axios";
import * as cheerio from "cheerio";
async function scrapeQuotesToScrape() {
let currentUrl = "https://quotes.toscrape.com/";
const allQuotes = [];
let page = 1;
try {
while (currentUrl) {
import axios from "axios";
import * as cheerio from "cheerio";
async function scrapeWikipediaRandom() {
const url = 'https://wikipedia.org/wiki/Special:Random';
try {
const response = await axios.get(url, {
headers: { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36' }
});
import axios from "axios";
import * as cheerio from "cheerio";
async function scrapeGistGithubUserProfile(profile) {
try {
let username = profile || "Frenzycore";
const { data: html } = await axios.get(
"https://gist.github.com/" + encodeURIComponent(username),
{
headers: {
import axios from "axios";
import * as cheerio from "cheerio";
async function example() {
try {
const { data: html } = await axios.get('https://www.example.com/', {
headers: { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36' }
});
const $ = cheerio.load(html);