Skip to content

Instantly share code, notes, and snippets.

View Xnuvers007's full-sized avatar
💭
Lily Loly Zyaa ❤️

XnuxersXploitXen Xnuvers007

💭
Lily Loly Zyaa ❤️
View GitHub Profile
import matplotlib.pyplot as plt
import networkx as nx
def draw_fsa(G, title):
pos = nx.spring_layout(G)
labels = nx.get_edge_attributes(G, 'label')
plt.figure(figsize=(12, 6))
nx.draw(G, pos, with_labels=True, node_size=2000, node_color='skyblue', font_size=15, font_weight='bold')
nx.draw_networkx_edge_labels(G, pos, edge_labels=labels, font_size=12)
og:Type Lists Of Objects
- apps.saves
An action representing someone saving an app to try later.
- article
This object represents an article on a website. It is the preferred type for blog posts and news stories.
- book
This object type represents a book or publication. This is an appropriate type for ebooks, as well as traditional paperback or hardback books. Do not use this type to represent magazines
@Xnuvers007
Xnuvers007 / snake.py
Created May 19, 2024 11:53
this is script game snake build using python
import pygame
import random
# Initialize Pygame
pygame.init()
# Set up the screen
screen_width = 800
screen_height = 600
screen = pygame.display.set_mode((screen_width, screen_height))
import requests
import os
url = input("Enter the SlideShare URL: ") # https://www.slideshare.net/StevanyStevany/materi-lengkap-tentang-power-point
filetype = input("Enter the filetype (pdf/pptx): ")
headers_get = {
'accept': '*/*',
'accept-language': 'id,en;q=0.9,en-GB;q=0.8,en-US;q=0.7,sv;q=0.6',
@Xnuvers007
Xnuvers007 / kivyapp-to-apk.ipynb
Created April 21, 2024 16:10 — forked from kaustubhgupta/kivyapp-to-apk.ipynb
KivyApp to APK.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
https://www.mediafire.com/file/pac87dkfmkhiseu/shortlinkapp-0.1.apk/file
import turtle
from math import pi, sin, cos
def draw_heart(w, h, iteration=0):
if iteration >= len(colors):
return
t = turtle.Turtle()
t.hideturtle()
t.pensize(2.5)
@Xnuvers007
Xnuvers007 / scrape_moni_crypto.py
Last active April 8, 2024 08:22
scraping website coinmarketcap.com for monitoring crypto
import time
import os
try:
import requests
from bs4 import BeautifulSoup
except (ModuleNotFoundError):
os.system('pip install requests beautifulsoup4 --no-cache-dir')
finally:
import requests
from bs4 import BeautifulSoup
This file has been truncated, but you can view the full file.
[
{
"number": 1,
"ayahCount": 7,
"sequence": 5,
"asma": { "ar": { "short": "\u0627\u0644\u0641\u0627\u062a\u062d\u0629", "long": "\u0633\u064f\u0648\u0631\u064e\u0629\u064f\u0020\u0671\u0644\u0652\u0641\u064e\u0627\u062a\u0650\u062d\u064e\u0629\u0650" }, "en": { "short": "Al-Faatiha", "long": "Sura Al-Faatiha" }, "id": { "short": "Al-Fatihah", "long": "Surah Al-Fatihah" }, "translation": { "en": "The Opening", "id": "Pembukaan" } },
"preBismillah": null,
"type": { "ar": "\u0645\u0643\u0629", "id": "Makkiyyah", "en": "Meccan" },
"tafsir": { "id": "Surat Al Faatihah (Pembukaan) yang diturunkan di Mekah dan terdiri dari 7 ayat adalah surat yang pertama-tama diturunkan dengan lengkap diantara surat-surat yang ada dalam Al Quran dan termasuk golongan surat Makkiyyah. Surat ini disebut Al Faatihah (Pembukaan), karena dengan surat inilah dibuka dan dimulainya Al Quran. Dinamakan Ummul Quran (induk Al Quran) atau Ummul Kitaab (induk Al Kitaab) karena dia merupakan induk dari semua isi A
@Xnuvers007
Xnuvers007 / index.js
Created February 15, 2024 18:52
Real Count & Quick Count 2024 Indonesia
import fetch from 'node-fetch';
fetch('https://quickcount.kumparan.com/v1/election-result', {
method: 'GET',
headers: {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:122.0) Gecko/20100101 Firefox/122.0',
'Accept': 'application/json, text/plain, */*'
}
})
.then(response => response.json())