Search results

  1. fukurou

    [MEDIA]

  2. fukurou

    [MEDIA]

  3. fukurou

    [MEDIA]

  4. fukurou

    [MEDIA]

  5. fukurou

    [MEDIA]

  6. fukurou

    👨‍💻 dev railbot the weighted beefup

    class WeightedResponder { private var responses: [String] private let lim: Int init(lim: Int) { self.responses = [] self.lim = lim } func getAResponse() -> String { let size = responses.count if size == 0 { return "" } var weights =...
  7. fukurou

    👨‍💻 dev railbot the weighted beefup

    Public Class EventChatV2 Private _dictionary As New Dictionary(Of String, WeightedResponder)() Private _modifiedKeys As New HashSet(Of String)() Private ReadOnly _lim As Integer Public Sub New(lim As Integer) _lim = lim End Sub Public Function GetModifiedKeys()...
  8. fukurou

    👨‍💻 dev railbot the weighted beefup

    Public Class WeightedResponder Private responses As List(Of String) Private ReadOnly lim As Integer Public Sub New(lim As Integer) responses = New List(Of String)() Me.lim = lim End Sub Public Function GetAResponse() As String Dim size As Integer =...
  9. fukurou

    [MEDIA]

  10. fukurou

    [MEDIA]

  11. fukurou

    🐍 python brain power level calculator

    def calculate_brain_level(current_age: int, average_jizz_per_day: float) -> int: """ Calculates brain level based on age and daily jizz frequency. Assumes jizzing starts at age 12 and uses cubic root scaling (like Pokémon EXP curves). Parameters: - current_age (int)...
  12. fukurou

    [MEDIA]

  13. fukurou

    I got a lot done today

    and by that I mean I jizzed like 7 times. some would say that's a waste of a day, but I feel like it's actually leveling up the brain with exp points. it's necessary when you handle the sheer amount of todo's and coding as I do.
  14. fukurou

    AI voice cloner locally and not soy puke

    # DiTTS_clone.py import os from voice_cloner import cloner # assumes cloner is a SelfInstallingVoiceCloner instance from LivinGrimoire import Skill class DiTTS_clone(Skill): def __init__(self): super().__init__() self.set_skill_type(3) # continuous skill...
  15. fukurou

    AI voice cloner locally and not soy puke

    You're 100% right. That was overcomplicated. Let's fuse everything into **one single self-contained project** that handles its own setup. ### All-in-One Voice Cloner Project #### Step 1: Create New Project 1. Open PyCharm → **New Project** → Name it `voice_cloner_app` → **Create** #### Step...
  16. fukurou

    AI voice cloner locally and not soy puke

    ### Complete Walkthrough: New Project Setup I'll break it down step-by-step for a **brand new PyCharm project**. #### Step 1: Create Your New Project 1. Open PyCharm 2. Click **"New Project"** 3. Name it `voice_app` (or whatever you want) 4. Click **"Create"** #### Step 2: Set Up the...
  17. fukurou

    AI voice cloner locally and not soy puke

    ### Voice Cloning Walkthrough for Windows (PyCharm Terminal) **Forget Bash. This is for the PyCharm terminal on Windows 11.** #### 1. Create Project & Virtual Environment 1. Open PyCharm 2. Create new project: `voice_clone` 3. Open Terminal (bottom tab) #### 2. Create requirements.txt In...
  18. fukurou

    venice.ai TTS

    # Female Venice TTS Voices (for DrawRnd): # --------------------------------------- # "bella" # Expressive default female voice # "af_nova" # African-accented female voice # "bf_emma" # British-accented female voice # "bf_sophia" # British-accented female, soft tone # "bf_grace"...
  19. fukurou

    venice.ai TTS

    venice.ai TTS: add requirements.txt : requests pydub simpleaudio pygame import requests import os import threading from DLC.api_keys import VENICE_API_KEY from LivinGrimoirePacket.AXPython import DrawRnd from LivinGrimoirePacket.LivinGrimoire import Skill...
Top