Search results

  1. fukurou

    nintendo switch games

    olliolli world
  2. fukurou

    task : fusion classes

    translate from java to python : Fusion class : package LG_Core; import java.util.HashSet; import java.util.Hashtable; import java.util.Iterator; import java.util.PriorityQueue; public class Fusion { /* * fuses algorithms and sends needed algorithm to a designated cerabellum *...
  3. fukurou

    chiis python suit scrum

  4. fukurou

    🐍 python Chii's python suit

    Cerabellum and DExplorer ''' CERABELLUM CLASS ''' class Cerabellum: # runs an algorithm def __init__(self) -> None: self.fin: int = None self.at: int = None self.failType: enumFail = None self.incrementAt: bool = False self.alg: Algorithm = None...
  5. fukurou

    🐍 python python grimoire

    FirstInFirstOut queue fifo queue : import queue q1: queue = queue.SimpleQueue() q1.put(800) q1.put(11) q1.put(17) q1.put(12) print(q1.get()) print(q1.get()) q1.put(20) print(q1.get()) print(q1.get()) print(q1.get()) print(q1.get()) print(q1.get())
  6. fukurou

    [MEDIA]

  7. fukurou

    [MEDIA]

  8. fukurou

    SML Movie: Cody's NFT!

    test2
  9. fukurou

    SML Movie: Cody's NFT!

    test
  10. fukurou

    [MEDIA]

  11. fukurou

    🧵 3d poppy humanoid robot

    https://www.thingiverse.com/thing:2280067/files
  12. fukurou

    🧵 3d poppy humanoid robot

    https://cults3d.com/en/3d-model/gadget/poppy-humanoid
  13. fukurou

    🐍 python python grimoire

    get : get data post : post data put : update data delete pixe.la post command to create user account import requests import PlayGround pixela_endpoint = "https://pixe.la/v1/users" USERNAME = "forge" TOKEN = "secret" GRAPH_ID = "graph1" # token can be any 8 to 128 char string...
  14. fukurou

    🐍 python python grimoire

    environment variables create environment var on mac : terminal, type env, to get a list of environment variables used to hide API keys export var1=something create environment variable on windows : windows btn, type environment variables, on the user variables window add the var type a name on...
  15. fukurou

    🐍 python python grimoire

    teillio whatapp bot
  16. fukurou

    🐍 python python grimoire

    python : read gmail inbox programmatically : ORG_EMAIL = "@gmail.com" FROM_EMAIL = "your_email" + ORG_EMAIL FROM_PWD = "your-password" SMTP_SERVER = "imap.gmail.com" SMTP_PORT = 993 def read_email_from_gmail(): try: mail = imaplib.IMAP4_SSL(SMTP_SERVER)...
  17. fukurou

    🐍 python python grimoire

    escape unescape html : import html str1 = "&quot;eating burgers, without no honey mustard&quot;" print(html.unescape(str1)) # "eating burgers, without no honey mustard" explicit type : str2: str = "" explicit function : def isThin(BMI: int) -> bool: return BMI < 17
  18. fukurou

    🐍 python python grimoire

    import requests # example 1 API with parameter (yoda api): txt = "i like to eat hummus" response = requests.get(url=f"https://api.funtranslations.com/translate/yoda.json?text={txt}") # ISS satelite response.raise_for_status() print(response.status_code) data = response.json() # treat as...
  19. fukurou

    🐍 python python grimoire

    example python API with Tkinter UI from tkinter import * import requests def get_quote(): response = requests.get(url="https://api.kanye.rest/") quote = response.json()["quote"] canvas.itemconfig(quote_text, text=quote) window = Tk() window.title("Kanye Says...")...
  20. fukurou

    🐍 python python grimoire

    python API import requests # url=endpoint response = requests.get(url="http://api.open-notify.org/iss-now.json") #ISS satelite # response codes : # httpstatuses.com # 1xx: hold on # 2xx: here you go # 3xx: go away, no permission # 4xx: you screwed up # 5xx: server screwed up...
Top