Search results

  1. fukurou

    nintendo switch games

  2. fukurou

    🐍 python python grimoire

    scraping site data with beautiful soup https://www.crummy.com/software/BeautifulSoup/bs4/doc/ a simple website.html has been added to the project : android studio jsoup version : from bs4 import BeautifulSoup # import lxml # use as alternative to html.parser with open("website.html", "r"...
  3. fukurou

    stirling engine

  4. fukurou

    nintendo switch games

  5. fukurou

    nintendo switch games

  6. fukurou

    [MEDIA]

  7. fukurou

    nintendo switch games

    olliolli world
  8. 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 *...
  9. fukurou

    chiis python suit scrum

  10. 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...
  11. 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())
  12. fukurou

    [MEDIA]

  13. fukurou

    [MEDIA]

  14. fukurou

    SML Movie: Cody's NFT!

    test2
  15. fukurou

    SML Movie: Cody's NFT!

    test
  16. fukurou

    [MEDIA]

  17. fukurou

    🧵 3d poppy humanoid robot

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

    🧵 3d poppy humanoid robot

    https://cults3d.com/en/3d-model/gadget/poppy-humanoid
  19. 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...
  20. 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...
Top