Search results

  1. fukurou

    👨‍💻 dev skill tree

    public class SkillBranch extends DiSkillV2 { @Override public void input(String ear, String skin, String eye) { } }
  2. fukurou

    speedrun disayer

    class DiSayer(DiSkillV2): def __init__(self): super().__init__() self.cmdBreaker = AXCmdBreaker("say") self.command = "" def input(self, ear, skin, eye): self.command = self.cmdBreaker.extractCmdParam(ear) if self.command...
  3. fukurou

    speedrun disayer

    class DiSayer(DiSkillV2): def __init__(self): self.cmdBreaker = AXCmdBreaker("say") self.command = "" def input(self, ear, skin, eye): self.command = self.cmdBreaker.extractCmdParam(ear) if self.command: self.setSimpleAlg(self.command)...
  4. fukurou

    👨‍💻 dev vb.net cheat sheet

    *** varargs *********** *variables* *********** Dim age As Integer = 0 Dim isComplete as Boolean = False Dim str1 As String= "morning" Const num As Integer = 2 ********* *strings* ********* Dim name As String = "John" Dim age As Integer = 30 Dim result As String = String.Format("Hello, {0}. You...
  5. fukurou

    speedrun disayer

    public class DiSayer extends DiSkillV2 { private AXCmdBreaker cmdBreaker = new AXCmdBreaker("say"); private String command = ""; @Override public void input(String ear, String skin, String eye) { command = cmdBreaker.extractCmdParam(ear); if (!command.isEmpty()){...
  6. fukurou

    speedrun disayer

    a skill to say something I gotta take a piss having jizzed, but I'll code it 1st
  7. fukurou

    [MEDIA]

  8. fukurou

    [MEDIA]

  9. fukurou

    [MEDIA]

  10. fukurou

    [MEDIA]

  11. fukurou

    👨‍💻 dev TKInter cs

    from hidden_skills import * import tkinter as tk from tkinter import ttk, LEFT class App(tk.Tk): def __init__(self): super().__init__() self.title('the LivinGrimoire') self.geometry('600x200') self.resizable(width=False, height=False) self.style =...
  12. fukurou

    👨‍💻 dev TKInter cs

    from hidden_skills import * import tkinter as tk from tkinter import ttk, LEFT class App(tk.Tk): def __init__(self): super().__init__() self.title('the LivinGrimoire') self.geometry('600x200') self.resizable(width=False, height=False) self.style =...
  13. fukurou

    tfw when you get jizz on your underpants after you jizzed and squizz

    tfw when you get jizz on your underpants after you jizzed and squizz
  14. fukurou

    👨‍💻 dev TKInter cs

    from hidden_skills import * import tkinter as tk from tkinter import ttk, LEFT class App(tk.Tk): def __init__(self): super().__init__() self.title('the LivinGrimoire') self.geometry('600x200') self.resizable(width=False, height=False) self.style =...
  15. fukurou

    👨‍💻 dev TKInter cs

    rt.extractRegex("(?<=>).*?(?=>)", ">input>")
  16. fukurou

    👨‍💻 dev TKInter cs

    # tkinter stuff window = tkinter.Tk() window.title("livingrimoire") window.wm_minsize(width=500, height=100) # # label # lbl = tkinter.Label(window, text="Hello", font=("Arial Bold", 20)) # lbl.pack() def clicked1(): text.delete('1.0', END)...
  17. fukurou

    [MEDIA]

  18. fukurou

    [MEDIA]

  19. fukurou

    [MEDIA]

  20. fukurou

    👨‍💻 dev TKInter cs

    ********* *imports* ********* from tkinter import * from tkinter import scrolledtext from tkinter import messagebox from tkinter.ttk import Progressbar from tkinter import filedialog from tkinter import Menu ****** *stem* ****** import tkinter window = tkinter.Tk() # rest of the code goes here...
Top